AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
OrganizationRecommendation.h
1
6#pragma once
7#include <aws/trustedadvisor/TrustedAdvisor_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/trustedadvisor/model/RecommendationLifecycleStage.h>
12#include <aws/trustedadvisor/model/RecommendationPillarSpecificAggregates.h>
13#include <aws/trustedadvisor/model/RecommendationResourcesAggregates.h>
14#include <aws/trustedadvisor/model/RecommendationSource.h>
15#include <aws/trustedadvisor/model/RecommendationStatus.h>
16#include <aws/trustedadvisor/model/RecommendationType.h>
17#include <aws/trustedadvisor/model/UpdateRecommendationLifecycleStageReasonCode.h>
18#include <aws/trustedadvisor/model/RecommendationPillar.h>
19#include <utility>
20
21namespace Aws
22{
23namespace Utils
24{
25namespace Json
26{
27 class JsonValue;
28 class JsonView;
29} // namespace Json
30} // namespace Utils
31namespace TrustedAdvisor
32{
33namespace Model
34{
35
43 {
44 public:
45 AWS_TRUSTEDADVISOR_API OrganizationRecommendation();
46 AWS_TRUSTEDADVISOR_API OrganizationRecommendation(Aws::Utils::Json::JsonView jsonValue);
48 AWS_TRUSTEDADVISOR_API Aws::Utils::Json::JsonValue Jsonize() const;
49
50
52
55 inline const Aws::String& GetArn() const{ return m_arn; }
56 inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; }
57 inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; }
58 inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); }
59 inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); }
60 inline OrganizationRecommendation& WithArn(const Aws::String& value) { SetArn(value); return *this;}
61 inline OrganizationRecommendation& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;}
62 inline OrganizationRecommendation& WithArn(const char* value) { SetArn(value); return *this;}
64
66
69 inline const Aws::Vector<Aws::String>& GetAwsServices() const{ return m_awsServices; }
70 inline bool AwsServicesHasBeenSet() const { return m_awsServicesHasBeenSet; }
71 inline void SetAwsServices(const Aws::Vector<Aws::String>& value) { m_awsServicesHasBeenSet = true; m_awsServices = value; }
72 inline void SetAwsServices(Aws::Vector<Aws::String>&& value) { m_awsServicesHasBeenSet = true; m_awsServices = std::move(value); }
74 inline OrganizationRecommendation& WithAwsServices(Aws::Vector<Aws::String>&& value) { SetAwsServices(std::move(value)); return *this;}
75 inline OrganizationRecommendation& AddAwsServices(const Aws::String& value) { m_awsServicesHasBeenSet = true; m_awsServices.push_back(value); return *this; }
76 inline OrganizationRecommendation& AddAwsServices(Aws::String&& value) { m_awsServicesHasBeenSet = true; m_awsServices.push_back(std::move(value)); return *this; }
77 inline OrganizationRecommendation& AddAwsServices(const char* value) { m_awsServicesHasBeenSet = true; m_awsServices.push_back(value); return *this; }
79
81
84 inline const Aws::String& GetCheckArn() const{ return m_checkArn; }
85 inline bool CheckArnHasBeenSet() const { return m_checkArnHasBeenSet; }
86 inline void SetCheckArn(const Aws::String& value) { m_checkArnHasBeenSet = true; m_checkArn = value; }
87 inline void SetCheckArn(Aws::String&& value) { m_checkArnHasBeenSet = true; m_checkArn = std::move(value); }
88 inline void SetCheckArn(const char* value) { m_checkArnHasBeenSet = true; m_checkArn.assign(value); }
89 inline OrganizationRecommendation& WithCheckArn(const Aws::String& value) { SetCheckArn(value); return *this;}
90 inline OrganizationRecommendation& WithCheckArn(Aws::String&& value) { SetCheckArn(std::move(value)); return *this;}
91 inline OrganizationRecommendation& WithCheckArn(const char* value) { SetCheckArn(value); return *this;}
93
95
99 inline const Aws::Utils::DateTime& GetCreatedAt() const{ return m_createdAt; }
100 inline bool CreatedAtHasBeenSet() const { return m_createdAtHasBeenSet; }
101 inline void SetCreatedAt(const Aws::Utils::DateTime& value) { m_createdAtHasBeenSet = true; m_createdAt = value; }
102 inline void SetCreatedAt(Aws::Utils::DateTime&& value) { m_createdAtHasBeenSet = true; m_createdAt = std::move(value); }
103 inline OrganizationRecommendation& WithCreatedAt(const Aws::Utils::DateTime& value) { SetCreatedAt(value); return *this;}
104 inline OrganizationRecommendation& WithCreatedAt(Aws::Utils::DateTime&& value) { SetCreatedAt(std::move(value)); return *this;}
106
108
111 inline const Aws::String& GetCreatedBy() const{ return m_createdBy; }
112 inline bool CreatedByHasBeenSet() const { return m_createdByHasBeenSet; }
113 inline void SetCreatedBy(const Aws::String& value) { m_createdByHasBeenSet = true; m_createdBy = value; }
114 inline void SetCreatedBy(Aws::String&& value) { m_createdByHasBeenSet = true; m_createdBy = std::move(value); }
115 inline void SetCreatedBy(const char* value) { m_createdByHasBeenSet = true; m_createdBy.assign(value); }
116 inline OrganizationRecommendation& WithCreatedBy(const Aws::String& value) { SetCreatedBy(value); return *this;}
117 inline OrganizationRecommendation& WithCreatedBy(Aws::String&& value) { SetCreatedBy(std::move(value)); return *this;}
118 inline OrganizationRecommendation& WithCreatedBy(const char* value) { SetCreatedBy(value); return *this;}
120
122
125 inline const Aws::String& GetDescription() const{ return m_description; }
126 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
127 inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
128 inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
129 inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
130 inline OrganizationRecommendation& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
131 inline OrganizationRecommendation& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
132 inline OrganizationRecommendation& WithDescription(const char* value) { SetDescription(value); return *this;}
134
136
139 inline const Aws::String& GetId() const{ return m_id; }
140 inline bool IdHasBeenSet() const { return m_idHasBeenSet; }
141 inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; }
142 inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); }
143 inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); }
144 inline OrganizationRecommendation& WithId(const Aws::String& value) { SetId(value); return *this;}
145 inline OrganizationRecommendation& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;}
146 inline OrganizationRecommendation& WithId(const char* value) { SetId(value); return *this;}
148
150
153 inline const Aws::Utils::DateTime& GetLastUpdatedAt() const{ return m_lastUpdatedAt; }
154 inline bool LastUpdatedAtHasBeenSet() const { return m_lastUpdatedAtHasBeenSet; }
155 inline void SetLastUpdatedAt(const Aws::Utils::DateTime& value) { m_lastUpdatedAtHasBeenSet = true; m_lastUpdatedAt = value; }
156 inline void SetLastUpdatedAt(Aws::Utils::DateTime&& value) { m_lastUpdatedAtHasBeenSet = true; m_lastUpdatedAt = std::move(value); }
158 inline OrganizationRecommendation& WithLastUpdatedAt(Aws::Utils::DateTime&& value) { SetLastUpdatedAt(std::move(value)); return *this;}
160
162
165 inline const RecommendationLifecycleStage& GetLifecycleStage() const{ return m_lifecycleStage; }
166 inline bool LifecycleStageHasBeenSet() const { return m_lifecycleStageHasBeenSet; }
167 inline void SetLifecycleStage(const RecommendationLifecycleStage& value) { m_lifecycleStageHasBeenSet = true; m_lifecycleStage = value; }
168 inline void SetLifecycleStage(RecommendationLifecycleStage&& value) { m_lifecycleStageHasBeenSet = true; m_lifecycleStage = std::move(value); }
172
174
177 inline const Aws::String& GetName() const{ return m_name; }
178 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
179 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
180 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
181 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
182 inline OrganizationRecommendation& WithName(const Aws::String& value) { SetName(value); return *this;}
183 inline OrganizationRecommendation& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
184 inline OrganizationRecommendation& WithName(const char* value) { SetName(value); return *this;}
186
188
191 inline const RecommendationPillarSpecificAggregates& GetPillarSpecificAggregates() const{ return m_pillarSpecificAggregates; }
192 inline bool PillarSpecificAggregatesHasBeenSet() const { return m_pillarSpecificAggregatesHasBeenSet; }
193 inline void SetPillarSpecificAggregates(const RecommendationPillarSpecificAggregates& value) { m_pillarSpecificAggregatesHasBeenSet = true; m_pillarSpecificAggregates = value; }
194 inline void SetPillarSpecificAggregates(RecommendationPillarSpecificAggregates&& value) { m_pillarSpecificAggregatesHasBeenSet = true; m_pillarSpecificAggregates = std::move(value); }
198
200
203 inline const Aws::Vector<RecommendationPillar>& GetPillars() const{ return m_pillars; }
204 inline bool PillarsHasBeenSet() const { return m_pillarsHasBeenSet; }
205 inline void SetPillars(const Aws::Vector<RecommendationPillar>& value) { m_pillarsHasBeenSet = true; m_pillars = value; }
206 inline void SetPillars(Aws::Vector<RecommendationPillar>&& value) { m_pillarsHasBeenSet = true; m_pillars = std::move(value); }
208 inline OrganizationRecommendation& WithPillars(Aws::Vector<RecommendationPillar>&& value) { SetPillars(std::move(value)); return *this;}
209 inline OrganizationRecommendation& AddPillars(const RecommendationPillar& value) { m_pillarsHasBeenSet = true; m_pillars.push_back(value); return *this; }
210 inline OrganizationRecommendation& AddPillars(RecommendationPillar&& value) { m_pillarsHasBeenSet = true; m_pillars.push_back(std::move(value)); return *this; }
212
214
217 inline const Aws::Utils::DateTime& GetResolvedAt() const{ return m_resolvedAt; }
218 inline bool ResolvedAtHasBeenSet() const { return m_resolvedAtHasBeenSet; }
219 inline void SetResolvedAt(const Aws::Utils::DateTime& value) { m_resolvedAtHasBeenSet = true; m_resolvedAt = value; }
220 inline void SetResolvedAt(Aws::Utils::DateTime&& value) { m_resolvedAtHasBeenSet = true; m_resolvedAt = std::move(value); }
222 inline OrganizationRecommendation& WithResolvedAt(Aws::Utils::DateTime&& value) { SetResolvedAt(std::move(value)); return *this;}
224
226
229 inline const RecommendationResourcesAggregates& GetResourcesAggregates() const{ return m_resourcesAggregates; }
230 inline bool ResourcesAggregatesHasBeenSet() const { return m_resourcesAggregatesHasBeenSet; }
231 inline void SetResourcesAggregates(const RecommendationResourcesAggregates& value) { m_resourcesAggregatesHasBeenSet = true; m_resourcesAggregates = value; }
232 inline void SetResourcesAggregates(RecommendationResourcesAggregates&& value) { m_resourcesAggregatesHasBeenSet = true; m_resourcesAggregates = std::move(value); }
236
238
241 inline const RecommendationSource& GetSource() const{ return m_source; }
242 inline bool SourceHasBeenSet() const { return m_sourceHasBeenSet; }
243 inline void SetSource(const RecommendationSource& value) { m_sourceHasBeenSet = true; m_source = value; }
244 inline void SetSource(RecommendationSource&& value) { m_sourceHasBeenSet = true; m_source = std::move(value); }
245 inline OrganizationRecommendation& WithSource(const RecommendationSource& value) { SetSource(value); return *this;}
246 inline OrganizationRecommendation& WithSource(RecommendationSource&& value) { SetSource(std::move(value)); return *this;}
248
250
253 inline const RecommendationStatus& GetStatus() const{ return m_status; }
254 inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; }
255 inline void SetStatus(const RecommendationStatus& value) { m_statusHasBeenSet = true; m_status = value; }
256 inline void SetStatus(RecommendationStatus&& value) { m_statusHasBeenSet = true; m_status = std::move(value); }
257 inline OrganizationRecommendation& WithStatus(const RecommendationStatus& value) { SetStatus(value); return *this;}
258 inline OrganizationRecommendation& WithStatus(RecommendationStatus&& value) { SetStatus(std::move(value)); return *this;}
260
262
266 inline const RecommendationType& GetType() const{ return m_type; }
267 inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; }
268 inline void SetType(const RecommendationType& value) { m_typeHasBeenSet = true; m_type = value; }
269 inline void SetType(RecommendationType&& value) { m_typeHasBeenSet = true; m_type = std::move(value); }
270 inline OrganizationRecommendation& WithType(const RecommendationType& value) { SetType(value); return *this;}
271 inline OrganizationRecommendation& WithType(RecommendationType&& value) { SetType(std::move(value)); return *this;}
273
275
278 inline const Aws::String& GetUpdateReason() const{ return m_updateReason; }
279 inline bool UpdateReasonHasBeenSet() const { return m_updateReasonHasBeenSet; }
280 inline void SetUpdateReason(const Aws::String& value) { m_updateReasonHasBeenSet = true; m_updateReason = value; }
281 inline void SetUpdateReason(Aws::String&& value) { m_updateReasonHasBeenSet = true; m_updateReason = std::move(value); }
282 inline void SetUpdateReason(const char* value) { m_updateReasonHasBeenSet = true; m_updateReason.assign(value); }
283 inline OrganizationRecommendation& WithUpdateReason(const Aws::String& value) { SetUpdateReason(value); return *this;}
284 inline OrganizationRecommendation& WithUpdateReason(Aws::String&& value) { SetUpdateReason(std::move(value)); return *this;}
285 inline OrganizationRecommendation& WithUpdateReason(const char* value) { SetUpdateReason(value); return *this;}
287
289
292 inline const UpdateRecommendationLifecycleStageReasonCode& GetUpdateReasonCode() const{ return m_updateReasonCode; }
293 inline bool UpdateReasonCodeHasBeenSet() const { return m_updateReasonCodeHasBeenSet; }
294 inline void SetUpdateReasonCode(const UpdateRecommendationLifecycleStageReasonCode& value) { m_updateReasonCodeHasBeenSet = true; m_updateReasonCode = value; }
295 inline void SetUpdateReasonCode(UpdateRecommendationLifecycleStageReasonCode&& value) { m_updateReasonCodeHasBeenSet = true; m_updateReasonCode = std::move(value); }
299
301
307 inline const Aws::String& GetUpdatedOnBehalfOf() const{ return m_updatedOnBehalfOf; }
308 inline bool UpdatedOnBehalfOfHasBeenSet() const { return m_updatedOnBehalfOfHasBeenSet; }
309 inline void SetUpdatedOnBehalfOf(const Aws::String& value) { m_updatedOnBehalfOfHasBeenSet = true; m_updatedOnBehalfOf = value; }
310 inline void SetUpdatedOnBehalfOf(Aws::String&& value) { m_updatedOnBehalfOfHasBeenSet = true; m_updatedOnBehalfOf = std::move(value); }
311 inline void SetUpdatedOnBehalfOf(const char* value) { m_updatedOnBehalfOfHasBeenSet = true; m_updatedOnBehalfOf.assign(value); }
313 inline OrganizationRecommendation& WithUpdatedOnBehalfOf(Aws::String&& value) { SetUpdatedOnBehalfOf(std::move(value)); return *this;}
314 inline OrganizationRecommendation& WithUpdatedOnBehalfOf(const char* value) { SetUpdatedOnBehalfOf(value); return *this;}
316
318
324 inline const Aws::String& GetUpdatedOnBehalfOfJobTitle() const{ return m_updatedOnBehalfOfJobTitle; }
325 inline bool UpdatedOnBehalfOfJobTitleHasBeenSet() const { return m_updatedOnBehalfOfJobTitleHasBeenSet; }
326 inline void SetUpdatedOnBehalfOfJobTitle(const Aws::String& value) { m_updatedOnBehalfOfJobTitleHasBeenSet = true; m_updatedOnBehalfOfJobTitle = value; }
327 inline void SetUpdatedOnBehalfOfJobTitle(Aws::String&& value) { m_updatedOnBehalfOfJobTitleHasBeenSet = true; m_updatedOnBehalfOfJobTitle = std::move(value); }
328 inline void SetUpdatedOnBehalfOfJobTitle(const char* value) { m_updatedOnBehalfOfJobTitleHasBeenSet = true; m_updatedOnBehalfOfJobTitle.assign(value); }
333 private:
334
335 Aws::String m_arn;
336 bool m_arnHasBeenSet = false;
337
338 Aws::Vector<Aws::String> m_awsServices;
339 bool m_awsServicesHasBeenSet = false;
340
341 Aws::String m_checkArn;
342 bool m_checkArnHasBeenSet = false;
343
344 Aws::Utils::DateTime m_createdAt;
345 bool m_createdAtHasBeenSet = false;
346
347 Aws::String m_createdBy;
348 bool m_createdByHasBeenSet = false;
349
350 Aws::String m_description;
351 bool m_descriptionHasBeenSet = false;
352
353 Aws::String m_id;
354 bool m_idHasBeenSet = false;
355
356 Aws::Utils::DateTime m_lastUpdatedAt;
357 bool m_lastUpdatedAtHasBeenSet = false;
358
359 RecommendationLifecycleStage m_lifecycleStage;
360 bool m_lifecycleStageHasBeenSet = false;
361
362 Aws::String m_name;
363 bool m_nameHasBeenSet = false;
364
365 RecommendationPillarSpecificAggregates m_pillarSpecificAggregates;
366 bool m_pillarSpecificAggregatesHasBeenSet = false;
367
369 bool m_pillarsHasBeenSet = false;
370
371 Aws::Utils::DateTime m_resolvedAt;
372 bool m_resolvedAtHasBeenSet = false;
373
374 RecommendationResourcesAggregates m_resourcesAggregates;
375 bool m_resourcesAggregatesHasBeenSet = false;
376
377 RecommendationSource m_source;
378 bool m_sourceHasBeenSet = false;
379
380 RecommendationStatus m_status;
381 bool m_statusHasBeenSet = false;
382
383 RecommendationType m_type;
384 bool m_typeHasBeenSet = false;
385
386 Aws::String m_updateReason;
387 bool m_updateReasonHasBeenSet = false;
388
390 bool m_updateReasonCodeHasBeenSet = false;
391
392 Aws::String m_updatedOnBehalfOf;
393 bool m_updatedOnBehalfOfHasBeenSet = false;
394
395 Aws::String m_updatedOnBehalfOfJobTitle;
396 bool m_updatedOnBehalfOfJobTitleHasBeenSet = false;
397 };
398
399} // namespace Model
400} // namespace TrustedAdvisor
401} // namespace Aws
const RecommendationPillarSpecificAggregates & GetPillarSpecificAggregates() const
OrganizationRecommendation & WithStatus(RecommendationStatus &&value)
OrganizationRecommendation & WithUpdateReasonCode(UpdateRecommendationLifecycleStageReasonCode &&value)
OrganizationRecommendation & WithCheckArn(Aws::String &&value)
OrganizationRecommendation & WithPillarSpecificAggregates(RecommendationPillarSpecificAggregates &&value)
OrganizationRecommendation & WithLifecycleStage(RecommendationLifecycleStage &&value)
OrganizationRecommendation & WithType(const RecommendationType &value)
OrganizationRecommendation & WithLastUpdatedAt(Aws::Utils::DateTime &&value)
OrganizationRecommendation & WithUpdatedOnBehalfOf(const Aws::String &value)
OrganizationRecommendation & WithDescription(Aws::String &&value)
OrganizationRecommendation & WithId(const char *value)
OrganizationRecommendation & WithId(Aws::String &&value)
OrganizationRecommendation & WithSource(RecommendationSource &&value)
const RecommendationLifecycleStage & GetLifecycleStage() const
void SetLifecycleStage(RecommendationLifecycleStage &&value)
OrganizationRecommendation & WithAwsServices(const Aws::Vector< Aws::String > &value)
AWS_TRUSTEDADVISOR_API Aws::Utils::Json::JsonValue Jsonize() const
OrganizationRecommendation & WithUpdateReason(Aws::String &&value)
OrganizationRecommendation & WithUpdatedOnBehalfOfJobTitle(Aws::String &&value)
OrganizationRecommendation & WithArn(Aws::String &&value)
OrganizationRecommendation & AddAwsServices(const Aws::String &value)
void SetPillarSpecificAggregates(const RecommendationPillarSpecificAggregates &value)
OrganizationRecommendation & WithUpdatedOnBehalfOfJobTitle(const Aws::String &value)
OrganizationRecommendation & WithResourcesAggregates(const RecommendationResourcesAggregates &value)
OrganizationRecommendation & WithPillars(const Aws::Vector< RecommendationPillar > &value)
OrganizationRecommendation & AddPillars(const RecommendationPillar &value)
void SetResourcesAggregates(const RecommendationResourcesAggregates &value)
AWS_TRUSTEDADVISOR_API OrganizationRecommendation(Aws::Utils::Json::JsonView jsonValue)
OrganizationRecommendation & WithCheckArn(const char *value)
OrganizationRecommendation & WithUpdatedOnBehalfOf(Aws::String &&value)
OrganizationRecommendation & AddAwsServices(Aws::String &&value)
void SetResourcesAggregates(RecommendationResourcesAggregates &&value)
OrganizationRecommendation & WithUpdateReasonCode(const UpdateRecommendationLifecycleStageReasonCode &value)
OrganizationRecommendation & WithResourcesAggregates(RecommendationResourcesAggregates &&value)
OrganizationRecommendation & WithUpdateReason(const char *value)
OrganizationRecommendation & WithArn(const Aws::String &value)
OrganizationRecommendation & WithCheckArn(const Aws::String &value)
OrganizationRecommendation & WithCreatedBy(const Aws::String &value)
OrganizationRecommendation & WithLastUpdatedAt(const Aws::Utils::DateTime &value)
OrganizationRecommendation & WithUpdatedOnBehalfOf(const char *value)
OrganizationRecommendation & AddAwsServices(const char *value)
OrganizationRecommendation & WithName(const Aws::String &value)
OrganizationRecommendation & WithStatus(const RecommendationStatus &value)
OrganizationRecommendation & WithCreatedBy(const char *value)
OrganizationRecommendation & WithId(const Aws::String &value)
OrganizationRecommendation & WithDescription(const Aws::String &value)
AWS_TRUSTEDADVISOR_API OrganizationRecommendation & operator=(Aws::Utils::Json::JsonView jsonValue)
OrganizationRecommendation & WithPillars(Aws::Vector< RecommendationPillar > &&value)
OrganizationRecommendation & WithUpdateReason(const Aws::String &value)
OrganizationRecommendation & WithAwsServices(Aws::Vector< Aws::String > &&value)
OrganizationRecommendation & WithUpdatedOnBehalfOfJobTitle(const char *value)
OrganizationRecommendation & WithResolvedAt(const Aws::Utils::DateTime &value)
OrganizationRecommendation & WithType(RecommendationType &&value)
const UpdateRecommendationLifecycleStageReasonCode & GetUpdateReasonCode() const
const RecommendationResourcesAggregates & GetResourcesAggregates() const
void SetPillarSpecificAggregates(RecommendationPillarSpecificAggregates &&value)
OrganizationRecommendation & AddPillars(RecommendationPillar &&value)
OrganizationRecommendation & WithCreatedBy(Aws::String &&value)
OrganizationRecommendation & WithResolvedAt(Aws::Utils::DateTime &&value)
void SetAwsServices(const Aws::Vector< Aws::String > &value)
OrganizationRecommendation & WithDescription(const char *value)
void SetUpdateReasonCode(UpdateRecommendationLifecycleStageReasonCode &&value)
OrganizationRecommendation & WithCreatedAt(Aws::Utils::DateTime &&value)
void SetPillars(const Aws::Vector< RecommendationPillar > &value)
OrganizationRecommendation & WithSource(const RecommendationSource &value)
const Aws::Vector< RecommendationPillar > & GetPillars() const
OrganizationRecommendation & WithName(Aws::String &&value)
OrganizationRecommendation & WithName(const char *value)
void SetUpdateReasonCode(const UpdateRecommendationLifecycleStageReasonCode &value)
void SetLifecycleStage(const RecommendationLifecycleStage &value)
OrganizationRecommendation & WithLifecycleStage(const RecommendationLifecycleStage &value)
OrganizationRecommendation & WithPillarSpecificAggregates(const RecommendationPillarSpecificAggregates &value)
OrganizationRecommendation & WithCreatedAt(const Aws::Utils::DateTime &value)
void SetPillars(Aws::Vector< RecommendationPillar > &&value)
const Aws::Vector< Aws::String > & GetAwsServices() const
OrganizationRecommendation & WithArn(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue