AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
StartDeleteMonitorDeploymentResult.h
1
6#pragma once
7#include <aws/medialive/MediaLive_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/core/utils/DateTime.h>
11#include <aws/core/utils/memory/stl/AWSMap.h>
12#include <aws/medialive/model/SuccessfulMonitorDeployment.h>
13#include <aws/medialive/model/MonitorDeployment.h>
14#include <aws/medialive/model/SignalMapStatus.h>
15#include <aws/medialive/model/MediaResource.h>
16#include <utility>
17
18namespace Aws
19{
20template<typename RESULT_TYPE>
21class AmazonWebServiceResult;
22
23namespace Utils
24{
25namespace Json
26{
27 class JsonValue;
28} // namespace Json
29} // namespace Utils
30namespace MediaLive
31{
32namespace Model
33{
41 {
42 public:
46
47
49
52 inline const Aws::String& GetArn() const{ return m_arn; }
53 inline void SetArn(const Aws::String& value) { m_arn = value; }
54 inline void SetArn(Aws::String&& value) { m_arn = std::move(value); }
55 inline void SetArn(const char* value) { m_arn.assign(value); }
56 inline StartDeleteMonitorDeploymentResult& WithArn(const Aws::String& value) { SetArn(value); return *this;}
57 inline StartDeleteMonitorDeploymentResult& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;}
58 inline StartDeleteMonitorDeploymentResult& WithArn(const char* value) { SetArn(value); return *this;}
60
62
63 inline const Aws::Vector<Aws::String>& GetCloudWatchAlarmTemplateGroupIds() const{ return m_cloudWatchAlarmTemplateGroupIds; }
64 inline void SetCloudWatchAlarmTemplateGroupIds(const Aws::Vector<Aws::String>& value) { m_cloudWatchAlarmTemplateGroupIds = value; }
65 inline void SetCloudWatchAlarmTemplateGroupIds(Aws::Vector<Aws::String>&& value) { m_cloudWatchAlarmTemplateGroupIds = std::move(value); }
68 inline StartDeleteMonitorDeploymentResult& AddCloudWatchAlarmTemplateGroupIds(const Aws::String& value) { m_cloudWatchAlarmTemplateGroupIds.push_back(value); return *this; }
69 inline StartDeleteMonitorDeploymentResult& AddCloudWatchAlarmTemplateGroupIds(Aws::String&& value) { m_cloudWatchAlarmTemplateGroupIds.push_back(std::move(value)); return *this; }
70 inline StartDeleteMonitorDeploymentResult& AddCloudWatchAlarmTemplateGroupIds(const char* value) { m_cloudWatchAlarmTemplateGroupIds.push_back(value); return *this; }
72
74
75 inline const Aws::Utils::DateTime& GetCreatedAt() const{ return m_createdAt; }
76 inline void SetCreatedAt(const Aws::Utils::DateTime& value) { m_createdAt = value; }
77 inline void SetCreatedAt(Aws::Utils::DateTime&& value) { m_createdAt = std::move(value); }
79 inline StartDeleteMonitorDeploymentResult& WithCreatedAt(Aws::Utils::DateTime&& value) { SetCreatedAt(std::move(value)); return *this;}
81
83
86 inline const Aws::String& GetDescription() const{ return m_description; }
87 inline void SetDescription(const Aws::String& value) { m_description = value; }
88 inline void SetDescription(Aws::String&& value) { m_description = std::move(value); }
89 inline void SetDescription(const char* value) { m_description.assign(value); }
91 inline StartDeleteMonitorDeploymentResult& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
92 inline StartDeleteMonitorDeploymentResult& WithDescription(const char* value) { SetDescription(value); return *this;}
94
96
99 inline const Aws::String& GetDiscoveryEntryPointArn() const{ return m_discoveryEntryPointArn; }
100 inline void SetDiscoveryEntryPointArn(const Aws::String& value) { m_discoveryEntryPointArn = value; }
101 inline void SetDiscoveryEntryPointArn(Aws::String&& value) { m_discoveryEntryPointArn = std::move(value); }
102 inline void SetDiscoveryEntryPointArn(const char* value) { m_discoveryEntryPointArn.assign(value); }
107
109
113 inline const Aws::String& GetErrorMessage() const{ return m_errorMessage; }
114 inline void SetErrorMessage(const Aws::String& value) { m_errorMessage = value; }
115 inline void SetErrorMessage(Aws::String&& value) { m_errorMessage = std::move(value); }
116 inline void SetErrorMessage(const char* value) { m_errorMessage.assign(value); }
118 inline StartDeleteMonitorDeploymentResult& WithErrorMessage(Aws::String&& value) { SetErrorMessage(std::move(value)); return *this;}
119 inline StartDeleteMonitorDeploymentResult& WithErrorMessage(const char* value) { SetErrorMessage(value); return *this;}
121
123
124 inline const Aws::Vector<Aws::String>& GetEventBridgeRuleTemplateGroupIds() const{ return m_eventBridgeRuleTemplateGroupIds; }
125 inline void SetEventBridgeRuleTemplateGroupIds(const Aws::Vector<Aws::String>& value) { m_eventBridgeRuleTemplateGroupIds = value; }
126 inline void SetEventBridgeRuleTemplateGroupIds(Aws::Vector<Aws::String>&& value) { m_eventBridgeRuleTemplateGroupIds = std::move(value); }
129 inline StartDeleteMonitorDeploymentResult& AddEventBridgeRuleTemplateGroupIds(const Aws::String& value) { m_eventBridgeRuleTemplateGroupIds.push_back(value); return *this; }
130 inline StartDeleteMonitorDeploymentResult& AddEventBridgeRuleTemplateGroupIds(Aws::String&& value) { m_eventBridgeRuleTemplateGroupIds.push_back(std::move(value)); return *this; }
131 inline StartDeleteMonitorDeploymentResult& AddEventBridgeRuleTemplateGroupIds(const char* value) { m_eventBridgeRuleTemplateGroupIds.push_back(value); return *this; }
133
135
136 inline const Aws::Map<Aws::String, MediaResource>& GetFailedMediaResourceMap() const{ return m_failedMediaResourceMap; }
137 inline void SetFailedMediaResourceMap(const Aws::Map<Aws::String, MediaResource>& value) { m_failedMediaResourceMap = value; }
138 inline void SetFailedMediaResourceMap(Aws::Map<Aws::String, MediaResource>&& value) { m_failedMediaResourceMap = std::move(value); }
141 inline StartDeleteMonitorDeploymentResult& AddFailedMediaResourceMap(const Aws::String& key, const MediaResource& value) { m_failedMediaResourceMap.emplace(key, value); return *this; }
142 inline StartDeleteMonitorDeploymentResult& AddFailedMediaResourceMap(Aws::String&& key, const MediaResource& value) { m_failedMediaResourceMap.emplace(std::move(key), value); return *this; }
143 inline StartDeleteMonitorDeploymentResult& AddFailedMediaResourceMap(const Aws::String& key, MediaResource&& value) { m_failedMediaResourceMap.emplace(key, std::move(value)); return *this; }
144 inline StartDeleteMonitorDeploymentResult& AddFailedMediaResourceMap(Aws::String&& key, MediaResource&& value) { m_failedMediaResourceMap.emplace(std::move(key), std::move(value)); return *this; }
145 inline StartDeleteMonitorDeploymentResult& AddFailedMediaResourceMap(const char* key, MediaResource&& value) { m_failedMediaResourceMap.emplace(key, std::move(value)); return *this; }
146 inline StartDeleteMonitorDeploymentResult& AddFailedMediaResourceMap(const char* key, const MediaResource& value) { m_failedMediaResourceMap.emplace(key, value); return *this; }
148
150
153 inline const Aws::String& GetId() const{ return m_id; }
154 inline void SetId(const Aws::String& value) { m_id = value; }
155 inline void SetId(Aws::String&& value) { m_id = std::move(value); }
156 inline void SetId(const char* value) { m_id.assign(value); }
157 inline StartDeleteMonitorDeploymentResult& WithId(const Aws::String& value) { SetId(value); return *this;}
158 inline StartDeleteMonitorDeploymentResult& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;}
159 inline StartDeleteMonitorDeploymentResult& WithId(const char* value) { SetId(value); return *this;}
161
163
164 inline const Aws::Utils::DateTime& GetLastDiscoveredAt() const{ return m_lastDiscoveredAt; }
165 inline void SetLastDiscoveredAt(const Aws::Utils::DateTime& value) { m_lastDiscoveredAt = value; }
166 inline void SetLastDiscoveredAt(Aws::Utils::DateTime&& value) { m_lastDiscoveredAt = std::move(value); }
170
172
173 inline const SuccessfulMonitorDeployment& GetLastSuccessfulMonitorDeployment() const{ return m_lastSuccessfulMonitorDeployment; }
174 inline void SetLastSuccessfulMonitorDeployment(const SuccessfulMonitorDeployment& value) { m_lastSuccessfulMonitorDeployment = value; }
175 inline void SetLastSuccessfulMonitorDeployment(SuccessfulMonitorDeployment&& value) { m_lastSuccessfulMonitorDeployment = std::move(value); }
179
181
182 inline const Aws::Map<Aws::String, MediaResource>& GetMediaResourceMap() const{ return m_mediaResourceMap; }
183 inline void SetMediaResourceMap(const Aws::Map<Aws::String, MediaResource>& value) { m_mediaResourceMap = value; }
184 inline void SetMediaResourceMap(Aws::Map<Aws::String, MediaResource>&& value) { m_mediaResourceMap = std::move(value); }
187 inline StartDeleteMonitorDeploymentResult& AddMediaResourceMap(const Aws::String& key, const MediaResource& value) { m_mediaResourceMap.emplace(key, value); return *this; }
188 inline StartDeleteMonitorDeploymentResult& AddMediaResourceMap(Aws::String&& key, const MediaResource& value) { m_mediaResourceMap.emplace(std::move(key), value); return *this; }
189 inline StartDeleteMonitorDeploymentResult& AddMediaResourceMap(const Aws::String& key, MediaResource&& value) { m_mediaResourceMap.emplace(key, std::move(value)); return *this; }
190 inline StartDeleteMonitorDeploymentResult& AddMediaResourceMap(Aws::String&& key, MediaResource&& value) { m_mediaResourceMap.emplace(std::move(key), std::move(value)); return *this; }
191 inline StartDeleteMonitorDeploymentResult& AddMediaResourceMap(const char* key, MediaResource&& value) { m_mediaResourceMap.emplace(key, std::move(value)); return *this; }
192 inline StartDeleteMonitorDeploymentResult& AddMediaResourceMap(const char* key, const MediaResource& value) { m_mediaResourceMap.emplace(key, value); return *this; }
194
196
197 inline const Aws::Utils::DateTime& GetModifiedAt() const{ return m_modifiedAt; }
198 inline void SetModifiedAt(const Aws::Utils::DateTime& value) { m_modifiedAt = value; }
199 inline void SetModifiedAt(Aws::Utils::DateTime&& value) { m_modifiedAt = std::move(value); }
201 inline StartDeleteMonitorDeploymentResult& WithModifiedAt(Aws::Utils::DateTime&& value) { SetModifiedAt(std::move(value)); return *this;}
203
205
209 inline bool GetMonitorChangesPendingDeployment() const{ return m_monitorChangesPendingDeployment; }
210 inline void SetMonitorChangesPendingDeployment(bool value) { m_monitorChangesPendingDeployment = value; }
213
215
216 inline const MonitorDeployment& GetMonitorDeployment() const{ return m_monitorDeployment; }
217 inline void SetMonitorDeployment(const MonitorDeployment& value) { m_monitorDeployment = value; }
218 inline void SetMonitorDeployment(MonitorDeployment&& value) { m_monitorDeployment = std::move(value); }
222
224
228 inline const Aws::String& GetName() const{ return m_name; }
229 inline void SetName(const Aws::String& value) { m_name = value; }
230 inline void SetName(Aws::String&& value) { m_name = std::move(value); }
231 inline void SetName(const char* value) { m_name.assign(value); }
232 inline StartDeleteMonitorDeploymentResult& WithName(const Aws::String& value) { SetName(value); return *this;}
233 inline StartDeleteMonitorDeploymentResult& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
234 inline StartDeleteMonitorDeploymentResult& WithName(const char* value) { SetName(value); return *this;}
236
238
239 inline const SignalMapStatus& GetStatus() const{ return m_status; }
240 inline void SetStatus(const SignalMapStatus& value) { m_status = value; }
241 inline void SetStatus(SignalMapStatus&& value) { m_status = std::move(value); }
242 inline StartDeleteMonitorDeploymentResult& WithStatus(const SignalMapStatus& value) { SetStatus(value); return *this;}
243 inline StartDeleteMonitorDeploymentResult& WithStatus(SignalMapStatus&& value) { SetStatus(std::move(value)); return *this;}
245
247
248 inline const Aws::Map<Aws::String, Aws::String>& GetTags() const{ return m_tags; }
249 inline void SetTags(const Aws::Map<Aws::String, Aws::String>& value) { m_tags = value; }
250 inline void SetTags(Aws::Map<Aws::String, Aws::String>&& value) { m_tags = std::move(value); }
253 inline StartDeleteMonitorDeploymentResult& AddTags(const Aws::String& key, const Aws::String& value) { m_tags.emplace(key, value); return *this; }
254 inline StartDeleteMonitorDeploymentResult& AddTags(Aws::String&& key, const Aws::String& value) { m_tags.emplace(std::move(key), value); return *this; }
255 inline StartDeleteMonitorDeploymentResult& AddTags(const Aws::String& key, Aws::String&& value) { m_tags.emplace(key, std::move(value)); return *this; }
256 inline StartDeleteMonitorDeploymentResult& AddTags(Aws::String&& key, Aws::String&& value) { m_tags.emplace(std::move(key), std::move(value)); return *this; }
257 inline StartDeleteMonitorDeploymentResult& AddTags(const char* key, Aws::String&& value) { m_tags.emplace(key, std::move(value)); return *this; }
258 inline StartDeleteMonitorDeploymentResult& AddTags(Aws::String&& key, const char* value) { m_tags.emplace(std::move(key), value); return *this; }
259 inline StartDeleteMonitorDeploymentResult& AddTags(const char* key, const char* value) { m_tags.emplace(key, value); return *this; }
261
263
264 inline const Aws::String& GetRequestId() const{ return m_requestId; }
265 inline void SetRequestId(const Aws::String& value) { m_requestId = value; }
266 inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); }
267 inline void SetRequestId(const char* value) { m_requestId.assign(value); }
268 inline StartDeleteMonitorDeploymentResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;}
269 inline StartDeleteMonitorDeploymentResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;}
270 inline StartDeleteMonitorDeploymentResult& WithRequestId(const char* value) { SetRequestId(value); return *this;}
272 private:
273
274 Aws::String m_arn;
275
276 Aws::Vector<Aws::String> m_cloudWatchAlarmTemplateGroupIds;
277
278 Aws::Utils::DateTime m_createdAt;
279
280 Aws::String m_description;
281
282 Aws::String m_discoveryEntryPointArn;
283
284 Aws::String m_errorMessage;
285
286 Aws::Vector<Aws::String> m_eventBridgeRuleTemplateGroupIds;
287
288 Aws::Map<Aws::String, MediaResource> m_failedMediaResourceMap;
289
290 Aws::String m_id;
291
292 Aws::Utils::DateTime m_lastDiscoveredAt;
293
294 SuccessfulMonitorDeployment m_lastSuccessfulMonitorDeployment;
295
296 Aws::Map<Aws::String, MediaResource> m_mediaResourceMap;
297
298 Aws::Utils::DateTime m_modifiedAt;
299
300 bool m_monitorChangesPendingDeployment;
301
302 MonitorDeployment m_monitorDeployment;
303
304 Aws::String m_name;
305
306 SignalMapStatus m_status;
307
309
310 Aws::String m_requestId;
311 };
312
313} // namespace Model
314} // namespace MediaLive
315} // namespace Aws
StartDeleteMonitorDeploymentResult & WithErrorMessage(const char *value)
StartDeleteMonitorDeploymentResult & WithStatus(SignalMapStatus &&value)
void SetEventBridgeRuleTemplateGroupIds(const Aws::Vector< Aws::String > &value)
StartDeleteMonitorDeploymentResult & WithDiscoveryEntryPointArn(const char *value)
const Aws::Map< Aws::String, MediaResource > & GetFailedMediaResourceMap() const
StartDeleteMonitorDeploymentResult & AddTags(Aws::String &&key, const char *value)
StartDeleteMonitorDeploymentResult & AddMediaResourceMap(const char *key, MediaResource &&value)
StartDeleteMonitorDeploymentResult & WithName(const Aws::String &value)
StartDeleteMonitorDeploymentResult & AddFailedMediaResourceMap(const char *key, MediaResource &&value)
void SetCloudWatchAlarmTemplateGroupIds(const Aws::Vector< Aws::String > &value)
StartDeleteMonitorDeploymentResult & WithTags(Aws::Map< Aws::String, Aws::String > &&value)
StartDeleteMonitorDeploymentResult & WithLastDiscoveredAt(Aws::Utils::DateTime &&value)
const Aws::Vector< Aws::String > & GetCloudWatchAlarmTemplateGroupIds() const
StartDeleteMonitorDeploymentResult & AddEventBridgeRuleTemplateGroupIds(const char *value)
StartDeleteMonitorDeploymentResult & WithCreatedAt(Aws::Utils::DateTime &&value)
StartDeleteMonitorDeploymentResult & WithModifiedAt(const Aws::Utils::DateTime &value)
StartDeleteMonitorDeploymentResult & WithId(const Aws::String &value)
StartDeleteMonitorDeploymentResult & WithDescription(const Aws::String &value)
StartDeleteMonitorDeploymentResult & WithModifiedAt(Aws::Utils::DateTime &&value)
StartDeleteMonitorDeploymentResult & AddFailedMediaResourceMap(const Aws::String &key, const MediaResource &value)
StartDeleteMonitorDeploymentResult & AddFailedMediaResourceMap(Aws::String &&key, MediaResource &&value)
StartDeleteMonitorDeploymentResult & WithLastDiscoveredAt(const Aws::Utils::DateTime &value)
StartDeleteMonitorDeploymentResult & WithFailedMediaResourceMap(Aws::Map< Aws::String, MediaResource > &&value)
StartDeleteMonitorDeploymentResult & AddMediaResourceMap(const char *key, const MediaResource &value)
StartDeleteMonitorDeploymentResult & WithArn(Aws::String &&value)
StartDeleteMonitorDeploymentResult & WithId(Aws::String &&value)
StartDeleteMonitorDeploymentResult & AddMediaResourceMap(const Aws::String &key, MediaResource &&value)
StartDeleteMonitorDeploymentResult & AddTags(Aws::String &&key, Aws::String &&value)
void SetMediaResourceMap(const Aws::Map< Aws::String, MediaResource > &value)
void SetLastSuccessfulMonitorDeployment(const SuccessfulMonitorDeployment &value)
StartDeleteMonitorDeploymentResult & WithLastSuccessfulMonitorDeployment(const SuccessfulMonitorDeployment &value)
StartDeleteMonitorDeploymentResult & WithDiscoveryEntryPointArn(Aws::String &&value)
StartDeleteMonitorDeploymentResult & WithEventBridgeRuleTemplateGroupIds(Aws::Vector< Aws::String > &&value)
StartDeleteMonitorDeploymentResult & AddCloudWatchAlarmTemplateGroupIds(Aws::String &&value)
StartDeleteMonitorDeploymentResult & WithErrorMessage(Aws::String &&value)
StartDeleteMonitorDeploymentResult & WithName(Aws::String &&value)
const SuccessfulMonitorDeployment & GetLastSuccessfulMonitorDeployment() const
StartDeleteMonitorDeploymentResult & WithErrorMessage(const Aws::String &value)
StartDeleteMonitorDeploymentResult & WithCloudWatchAlarmTemplateGroupIds(const Aws::Vector< Aws::String > &value)
StartDeleteMonitorDeploymentResult & AddFailedMediaResourceMap(Aws::String &&key, const MediaResource &value)
void SetFailedMediaResourceMap(const Aws::Map< Aws::String, MediaResource > &value)
StartDeleteMonitorDeploymentResult & WithMonitorChangesPendingDeployment(bool value)
StartDeleteMonitorDeploymentResult & WithMonitorDeployment(const MonitorDeployment &value)
StartDeleteMonitorDeploymentResult & WithTags(const Aws::Map< Aws::String, Aws::String > &value)
StartDeleteMonitorDeploymentResult & WithRequestId(const Aws::String &value)
StartDeleteMonitorDeploymentResult & AddTags(Aws::String &&key, const Aws::String &value)
StartDeleteMonitorDeploymentResult & WithFailedMediaResourceMap(const Aws::Map< Aws::String, MediaResource > &value)
StartDeleteMonitorDeploymentResult & AddFailedMediaResourceMap(const Aws::String &key, MediaResource &&value)
void SetTags(const Aws::Map< Aws::String, Aws::String > &value)
StartDeleteMonitorDeploymentResult & AddMediaResourceMap(const Aws::String &key, const MediaResource &value)
StartDeleteMonitorDeploymentResult & WithCreatedAt(const Aws::Utils::DateTime &value)
StartDeleteMonitorDeploymentResult & WithStatus(const SignalMapStatus &value)
StartDeleteMonitorDeploymentResult & WithCloudWatchAlarmTemplateGroupIds(Aws::Vector< Aws::String > &&value)
StartDeleteMonitorDeploymentResult & AddTags(const char *key, const char *value)
AWS_MEDIALIVE_API StartDeleteMonitorDeploymentResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
StartDeleteMonitorDeploymentResult & WithMediaResourceMap(Aws::Map< Aws::String, MediaResource > &&value)
StartDeleteMonitorDeploymentResult & AddCloudWatchAlarmTemplateGroupIds(const char *value)
StartDeleteMonitorDeploymentResult & WithDescription(Aws::String &&value)
StartDeleteMonitorDeploymentResult & WithName(const char *value)
StartDeleteMonitorDeploymentResult & WithId(const char *value)
StartDeleteMonitorDeploymentResult & AddEventBridgeRuleTemplateGroupIds(const Aws::String &value)
StartDeleteMonitorDeploymentResult & AddTags(const Aws::String &key, Aws::String &&value)
StartDeleteMonitorDeploymentResult & WithMediaResourceMap(const Aws::Map< Aws::String, MediaResource > &value)
StartDeleteMonitorDeploymentResult & AddMediaResourceMap(Aws::String &&key, MediaResource &&value)
StartDeleteMonitorDeploymentResult & WithEventBridgeRuleTemplateGroupIds(const Aws::Vector< Aws::String > &value)
StartDeleteMonitorDeploymentResult & AddFailedMediaResourceMap(const char *key, const MediaResource &value)
StartDeleteMonitorDeploymentResult & AddTags(const char *key, Aws::String &&value)
void SetFailedMediaResourceMap(Aws::Map< Aws::String, MediaResource > &&value)
StartDeleteMonitorDeploymentResult & WithArn(const Aws::String &value)
StartDeleteMonitorDeploymentResult & WithRequestId(Aws::String &&value)
StartDeleteMonitorDeploymentResult & AddTags(const Aws::String &key, const Aws::String &value)
StartDeleteMonitorDeploymentResult & WithDescription(const char *value)
const Aws::Map< Aws::String, MediaResource > & GetMediaResourceMap() const
StartDeleteMonitorDeploymentResult & AddEventBridgeRuleTemplateGroupIds(Aws::String &&value)
void SetMediaResourceMap(Aws::Map< Aws::String, MediaResource > &&value)
StartDeleteMonitorDeploymentResult & WithMonitorDeployment(MonitorDeployment &&value)
StartDeleteMonitorDeploymentResult & AddCloudWatchAlarmTemplateGroupIds(const Aws::String &value)
StartDeleteMonitorDeploymentResult & AddMediaResourceMap(Aws::String &&key, const MediaResource &value)
StartDeleteMonitorDeploymentResult & WithLastSuccessfulMonitorDeployment(SuccessfulMonitorDeployment &&value)
StartDeleteMonitorDeploymentResult & WithRequestId(const char *value)
StartDeleteMonitorDeploymentResult & WithArn(const char *value)
const Aws::Map< Aws::String, Aws::String > & GetTags() const
AWS_MEDIALIVE_API StartDeleteMonitorDeploymentResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
StartDeleteMonitorDeploymentResult & WithDiscoveryEntryPointArn(const Aws::String &value)
std::map< K, V, std::less< K >, Aws::Allocator< std::pair< const K, V > > > Map
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue