AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
TTPsObservedDetail.h
1
6#pragma once
7#include <aws/detective/Detective_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace Detective
22{
23namespace Model
24{
25
35 {
36 public:
37 AWS_DETECTIVE_API TTPsObservedDetail();
38 AWS_DETECTIVE_API TTPsObservedDetail(Aws::Utils::Json::JsonView jsonValue);
40 AWS_DETECTIVE_API Aws::Utils::Json::JsonValue Jsonize() const;
41
42
44
47 inline const Aws::String& GetTactic() const{ return m_tactic; }
48 inline bool TacticHasBeenSet() const { return m_tacticHasBeenSet; }
49 inline void SetTactic(const Aws::String& value) { m_tacticHasBeenSet = true; m_tactic = value; }
50 inline void SetTactic(Aws::String&& value) { m_tacticHasBeenSet = true; m_tactic = std::move(value); }
51 inline void SetTactic(const char* value) { m_tacticHasBeenSet = true; m_tactic.assign(value); }
52 inline TTPsObservedDetail& WithTactic(const Aws::String& value) { SetTactic(value); return *this;}
53 inline TTPsObservedDetail& WithTactic(Aws::String&& value) { SetTactic(std::move(value)); return *this;}
54 inline TTPsObservedDetail& WithTactic(const char* value) { SetTactic(value); return *this;}
56
58
61 inline const Aws::String& GetTechnique() const{ return m_technique; }
62 inline bool TechniqueHasBeenSet() const { return m_techniqueHasBeenSet; }
63 inline void SetTechnique(const Aws::String& value) { m_techniqueHasBeenSet = true; m_technique = value; }
64 inline void SetTechnique(Aws::String&& value) { m_techniqueHasBeenSet = true; m_technique = std::move(value); }
65 inline void SetTechnique(const char* value) { m_techniqueHasBeenSet = true; m_technique.assign(value); }
66 inline TTPsObservedDetail& WithTechnique(const Aws::String& value) { SetTechnique(value); return *this;}
67 inline TTPsObservedDetail& WithTechnique(Aws::String&& value) { SetTechnique(std::move(value)); return *this;}
68 inline TTPsObservedDetail& WithTechnique(const char* value) { SetTechnique(value); return *this;}
70
72
75 inline const Aws::String& GetProcedure() const{ return m_procedure; }
76 inline bool ProcedureHasBeenSet() const { return m_procedureHasBeenSet; }
77 inline void SetProcedure(const Aws::String& value) { m_procedureHasBeenSet = true; m_procedure = value; }
78 inline void SetProcedure(Aws::String&& value) { m_procedureHasBeenSet = true; m_procedure = std::move(value); }
79 inline void SetProcedure(const char* value) { m_procedureHasBeenSet = true; m_procedure.assign(value); }
80 inline TTPsObservedDetail& WithProcedure(const Aws::String& value) { SetProcedure(value); return *this;}
81 inline TTPsObservedDetail& WithProcedure(Aws::String&& value) { SetProcedure(std::move(value)); return *this;}
82 inline TTPsObservedDetail& WithProcedure(const char* value) { SetProcedure(value); return *this;}
84
86
90 inline const Aws::String& GetIpAddress() const{ return m_ipAddress; }
91 inline bool IpAddressHasBeenSet() const { return m_ipAddressHasBeenSet; }
92 inline void SetIpAddress(const Aws::String& value) { m_ipAddressHasBeenSet = true; m_ipAddress = value; }
93 inline void SetIpAddress(Aws::String&& value) { m_ipAddressHasBeenSet = true; m_ipAddress = std::move(value); }
94 inline void SetIpAddress(const char* value) { m_ipAddressHasBeenSet = true; m_ipAddress.assign(value); }
95 inline TTPsObservedDetail& WithIpAddress(const Aws::String& value) { SetIpAddress(value); return *this;}
96 inline TTPsObservedDetail& WithIpAddress(Aws::String&& value) { SetIpAddress(std::move(value)); return *this;}
97 inline TTPsObservedDetail& WithIpAddress(const char* value) { SetIpAddress(value); return *this;}
99
101
105 inline const Aws::String& GetAPIName() const{ return m_aPIName; }
106 inline bool APINameHasBeenSet() const { return m_aPINameHasBeenSet; }
107 inline void SetAPIName(const Aws::String& value) { m_aPINameHasBeenSet = true; m_aPIName = value; }
108 inline void SetAPIName(Aws::String&& value) { m_aPINameHasBeenSet = true; m_aPIName = std::move(value); }
109 inline void SetAPIName(const char* value) { m_aPINameHasBeenSet = true; m_aPIName.assign(value); }
110 inline TTPsObservedDetail& WithAPIName(const Aws::String& value) { SetAPIName(value); return *this;}
111 inline TTPsObservedDetail& WithAPIName(Aws::String&& value) { SetAPIName(std::move(value)); return *this;}
112 inline TTPsObservedDetail& WithAPIName(const char* value) { SetAPIName(value); return *this;}
114
116
119 inline long long GetAPISuccessCount() const{ return m_aPISuccessCount; }
120 inline bool APISuccessCountHasBeenSet() const { return m_aPISuccessCountHasBeenSet; }
121 inline void SetAPISuccessCount(long long value) { m_aPISuccessCountHasBeenSet = true; m_aPISuccessCount = value; }
122 inline TTPsObservedDetail& WithAPISuccessCount(long long value) { SetAPISuccessCount(value); return *this;}
124
126
129 inline long long GetAPIFailureCount() const{ return m_aPIFailureCount; }
130 inline bool APIFailureCountHasBeenSet() const { return m_aPIFailureCountHasBeenSet; }
131 inline void SetAPIFailureCount(long long value) { m_aPIFailureCountHasBeenSet = true; m_aPIFailureCount = value; }
132 inline TTPsObservedDetail& WithAPIFailureCount(long long value) { SetAPIFailureCount(value); return *this;}
134 private:
135
136 Aws::String m_tactic;
137 bool m_tacticHasBeenSet = false;
138
139 Aws::String m_technique;
140 bool m_techniqueHasBeenSet = false;
141
142 Aws::String m_procedure;
143 bool m_procedureHasBeenSet = false;
144
145 Aws::String m_ipAddress;
146 bool m_ipAddressHasBeenSet = false;
147
148 Aws::String m_aPIName;
149 bool m_aPINameHasBeenSet = false;
150
151 long long m_aPISuccessCount;
152 bool m_aPISuccessCountHasBeenSet = false;
153
154 long long m_aPIFailureCount;
155 bool m_aPIFailureCountHasBeenSet = false;
156 };
157
158} // namespace Model
159} // namespace Detective
160} // namespace Aws
TTPsObservedDetail & WithProcedure(Aws::String &&value)
TTPsObservedDetail & WithAPIName(const char *value)
TTPsObservedDetail & WithAPIFailureCount(long long value)
TTPsObservedDetail & WithTechnique(const Aws::String &value)
AWS_DETECTIVE_API Aws::Utils::Json::JsonValue Jsonize() const
TTPsObservedDetail & WithTechnique(const char *value)
void SetTechnique(const Aws::String &value)
void SetTactic(const Aws::String &value)
TTPsObservedDetail & WithProcedure(const Aws::String &value)
TTPsObservedDetail & WithIpAddress(Aws::String &&value)
TTPsObservedDetail & WithProcedure(const char *value)
TTPsObservedDetail & WithTechnique(Aws::String &&value)
TTPsObservedDetail & WithAPISuccessCount(long long value)
TTPsObservedDetail & WithAPIName(Aws::String &&value)
TTPsObservedDetail & WithTactic(const Aws::String &value)
TTPsObservedDetail & WithTactic(const char *value)
TTPsObservedDetail & WithAPIName(const Aws::String &value)
TTPsObservedDetail & WithIpAddress(const Aws::String &value)
TTPsObservedDetail & WithTactic(Aws::String &&value)
void SetProcedure(const Aws::String &value)
AWS_DETECTIVE_API TTPsObservedDetail & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetIpAddress(const Aws::String &value)
AWS_DETECTIVE_API TTPsObservedDetail(Aws::Utils::Json::JsonView jsonValue)
TTPsObservedDetail & WithIpAddress(const char *value)
void SetAPIName(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue