AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
OpsItem.h
1
6#pragma once
7#include <aws/ssm/SSM_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/DateTime.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <aws/ssm/model/OpsItemStatus.h>
12#include <aws/core/utils/memory/stl/AWSMap.h>
13#include <aws/ssm/model/OpsItemNotification.h>
14#include <aws/ssm/model/RelatedOpsItem.h>
15#include <aws/ssm/model/OpsItemDataValue.h>
16#include <utility>
17
18namespace Aws
19{
20namespace Utils
21{
22namespace Json
23{
24 class JsonValue;
25 class JsonView;
26} // namespace Json
27} // namespace Utils
28namespace SSM
29{
30namespace Model
31{
32
56 class OpsItem
57 {
58 public:
59 AWS_SSM_API OpsItem() = default;
60 AWS_SSM_API OpsItem(Aws::Utils::Json::JsonView jsonValue);
63
64
66
69 inline const Aws::String& GetCreatedBy() const { return m_createdBy; }
70 inline bool CreatedByHasBeenSet() const { return m_createdByHasBeenSet; }
71 template<typename CreatedByT = Aws::String>
72 void SetCreatedBy(CreatedByT&& value) { m_createdByHasBeenSet = true; m_createdBy = std::forward<CreatedByT>(value); }
73 template<typename CreatedByT = Aws::String>
74 OpsItem& WithCreatedBy(CreatedByT&& value) { SetCreatedBy(std::forward<CreatedByT>(value)); return *this;}
76
78
87 inline const Aws::String& GetOpsItemType() const { return m_opsItemType; }
88 inline bool OpsItemTypeHasBeenSet() const { return m_opsItemTypeHasBeenSet; }
89 template<typename OpsItemTypeT = Aws::String>
90 void SetOpsItemType(OpsItemTypeT&& value) { m_opsItemTypeHasBeenSet = true; m_opsItemType = std::forward<OpsItemTypeT>(value); }
91 template<typename OpsItemTypeT = Aws::String>
92 OpsItem& WithOpsItemType(OpsItemTypeT&& value) { SetOpsItemType(std::forward<OpsItemTypeT>(value)); return *this;}
94
96
99 inline const Aws::Utils::DateTime& GetCreatedTime() const { return m_createdTime; }
100 inline bool CreatedTimeHasBeenSet() const { return m_createdTimeHasBeenSet; }
101 template<typename CreatedTimeT = Aws::Utils::DateTime>
102 void SetCreatedTime(CreatedTimeT&& value) { m_createdTimeHasBeenSet = true; m_createdTime = std::forward<CreatedTimeT>(value); }
103 template<typename CreatedTimeT = Aws::Utils::DateTime>
104 OpsItem& WithCreatedTime(CreatedTimeT&& value) { SetCreatedTime(std::forward<CreatedTimeT>(value)); return *this;}
106
108
111 inline const Aws::String& GetDescription() const { return m_description; }
112 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
113 template<typename DescriptionT = Aws::String>
114 void SetDescription(DescriptionT&& value) { m_descriptionHasBeenSet = true; m_description = std::forward<DescriptionT>(value); }
115 template<typename DescriptionT = Aws::String>
116 OpsItem& WithDescription(DescriptionT&& value) { SetDescription(std::forward<DescriptionT>(value)); return *this;}
118
120
123 inline const Aws::String& GetLastModifiedBy() const { return m_lastModifiedBy; }
124 inline bool LastModifiedByHasBeenSet() const { return m_lastModifiedByHasBeenSet; }
125 template<typename LastModifiedByT = Aws::String>
126 void SetLastModifiedBy(LastModifiedByT&& value) { m_lastModifiedByHasBeenSet = true; m_lastModifiedBy = std::forward<LastModifiedByT>(value); }
127 template<typename LastModifiedByT = Aws::String>
128 OpsItem& WithLastModifiedBy(LastModifiedByT&& value) { SetLastModifiedBy(std::forward<LastModifiedByT>(value)); return *this;}
130
132
135 inline const Aws::Utils::DateTime& GetLastModifiedTime() const { return m_lastModifiedTime; }
136 inline bool LastModifiedTimeHasBeenSet() const { return m_lastModifiedTimeHasBeenSet; }
137 template<typename LastModifiedTimeT = Aws::Utils::DateTime>
138 void SetLastModifiedTime(LastModifiedTimeT&& value) { m_lastModifiedTimeHasBeenSet = true; m_lastModifiedTime = std::forward<LastModifiedTimeT>(value); }
139 template<typename LastModifiedTimeT = Aws::Utils::DateTime>
140 OpsItem& WithLastModifiedTime(LastModifiedTimeT&& value) { SetLastModifiedTime(std::forward<LastModifiedTimeT>(value)); return *this;}
142
144
149 inline const Aws::Vector<OpsItemNotification>& GetNotifications() const { return m_notifications; }
150 inline bool NotificationsHasBeenSet() const { return m_notificationsHasBeenSet; }
151 template<typename NotificationsT = Aws::Vector<OpsItemNotification>>
152 void SetNotifications(NotificationsT&& value) { m_notificationsHasBeenSet = true; m_notifications = std::forward<NotificationsT>(value); }
153 template<typename NotificationsT = Aws::Vector<OpsItemNotification>>
154 OpsItem& WithNotifications(NotificationsT&& value) { SetNotifications(std::forward<NotificationsT>(value)); return *this;}
155 template<typename NotificationsT = OpsItemNotification>
156 OpsItem& AddNotifications(NotificationsT&& value) { m_notificationsHasBeenSet = true; m_notifications.emplace_back(std::forward<NotificationsT>(value)); return *this; }
158
160
164 inline int GetPriority() const { return m_priority; }
165 inline bool PriorityHasBeenSet() const { return m_priorityHasBeenSet; }
166 inline void SetPriority(int value) { m_priorityHasBeenSet = true; m_priority = value; }
167 inline OpsItem& WithPriority(int value) { SetPriority(value); return *this;}
169
171
176 inline const Aws::Vector<RelatedOpsItem>& GetRelatedOpsItems() const { return m_relatedOpsItems; }
177 inline bool RelatedOpsItemsHasBeenSet() const { return m_relatedOpsItemsHasBeenSet; }
178 template<typename RelatedOpsItemsT = Aws::Vector<RelatedOpsItem>>
179 void SetRelatedOpsItems(RelatedOpsItemsT&& value) { m_relatedOpsItemsHasBeenSet = true; m_relatedOpsItems = std::forward<RelatedOpsItemsT>(value); }
180 template<typename RelatedOpsItemsT = Aws::Vector<RelatedOpsItem>>
181 OpsItem& WithRelatedOpsItems(RelatedOpsItemsT&& value) { SetRelatedOpsItems(std::forward<RelatedOpsItemsT>(value)); return *this;}
182 template<typename RelatedOpsItemsT = RelatedOpsItem>
183 OpsItem& AddRelatedOpsItems(RelatedOpsItemsT&& value) { m_relatedOpsItemsHasBeenSet = true; m_relatedOpsItems.emplace_back(std::forward<RelatedOpsItemsT>(value)); return *this; }
185
187
193 inline OpsItemStatus GetStatus() const { return m_status; }
194 inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; }
195 inline void SetStatus(OpsItemStatus value) { m_statusHasBeenSet = true; m_status = value; }
196 inline OpsItem& WithStatus(OpsItemStatus value) { SetStatus(value); return *this;}
198
200
203 inline const Aws::String& GetOpsItemId() const { return m_opsItemId; }
204 inline bool OpsItemIdHasBeenSet() const { return m_opsItemIdHasBeenSet; }
205 template<typename OpsItemIdT = Aws::String>
206 void SetOpsItemId(OpsItemIdT&& value) { m_opsItemIdHasBeenSet = true; m_opsItemId = std::forward<OpsItemIdT>(value); }
207 template<typename OpsItemIdT = Aws::String>
208 OpsItem& WithOpsItemId(OpsItemIdT&& value) { SetOpsItemId(std::forward<OpsItemIdT>(value)); return *this;}
210
212
216 inline const Aws::String& GetVersion() const { return m_version; }
217 inline bool VersionHasBeenSet() const { return m_versionHasBeenSet; }
218 template<typename VersionT = Aws::String>
219 void SetVersion(VersionT&& value) { m_versionHasBeenSet = true; m_version = std::forward<VersionT>(value); }
220 template<typename VersionT = Aws::String>
221 OpsItem& WithVersion(VersionT&& value) { SetVersion(std::forward<VersionT>(value)); return *this;}
223
225
229 inline const Aws::String& GetTitle() const { return m_title; }
230 inline bool TitleHasBeenSet() const { return m_titleHasBeenSet; }
231 template<typename TitleT = Aws::String>
232 void SetTitle(TitleT&& value) { m_titleHasBeenSet = true; m_title = std::forward<TitleT>(value); }
233 template<typename TitleT = Aws::String>
234 OpsItem& WithTitle(TitleT&& value) { SetTitle(std::forward<TitleT>(value)); return *this;}
236
238
242 inline const Aws::String& GetSource() const { return m_source; }
243 inline bool SourceHasBeenSet() const { return m_sourceHasBeenSet; }
244 template<typename SourceT = Aws::String>
245 void SetSource(SourceT&& value) { m_sourceHasBeenSet = true; m_source = std::forward<SourceT>(value); }
246 template<typename SourceT = Aws::String>
247 OpsItem& WithSource(SourceT&& value) { SetSource(std::forward<SourceT>(value)); return *this;}
249
251
274 inline const Aws::Map<Aws::String, OpsItemDataValue>& GetOperationalData() const { return m_operationalData; }
275 inline bool OperationalDataHasBeenSet() const { return m_operationalDataHasBeenSet; }
276 template<typename OperationalDataT = Aws::Map<Aws::String, OpsItemDataValue>>
277 void SetOperationalData(OperationalDataT&& value) { m_operationalDataHasBeenSet = true; m_operationalData = std::forward<OperationalDataT>(value); }
278 template<typename OperationalDataT = Aws::Map<Aws::String, OpsItemDataValue>>
279 OpsItem& WithOperationalData(OperationalDataT&& value) { SetOperationalData(std::forward<OperationalDataT>(value)); return *this;}
280 template<typename OperationalDataKeyT = Aws::String, typename OperationalDataValueT = OpsItemDataValue>
281 OpsItem& AddOperationalData(OperationalDataKeyT&& key, OperationalDataValueT&& value) {
282 m_operationalDataHasBeenSet = true; m_operationalData.emplace(std::forward<OperationalDataKeyT>(key), std::forward<OperationalDataValueT>(value)); return *this;
283 }
285
287
291 inline const Aws::String& GetCategory() const { return m_category; }
292 inline bool CategoryHasBeenSet() const { return m_categoryHasBeenSet; }
293 template<typename CategoryT = Aws::String>
294 void SetCategory(CategoryT&& value) { m_categoryHasBeenSet = true; m_category = std::forward<CategoryT>(value); }
295 template<typename CategoryT = Aws::String>
296 OpsItem& WithCategory(CategoryT&& value) { SetCategory(std::forward<CategoryT>(value)); return *this;}
298
300
303 inline const Aws::String& GetSeverity() const { return m_severity; }
304 inline bool SeverityHasBeenSet() const { return m_severityHasBeenSet; }
305 template<typename SeverityT = Aws::String>
306 void SetSeverity(SeverityT&& value) { m_severityHasBeenSet = true; m_severity = std::forward<SeverityT>(value); }
307 template<typename SeverityT = Aws::String>
308 OpsItem& WithSeverity(SeverityT&& value) { SetSeverity(std::forward<SeverityT>(value)); return *this;}
310
312
316 inline const Aws::Utils::DateTime& GetActualStartTime() const { return m_actualStartTime; }
317 inline bool ActualStartTimeHasBeenSet() const { return m_actualStartTimeHasBeenSet; }
318 template<typename ActualStartTimeT = Aws::Utils::DateTime>
319 void SetActualStartTime(ActualStartTimeT&& value) { m_actualStartTimeHasBeenSet = true; m_actualStartTime = std::forward<ActualStartTimeT>(value); }
320 template<typename ActualStartTimeT = Aws::Utils::DateTime>
321 OpsItem& WithActualStartTime(ActualStartTimeT&& value) { SetActualStartTime(std::forward<ActualStartTimeT>(value)); return *this;}
323
325
329 inline const Aws::Utils::DateTime& GetActualEndTime() const { return m_actualEndTime; }
330 inline bool ActualEndTimeHasBeenSet() const { return m_actualEndTimeHasBeenSet; }
331 template<typename ActualEndTimeT = Aws::Utils::DateTime>
332 void SetActualEndTime(ActualEndTimeT&& value) { m_actualEndTimeHasBeenSet = true; m_actualEndTime = std::forward<ActualEndTimeT>(value); }
333 template<typename ActualEndTimeT = Aws::Utils::DateTime>
334 OpsItem& WithActualEndTime(ActualEndTimeT&& value) { SetActualEndTime(std::forward<ActualEndTimeT>(value)); return *this;}
336
338
343 inline const Aws::Utils::DateTime& GetPlannedStartTime() const { return m_plannedStartTime; }
344 inline bool PlannedStartTimeHasBeenSet() const { return m_plannedStartTimeHasBeenSet; }
345 template<typename PlannedStartTimeT = Aws::Utils::DateTime>
346 void SetPlannedStartTime(PlannedStartTimeT&& value) { m_plannedStartTimeHasBeenSet = true; m_plannedStartTime = std::forward<PlannedStartTimeT>(value); }
347 template<typename PlannedStartTimeT = Aws::Utils::DateTime>
348 OpsItem& WithPlannedStartTime(PlannedStartTimeT&& value) { SetPlannedStartTime(std::forward<PlannedStartTimeT>(value)); return *this;}
350
352
357 inline const Aws::Utils::DateTime& GetPlannedEndTime() const { return m_plannedEndTime; }
358 inline bool PlannedEndTimeHasBeenSet() const { return m_plannedEndTimeHasBeenSet; }
359 template<typename PlannedEndTimeT = Aws::Utils::DateTime>
360 void SetPlannedEndTime(PlannedEndTimeT&& value) { m_plannedEndTimeHasBeenSet = true; m_plannedEndTime = std::forward<PlannedEndTimeT>(value); }
361 template<typename PlannedEndTimeT = Aws::Utils::DateTime>
362 OpsItem& WithPlannedEndTime(PlannedEndTimeT&& value) { SetPlannedEndTime(std::forward<PlannedEndTimeT>(value)); return *this;}
364
366
369 inline const Aws::String& GetOpsItemArn() const { return m_opsItemArn; }
370 inline bool OpsItemArnHasBeenSet() const { return m_opsItemArnHasBeenSet; }
371 template<typename OpsItemArnT = Aws::String>
372 void SetOpsItemArn(OpsItemArnT&& value) { m_opsItemArnHasBeenSet = true; m_opsItemArn = std::forward<OpsItemArnT>(value); }
373 template<typename OpsItemArnT = Aws::String>
374 OpsItem& WithOpsItemArn(OpsItemArnT&& value) { SetOpsItemArn(std::forward<OpsItemArnT>(value)); return *this;}
376 private:
377
378 Aws::String m_createdBy;
379 bool m_createdByHasBeenSet = false;
380
381 Aws::String m_opsItemType;
382 bool m_opsItemTypeHasBeenSet = false;
383
384 Aws::Utils::DateTime m_createdTime{};
385 bool m_createdTimeHasBeenSet = false;
386
387 Aws::String m_description;
388 bool m_descriptionHasBeenSet = false;
389
390 Aws::String m_lastModifiedBy;
391 bool m_lastModifiedByHasBeenSet = false;
392
393 Aws::Utils::DateTime m_lastModifiedTime{};
394 bool m_lastModifiedTimeHasBeenSet = false;
395
396 Aws::Vector<OpsItemNotification> m_notifications;
397 bool m_notificationsHasBeenSet = false;
398
399 int m_priority{0};
400 bool m_priorityHasBeenSet = false;
401
402 Aws::Vector<RelatedOpsItem> m_relatedOpsItems;
403 bool m_relatedOpsItemsHasBeenSet = false;
404
406 bool m_statusHasBeenSet = false;
407
408 Aws::String m_opsItemId;
409 bool m_opsItemIdHasBeenSet = false;
410
411 Aws::String m_version;
412 bool m_versionHasBeenSet = false;
413
414 Aws::String m_title;
415 bool m_titleHasBeenSet = false;
416
417 Aws::String m_source;
418 bool m_sourceHasBeenSet = false;
419
421 bool m_operationalDataHasBeenSet = false;
422
423 Aws::String m_category;
424 bool m_categoryHasBeenSet = false;
425
426 Aws::String m_severity;
427 bool m_severityHasBeenSet = false;
428
429 Aws::Utils::DateTime m_actualStartTime{};
430 bool m_actualStartTimeHasBeenSet = false;
431
432 Aws::Utils::DateTime m_actualEndTime{};
433 bool m_actualEndTimeHasBeenSet = false;
434
435 Aws::Utils::DateTime m_plannedStartTime{};
436 bool m_plannedStartTimeHasBeenSet = false;
437
438 Aws::Utils::DateTime m_plannedEndTime{};
439 bool m_plannedEndTimeHasBeenSet = false;
440
441 Aws::String m_opsItemArn;
442 bool m_opsItemArnHasBeenSet = false;
443 };
444
445} // namespace Model
446} // namespace SSM
447} // namespace Aws
void SetTitle(TitleT &&value)
Definition OpsItem.h:232
bool SeverityHasBeenSet() const
Definition OpsItem.h:304
void SetSeverity(SeverityT &&value)
Definition OpsItem.h:306
const Aws::String & GetOpsItemId() const
Definition OpsItem.h:203
int GetPriority() const
Definition OpsItem.h:164
void SetOpsItemArn(OpsItemArnT &&value)
Definition OpsItem.h:372
AWS_SSM_API OpsItem & operator=(Aws::Utils::Json::JsonView jsonValue)
OpsItem & WithTitle(TitleT &&value)
Definition OpsItem.h:234
bool OpsItemTypeHasBeenSet() const
Definition OpsItem.h:88
bool SourceHasBeenSet() const
Definition OpsItem.h:243
void SetLastModifiedTime(LastModifiedTimeT &&value)
Definition OpsItem.h:138
void SetStatus(OpsItemStatus value)
Definition OpsItem.h:195
void SetCreatedBy(CreatedByT &&value)
Definition OpsItem.h:72
OpsItem & WithVersion(VersionT &&value)
Definition OpsItem.h:221
const Aws::Vector< OpsItemNotification > & GetNotifications() const
Definition OpsItem.h:149
OpsItem & WithPlannedEndTime(PlannedEndTimeT &&value)
Definition OpsItem.h:362
void SetLastModifiedBy(LastModifiedByT &&value)
Definition OpsItem.h:126
void SetVersion(VersionT &&value)
Definition OpsItem.h:219
OpsItem & WithPriority(int value)
Definition OpsItem.h:167
bool LastModifiedTimeHasBeenSet() const
Definition OpsItem.h:136
OpsItem & WithPlannedStartTime(PlannedStartTimeT &&value)
Definition OpsItem.h:348
OpsItem & AddNotifications(NotificationsT &&value)
Definition OpsItem.h:156
OpsItem & WithOpsItemId(OpsItemIdT &&value)
Definition OpsItem.h:208
OpsItem & WithActualStartTime(ActualStartTimeT &&value)
Definition OpsItem.h:321
void SetActualStartTime(ActualStartTimeT &&value)
Definition OpsItem.h:319
const Aws::String & GetDescription() const
Definition OpsItem.h:111
bool NotificationsHasBeenSet() const
Definition OpsItem.h:150
OpsItemStatus GetStatus() const
Definition OpsItem.h:193
const Aws::String & GetCategory() const
Definition OpsItem.h:291
OpsItem & WithOpsItemType(OpsItemTypeT &&value)
Definition OpsItem.h:92
void SetOperationalData(OperationalDataT &&value)
Definition OpsItem.h:277
OpsItem & WithStatus(OpsItemStatus value)
Definition OpsItem.h:196
void SetOpsItemId(OpsItemIdT &&value)
Definition OpsItem.h:206
const Aws::String & GetTitle() const
Definition OpsItem.h:229
bool CreatedTimeHasBeenSet() const
Definition OpsItem.h:100
bool ActualEndTimeHasBeenSet() const
Definition OpsItem.h:330
OpsItem & WithActualEndTime(ActualEndTimeT &&value)
Definition OpsItem.h:334
const Aws::String & GetOpsItemArn() const
Definition OpsItem.h:369
void SetNotifications(NotificationsT &&value)
Definition OpsItem.h:152
bool VersionHasBeenSet() const
Definition OpsItem.h:217
bool TitleHasBeenSet() const
Definition OpsItem.h:230
OpsItem & WithLastModifiedBy(LastModifiedByT &&value)
Definition OpsItem.h:128
void SetDescription(DescriptionT &&value)
Definition OpsItem.h:114
void SetPlannedStartTime(PlannedStartTimeT &&value)
Definition OpsItem.h:346
bool DescriptionHasBeenSet() const
Definition OpsItem.h:112
void SetOpsItemType(OpsItemTypeT &&value)
Definition OpsItem.h:90
OpsItem & WithSeverity(SeverityT &&value)
Definition OpsItem.h:308
bool StatusHasBeenSet() const
Definition OpsItem.h:194
OpsItem & WithOperationalData(OperationalDataT &&value)
Definition OpsItem.h:279
AWS_SSM_API OpsItem()=default
const Aws::Utils::DateTime & GetActualStartTime() const
Definition OpsItem.h:316
bool OperationalDataHasBeenSet() const
Definition OpsItem.h:275
const Aws::Utils::DateTime & GetPlannedStartTime() const
Definition OpsItem.h:343
OpsItem & WithDescription(DescriptionT &&value)
Definition OpsItem.h:116
void SetPriority(int value)
Definition OpsItem.h:166
OpsItem & AddOperationalData(OperationalDataKeyT &&key, OperationalDataValueT &&value)
Definition OpsItem.h:281
void SetSource(SourceT &&value)
Definition OpsItem.h:245
const Aws::Utils::DateTime & GetCreatedTime() const
Definition OpsItem.h:99
const Aws::String & GetCreatedBy() const
Definition OpsItem.h:69
OpsItem & WithOpsItemArn(OpsItemArnT &&value)
Definition OpsItem.h:374
const Aws::Map< Aws::String, OpsItemDataValue > & GetOperationalData() const
Definition OpsItem.h:274
OpsItem & WithCreatedBy(CreatedByT &&value)
Definition OpsItem.h:74
bool CategoryHasBeenSet() const
Definition OpsItem.h:292
const Aws::Utils::DateTime & GetPlannedEndTime() const
Definition OpsItem.h:357
void SetPlannedEndTime(PlannedEndTimeT &&value)
Definition OpsItem.h:360
bool RelatedOpsItemsHasBeenSet() const
Definition OpsItem.h:177
OpsItem & WithCreatedTime(CreatedTimeT &&value)
Definition OpsItem.h:104
bool OpsItemArnHasBeenSet() const
Definition OpsItem.h:370
const Aws::String & GetSource() const
Definition OpsItem.h:242
const Aws::Vector< RelatedOpsItem > & GetRelatedOpsItems() const
Definition OpsItem.h:176
OpsItem & WithCategory(CategoryT &&value)
Definition OpsItem.h:296
const Aws::String & GetLastModifiedBy() const
Definition OpsItem.h:123
bool PriorityHasBeenSet() const
Definition OpsItem.h:165
const Aws::String & GetOpsItemType() const
Definition OpsItem.h:87
bool LastModifiedByHasBeenSet() const
Definition OpsItem.h:124
OpsItem & WithNotifications(NotificationsT &&value)
Definition OpsItem.h:154
bool PlannedEndTimeHasBeenSet() const
Definition OpsItem.h:358
void SetCategory(CategoryT &&value)
Definition OpsItem.h:294
OpsItem & WithSource(SourceT &&value)
Definition OpsItem.h:247
bool OpsItemIdHasBeenSet() const
Definition OpsItem.h:204
bool PlannedStartTimeHasBeenSet() const
Definition OpsItem.h:344
const Aws::String & GetSeverity() const
Definition OpsItem.h:303
void SetCreatedTime(CreatedTimeT &&value)
Definition OpsItem.h:102
bool CreatedByHasBeenSet() const
Definition OpsItem.h:70
void SetRelatedOpsItems(RelatedOpsItemsT &&value)
Definition OpsItem.h:179
bool ActualStartTimeHasBeenSet() const
Definition OpsItem.h:317
OpsItem & AddRelatedOpsItems(RelatedOpsItemsT &&value)
Definition OpsItem.h:183
const Aws::Utils::DateTime & GetActualEndTime() const
Definition OpsItem.h:329
AWS_SSM_API Aws::Utils::Json::JsonValue Jsonize() const
OpsItem & WithLastModifiedTime(LastModifiedTimeT &&value)
Definition OpsItem.h:140
const Aws::String & GetVersion() const
Definition OpsItem.h:216
void SetActualEndTime(ActualEndTimeT &&value)
Definition OpsItem.h:332
const Aws::Utils::DateTime & GetLastModifiedTime() const
Definition OpsItem.h:135
AWS_SSM_API OpsItem(Aws::Utils::Json::JsonView jsonValue)
OpsItem & WithRelatedOpsItems(RelatedOpsItemsT &&value)
Definition OpsItem.h:181
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