@aws-sdk/client-trustedadvisor 3.533.0 → 3.540.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. package/dist-cjs/endpoint/endpointResolver.js +4 -2
  2. package/dist-cjs/index.js +0 -3
  3. package/dist-es/endpoint/endpointResolver.js +3 -1
  4. package/dist-es/index.js +0 -1
  5. package/dist-types/TrustedAdvisor.d.ts +4 -1
  6. package/dist-types/TrustedAdvisorClient.d.ts +1 -1
  7. package/dist-types/commands/GetOrganizationRecommendationCommand.d.ts +2 -1
  8. package/dist-types/commands/GetRecommendationCommand.d.ts +2 -1
  9. package/dist-types/commands/ListChecksCommand.d.ts +2 -1
  10. package/dist-types/commands/ListOrganizationRecommendationAccountsCommand.d.ts +2 -1
  11. package/dist-types/commands/ListOrganizationRecommendationResourcesCommand.d.ts +2 -1
  12. package/dist-types/commands/ListOrganizationRecommendationsCommand.d.ts +2 -1
  13. package/dist-types/commands/ListRecommendationResourcesCommand.d.ts +2 -1
  14. package/dist-types/commands/ListRecommendationsCommand.d.ts +2 -1
  15. package/dist-types/commands/UpdateOrganizationRecommendationLifecycleCommand.d.ts +2 -1
  16. package/dist-types/commands/UpdateRecommendationLifecycleCommand.d.ts +2 -1
  17. package/dist-types/index.d.ts +0 -1
  18. package/dist-types/models/models_0.d.ts +191 -191
  19. package/dist-types/ts3.4/TrustedAdvisor.d.ts +3 -0
  20. package/dist-types/ts3.4/commands/GetOrganizationRecommendationCommand.d.ts +9 -0
  21. package/dist-types/ts3.4/commands/GetRecommendationCommand.d.ts +9 -0
  22. package/dist-types/ts3.4/commands/ListChecksCommand.d.ts +9 -0
  23. package/dist-types/ts3.4/commands/ListOrganizationRecommendationAccountsCommand.d.ts +9 -0
  24. package/dist-types/ts3.4/commands/ListOrganizationRecommendationResourcesCommand.d.ts +9 -0
  25. package/dist-types/ts3.4/commands/ListOrganizationRecommendationsCommand.d.ts +9 -0
  26. package/dist-types/ts3.4/commands/ListRecommendationResourcesCommand.d.ts +9 -0
  27. package/dist-types/ts3.4/commands/ListRecommendationsCommand.d.ts +9 -0
  28. package/dist-types/ts3.4/commands/UpdateOrganizationRecommendationLifecycleCommand.d.ts +9 -0
  29. package/dist-types/ts3.4/commands/UpdateRecommendationLifecycleCommand.d.ts +9 -0
  30. package/dist-types/ts3.4/index.d.ts +0 -1
  31. package/package.json +40 -40
@@ -1,8 +1,8 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { TrustedAdvisorServiceException as __BaseException } from "./TrustedAdvisorServiceException";
3
3
  /**
4
- * @public
5
4
  * <p>Exception that access has been denied due to insufficient access</p>
5
+ * @public
6
6
  */
7
7
  export declare class AccessDeniedException extends __BaseException {
8
8
  readonly name: "AccessDeniedException";
@@ -44,54 +44,54 @@ export declare const UpdateRecommendationLifecycleStageReasonCode: {
44
44
  */
45
45
  export type UpdateRecommendationLifecycleStageReasonCode = (typeof UpdateRecommendationLifecycleStageReasonCode)[keyof typeof UpdateRecommendationLifecycleStageReasonCode];
46
46
  /**
47
- * @public
48
47
  * <p>Summary of an AccountRecommendationLifecycle for an Organization Recommendation</p>
48
+ * @public
49
49
  */
50
50
  export interface AccountRecommendationLifecycleSummary {
51
51
  /**
52
- * @public
53
52
  * <p>The AWS account ID</p>
53
+ * @public
54
54
  */
55
55
  accountId?: string;
56
56
  /**
57
- * @public
58
57
  * <p>The Recommendation ARN</p>
58
+ * @public
59
59
  */
60
60
  accountRecommendationArn?: string;
61
61
  /**
62
- * @public
63
62
  * <p>The lifecycle stage from AWS Trusted Advisor Priority</p>
63
+ * @public
64
64
  */
65
65
  lifecycleStage?: RecommendationLifecycleStage;
66
66
  /**
67
- * @public
68
67
  * <p>The person on whose behalf a Technical Account Manager (TAM) updated the recommendation. This information
69
68
  * is only available when a Technical Account Manager takes an action on a recommendation managed by AWS
70
69
  * Trusted Advisor Priority
71
70
  * </p>
71
+ * @public
72
72
  */
73
73
  updatedOnBehalfOf?: string;
74
74
  /**
75
- * @public
76
75
  * <p>The job title of the person on whose behalf a Technical Account Manager (TAM) updated the recommendation.
77
76
  * This information is only available when a Technical Account Manager takes an action on a recommendation
78
77
  * managed by AWS Trusted Advisor Priority
79
78
  * </p>
79
+ * @public
80
80
  */
81
81
  updatedOnBehalfOfJobTitle?: string;
82
82
  /**
83
- * @public
84
83
  * <p>Reason for the lifecycle stage change</p>
84
+ * @public
85
85
  */
86
86
  updateReason?: string;
87
87
  /**
88
- * @public
89
88
  * <p>Reason code for the lifecycle state change</p>
89
+ * @public
90
90
  */
91
91
  updateReasonCode?: UpdateRecommendationLifecycleStageReasonCode;
92
92
  /**
93
- * @public
94
93
  * <p>When the Recommendation was last updated</p>
94
+ * @public
95
95
  */
96
96
  lastUpdatedAt?: Date;
97
97
  }
@@ -135,54 +135,54 @@ export declare const RecommendationSource: {
135
135
  */
136
136
  export type RecommendationSource = (typeof RecommendationSource)[keyof typeof RecommendationSource];
137
137
  /**
138
- * @public
139
138
  * <p>A summary of an AWS Trusted Advisor Check</p>
139
+ * @public
140
140
  */
141
141
  export interface CheckSummary {
142
142
  /**
143
- * @public
144
143
  * <p>The unique identifier of the AWS Trusted Advisor Check</p>
144
+ * @public
145
145
  */
146
146
  id: string | undefined;
147
147
  /**
148
- * @public
149
148
  * <p>The ARN of the AWS Trusted Advisor Check</p>
149
+ * @public
150
150
  */
151
151
  arn: string | undefined;
152
152
  /**
153
- * @public
154
153
  * <p>The name of the AWS Trusted Advisor Check</p>
154
+ * @public
155
155
  */
156
156
  name: string | undefined;
157
157
  /**
158
- * @public
159
158
  * <p>A description of what the AWS Trusted Advisor Check is monitoring</p>
159
+ * @public
160
160
  */
161
161
  description: string | undefined;
162
162
  /**
163
- * @public
164
163
  * <p>The Recommendation pillars that the AWS Trusted Advisor Check falls under</p>
164
+ * @public
165
165
  */
166
166
  pillars: RecommendationPillar[] | undefined;
167
167
  /**
168
- * @public
169
168
  * <p>The AWS Services that the Check applies to</p>
169
+ * @public
170
170
  */
171
171
  awsServices: string[] | undefined;
172
172
  /**
173
- * @public
174
173
  * <p>The source of the Recommendation</p>
174
+ * @public
175
175
  */
176
176
  source: RecommendationSource | undefined;
177
177
  /**
178
- * @public
179
178
  * <p>The column headings for the metadata returned in the resource</p>
179
+ * @public
180
180
  */
181
181
  metadata: Record<string, string> | undefined;
182
182
  }
183
183
  /**
184
- * @public
185
184
  * <p>Exception that the request was denied due to conflictions in state</p>
185
+ * @public
186
186
  */
187
187
  export declare class ConflictException extends __BaseException {
188
188
  readonly name: "ConflictException";
@@ -197,57 +197,57 @@ export declare class ConflictException extends __BaseException {
197
197
  */
198
198
  export interface GetOrganizationRecommendationRequest {
199
199
  /**
200
- * @public
201
200
  * <p>The Recommendation identifier</p>
201
+ * @public
202
202
  */
203
203
  organizationRecommendationIdentifier: string | undefined;
204
204
  }
205
205
  /**
206
- * @public
207
206
  * <p>Cost optimizing aggregates for a Recommendation</p>
207
+ * @public
208
208
  */
209
209
  export interface RecommendationCostOptimizingAggregates {
210
210
  /**
211
- * @public
212
211
  * <p>The estimated monthly savings</p>
212
+ * @public
213
213
  */
214
214
  estimatedMonthlySavings: number | undefined;
215
215
  /**
216
- * @public
217
216
  * <p>The estimated percently monthly savings</p>
217
+ * @public
218
218
  */
219
219
  estimatedPercentMonthlySavings: number | undefined;
220
220
  }
221
221
  /**
222
- * @public
223
222
  * <p>Recommendation pillar aggregates</p>
223
+ * @public
224
224
  */
225
225
  export interface RecommendationPillarSpecificAggregates {
226
226
  /**
227
- * @public
228
227
  * <p>Cost optimizing aggregates</p>
228
+ * @public
229
229
  */
230
230
  costOptimizing?: RecommendationCostOptimizingAggregates;
231
231
  }
232
232
  /**
233
- * @public
234
233
  * <p>Aggregation of Recommendation Resources</p>
234
+ * @public
235
235
  */
236
236
  export interface RecommendationResourcesAggregates {
237
237
  /**
238
- * @public
239
238
  * <p>The number of AWS resources that were flagged to be OK according to the Trusted Advisor check</p>
239
+ * @public
240
240
  */
241
241
  okCount: number | undefined;
242
242
  /**
243
- * @public
244
243
  * <p>The number of AWS resources that were flagged to have warning according to the Trusted Advisor check
245
244
  * </p>
245
+ * @public
246
246
  */
247
247
  warningCount: number | undefined;
248
248
  /**
249
- * @public
250
249
  * <p>The number of AWS resources that were flagged to have errors according to the Trusted Advisor check</p>
250
+ * @public
251
251
  */
252
252
  errorCount: number | undefined;
253
253
  }
@@ -277,119 +277,119 @@ export declare const RecommendationType: {
277
277
  */
278
278
  export type RecommendationType = (typeof RecommendationType)[keyof typeof RecommendationType];
279
279
  /**
280
- * @public
281
280
  * <p>A Recommendation for accounts within an Organization</p>
281
+ * @public
282
282
  */
283
283
  export interface OrganizationRecommendation {
284
284
  /**
285
- * @public
286
285
  * <p>The ID which identifies where the Recommendation was produced</p>
286
+ * @public
287
287
  */
288
288
  id: string | undefined;
289
289
  /**
290
- * @public
291
290
  * <p>Whether the Recommendation was automated or generated by AWS Trusted Advisor Priority</p>
291
+ * @public
292
292
  */
293
293
  type: RecommendationType | undefined;
294
294
  /**
295
- * @public
296
295
  * <p>The AWS Trusted Advisor Check ARN that relates to the Recommendation</p>
296
+ * @public
297
297
  */
298
298
  checkArn?: string;
299
299
  /**
300
- * @public
301
300
  * <p>The status of the Recommendation</p>
301
+ * @public
302
302
  */
303
303
  status: RecommendationStatus | undefined;
304
304
  /**
305
- * @public
306
305
  * <p>The lifecycle stage from AWS Trusted Advisor Priority</p>
306
+ * @public
307
307
  */
308
308
  lifecycleStage?: RecommendationLifecycleStage;
309
309
  /**
310
- * @public
311
310
  * <p>The Pillars that the Recommendation is optimizing</p>
311
+ * @public
312
312
  */
313
313
  pillars: RecommendationPillar[] | undefined;
314
314
  /**
315
- * @public
316
315
  * <p>The source of the Recommendation</p>
316
+ * @public
317
317
  */
318
318
  source: RecommendationSource | undefined;
319
319
  /**
320
- * @public
321
320
  * <p>The AWS Services that the Recommendation applies to</p>
321
+ * @public
322
322
  */
323
323
  awsServices?: string[];
324
324
  /**
325
- * @public
326
325
  * <p>The name of the AWS Trusted Advisor Recommendation</p>
326
+ * @public
327
327
  */
328
328
  name: string | undefined;
329
329
  /**
330
- * @public
331
330
  * <p>An aggregation of all resources</p>
331
+ * @public
332
332
  */
333
333
  resourcesAggregates: RecommendationResourcesAggregates | undefined;
334
334
  /**
335
- * @public
336
335
  * <p>The pillar aggregations for cost savings</p>
336
+ * @public
337
337
  */
338
338
  pillarSpecificAggregates?: RecommendationPillarSpecificAggregates;
339
339
  /**
340
- * @public
341
340
  * <p>When the Recommendation was created, if created by AWS Trusted Advisor Priority</p>
341
+ * @public
342
342
  */
343
343
  createdAt?: Date;
344
344
  /**
345
- * @public
346
345
  * <p>When the Recommendation was last updated</p>
346
+ * @public
347
347
  */
348
348
  lastUpdatedAt?: Date;
349
349
  /**
350
- * @public
351
350
  * <p>The ARN of the Recommendation</p>
351
+ * @public
352
352
  */
353
353
  arn: string | undefined;
354
354
  /**
355
- * @public
356
355
  * <p>A description for AWS Trusted Advisor recommendations</p>
356
+ * @public
357
357
  */
358
358
  description: string | undefined;
359
359
  /**
360
- * @public
361
360
  * <p>The creator, if created by AWS Trusted Advisor Priority</p>
361
+ * @public
362
362
  */
363
363
  createdBy?: string;
364
364
  /**
365
- * @public
366
365
  * <p>The person on whose behalf a Technical Account Manager (TAM) updated the recommendation. This information
367
366
  * is only available when a Technical Account Manager takes an action on a recommendation managed by AWS
368
367
  * Trusted Advisor Priority
369
368
  * </p>
369
+ * @public
370
370
  */
371
371
  updatedOnBehalfOf?: string;
372
372
  /**
373
- * @public
374
373
  * <p>The job title of the person on whose behalf a Technical Account Manager (TAM) updated the recommendation.
375
374
  * This information is only available when a Technical Account Manager takes an action on a recommendation
376
375
  * managed by AWS Trusted Advisor Priority
377
376
  * </p>
377
+ * @public
378
378
  */
379
379
  updatedOnBehalfOfJobTitle?: string;
380
380
  /**
381
- * @public
382
381
  * <p>Reason for the lifecycle stage change</p>
382
+ * @public
383
383
  */
384
384
  updateReason?: string;
385
385
  /**
386
- * @public
387
386
  * <p>Reason code for the lifecycle state change</p>
387
+ * @public
388
388
  */
389
389
  updateReasonCode?: UpdateRecommendationLifecycleStageReasonCode;
390
390
  /**
391
- * @public
392
391
  * <p>When the Recommendation was resolved</p>
392
+ * @public
393
393
  */
394
394
  resolvedAt?: Date;
395
395
  }
@@ -398,14 +398,14 @@ export interface OrganizationRecommendation {
398
398
  */
399
399
  export interface GetOrganizationRecommendationResponse {
400
400
  /**
401
- * @public
402
401
  * <p>The Recommendation</p>
402
+ * @public
403
403
  */
404
404
  organizationRecommendation?: OrganizationRecommendation;
405
405
  }
406
406
  /**
407
- * @public
408
407
  * <p>Exception to notify that an unexpected internal error occurred during processing of the request</p>
408
+ * @public
409
409
  */
410
410
  export declare class InternalServerException extends __BaseException {
411
411
  readonly name: "InternalServerException";
@@ -417,8 +417,8 @@ export declare class InternalServerException extends __BaseException {
417
417
  constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
418
418
  }
419
419
  /**
420
- * @public
421
420
  * <p>Exception that the requested resource has not been found</p>
421
+ * @public
422
422
  */
423
423
  export declare class ResourceNotFoundException extends __BaseException {
424
424
  readonly name: "ResourceNotFoundException";
@@ -429,8 +429,8 @@ export declare class ResourceNotFoundException extends __BaseException {
429
429
  constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
430
430
  }
431
431
  /**
432
- * @public
433
432
  * <p>Exception to notify that requests are being throttled</p>
433
+ * @public
434
434
  */
435
435
  export declare class ThrottlingException extends __BaseException {
436
436
  readonly name: "ThrottlingException";
@@ -444,8 +444,8 @@ export declare class ThrottlingException extends __BaseException {
444
444
  constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
445
445
  }
446
446
  /**
447
- * @public
448
447
  * <p>Exception that the request failed to satisfy service constraints</p>
448
+ * @public
449
449
  */
450
450
  export declare class ValidationException extends __BaseException {
451
451
  readonly name: "ValidationException";
@@ -460,125 +460,125 @@ export declare class ValidationException extends __BaseException {
460
460
  */
461
461
  export interface GetRecommendationRequest {
462
462
  /**
463
- * @public
464
463
  * <p>The Recommendation identifier</p>
464
+ * @public
465
465
  */
466
466
  recommendationIdentifier: string | undefined;
467
467
  }
468
468
  /**
469
- * @public
470
469
  * <p>A Recommendation for an Account</p>
470
+ * @public
471
471
  */
472
472
  export interface Recommendation {
473
473
  /**
474
- * @public
475
474
  * <p>The ID which identifies where the Recommendation was produced</p>
475
+ * @public
476
476
  */
477
477
  id: string | undefined;
478
478
  /**
479
- * @public
480
479
  * <p>Whether the Recommendation was automated or generated by AWS Trusted Advisor Priority</p>
480
+ * @public
481
481
  */
482
482
  type: RecommendationType | undefined;
483
483
  /**
484
- * @public
485
484
  * <p>The AWS Trusted Advisor Check ARN that relates to the Recommendation</p>
485
+ * @public
486
486
  */
487
487
  checkArn?: string;
488
488
  /**
489
- * @public
490
489
  * <p>The status of the Recommendation</p>
490
+ * @public
491
491
  */
492
492
  status: RecommendationStatus | undefined;
493
493
  /**
494
- * @public
495
494
  * <p>The lifecycle stage from AWS Trusted Advisor Priority</p>
495
+ * @public
496
496
  */
497
497
  lifecycleStage?: RecommendationLifecycleStage;
498
498
  /**
499
- * @public
500
499
  * <p>The Pillars that the Recommendation is optimizing</p>
500
+ * @public
501
501
  */
502
502
  pillars: RecommendationPillar[] | undefined;
503
503
  /**
504
- * @public
505
504
  * <p>The source of the Recommendation</p>
505
+ * @public
506
506
  */
507
507
  source: RecommendationSource | undefined;
508
508
  /**
509
- * @public
510
509
  * <p>The AWS Services that the Recommendation applies to</p>
510
+ * @public
511
511
  */
512
512
  awsServices?: string[];
513
513
  /**
514
- * @public
515
514
  * <p>The name of the AWS Trusted Advisor Recommendation</p>
515
+ * @public
516
516
  */
517
517
  name: string | undefined;
518
518
  /**
519
- * @public
520
519
  * <p>An aggregation of all resources</p>
520
+ * @public
521
521
  */
522
522
  resourcesAggregates: RecommendationResourcesAggregates | undefined;
523
523
  /**
524
- * @public
525
524
  * <p>The pillar aggregations for cost savings</p>
525
+ * @public
526
526
  */
527
527
  pillarSpecificAggregates?: RecommendationPillarSpecificAggregates;
528
528
  /**
529
- * @public
530
529
  * <p>When the Recommendation was created, if created by AWS Trusted Advisor Priority</p>
530
+ * @public
531
531
  */
532
532
  createdAt?: Date;
533
533
  /**
534
- * @public
535
534
  * <p>When the Recommendation was last updated</p>
535
+ * @public
536
536
  */
537
537
  lastUpdatedAt?: Date;
538
538
  /**
539
- * @public
540
539
  * <p>The ARN of the Recommendation</p>
540
+ * @public
541
541
  */
542
542
  arn: string | undefined;
543
543
  /**
544
- * @public
545
544
  * <p>A description for AWS Trusted Advisor recommendations</p>
545
+ * @public
546
546
  */
547
547
  description: string | undefined;
548
548
  /**
549
- * @public
550
549
  * <p>The creator, if created by AWS Trusted Advisor Priority</p>
550
+ * @public
551
551
  */
552
552
  createdBy?: string;
553
553
  /**
554
- * @public
555
554
  * <p>The person on whose behalf a Technical Account Manager (TAM) updated the recommendation. This information
556
555
  * is only available when a Technical Account Manager takes an action on a recommendation managed by AWS
557
556
  * Trusted Advisor Priority
558
557
  * </p>
558
+ * @public
559
559
  */
560
560
  updatedOnBehalfOf?: string;
561
561
  /**
562
- * @public
563
562
  * <p>The job title of the person on whose behalf a Technical Account Manager (TAM) updated the recommendation.
564
563
  * This information is only available when a Technical Account Manager takes an action on a recommendation
565
564
  * managed by AWS Trusted Advisor Priority
566
565
  * </p>
566
+ * @public
567
567
  */
568
568
  updatedOnBehalfOfJobTitle?: string;
569
569
  /**
570
- * @public
571
570
  * <p>Reason for the lifecycle stage change</p>
571
+ * @public
572
572
  */
573
573
  updateReason?: string;
574
574
  /**
575
- * @public
576
575
  * <p>Reason code for the lifecycle state change</p>
576
+ * @public
577
577
  */
578
578
  updateReasonCode?: UpdateRecommendationLifecycleStageReasonCode;
579
579
  /**
580
- * @public
581
580
  * <p>When the Recommendation was resolved</p>
581
+ * @public
582
582
  */
583
583
  resolvedAt?: Date;
584
584
  }
@@ -587,8 +587,8 @@ export interface Recommendation {
587
587
  */
588
588
  export interface GetRecommendationResponse {
589
589
  /**
590
- * @public
591
590
  * <p>The Recommendation</p>
591
+ * @public
592
592
  */
593
593
  recommendation?: Recommendation;
594
594
  }
@@ -618,35 +618,35 @@ export type RecommendationLanguage = (typeof RecommendationLanguage)[keyof typeo
618
618
  */
619
619
  export interface ListChecksRequest {
620
620
  /**
621
- * @public
622
621
  * <p>The token for the next set of results. Use the value returned in the previous response in the next request
623
622
  * to retrieve the next set of results.
624
623
  * </p>
624
+ * @public
625
625
  */
626
626
  nextToken?: string;
627
627
  /**
628
- * @public
629
628
  * <p>The maximum number of results to return per page.</p>
629
+ * @public
630
630
  */
631
631
  maxResults?: number;
632
632
  /**
633
- * @public
634
633
  * <p>The pillar of the check</p>
634
+ * @public
635
635
  */
636
636
  pillar?: RecommendationPillar;
637
637
  /**
638
- * @public
639
638
  * <p>The aws service associated with the check</p>
639
+ * @public
640
640
  */
641
641
  awsService?: string;
642
642
  /**
643
- * @public
644
643
  * <p>The source of the check</p>
644
+ * @public
645
645
  */
646
646
  source?: RecommendationSource;
647
647
  /**
648
- * @public
649
648
  * <p>The ISO 639-1 code for the language that you want your checks to appear in.</p>
649
+ * @public
650
650
  */
651
651
  language?: RecommendationLanguage;
652
652
  }
@@ -655,15 +655,15 @@ export interface ListChecksRequest {
655
655
  */
656
656
  export interface ListChecksResponse {
657
657
  /**
658
- * @public
659
658
  * <p>The token for the next set of results. Use the value returned in the previous response in the next request
660
659
  * to retrieve the next set of results.
661
660
  * </p>
661
+ * @public
662
662
  */
663
663
  nextToken?: string;
664
664
  /**
665
- * @public
666
665
  * <p>The list of Checks</p>
666
+ * @public
667
667
  */
668
668
  checkSummaries: CheckSummary[] | undefined;
669
669
  }
@@ -672,25 +672,25 @@ export interface ListChecksResponse {
672
672
  */
673
673
  export interface ListOrganizationRecommendationAccountsRequest {
674
674
  /**
675
- * @public
676
675
  * <p>The token for the next set of results. Use the value returned in the previous response in the next request
677
676
  * to retrieve the next set of results.
678
677
  * </p>
678
+ * @public
679
679
  */
680
680
  nextToken?: string;
681
681
  /**
682
- * @public
683
682
  * <p>The maximum number of results to return per page.</p>
683
+ * @public
684
684
  */
685
685
  maxResults?: number;
686
686
  /**
687
- * @public
688
687
  * <p>The Recommendation identifier</p>
688
+ * @public
689
689
  */
690
690
  organizationRecommendationIdentifier: string | undefined;
691
691
  /**
692
- * @public
693
692
  * <p>An account affected by this organization recommendation</p>
693
+ * @public
694
694
  */
695
695
  affectedAccountId?: string;
696
696
  }
@@ -699,15 +699,15 @@ export interface ListOrganizationRecommendationAccountsRequest {
699
699
  */
700
700
  export interface ListOrganizationRecommendationAccountsResponse {
701
701
  /**
702
- * @public
703
702
  * <p>The token for the next set of results. Use the value returned in the previous response in the next request
704
703
  * to retrieve the next set of results.
705
704
  * </p>
705
+ * @public
706
706
  */
707
707
  nextToken?: string;
708
708
  /**
709
- * @public
710
709
  * <p>The account recommendations lifecycles that are applicable to the Recommendation</p>
710
+ * @public
711
711
  */
712
712
  accountRecommendationLifecycleSummaries: AccountRecommendationLifecycleSummary[] | undefined;
713
713
  }
@@ -729,86 +729,86 @@ export type ResourceStatus = (typeof ResourceStatus)[keyof typeof ResourceStatus
729
729
  */
730
730
  export interface ListOrganizationRecommendationResourcesRequest {
731
731
  /**
732
- * @public
733
732
  * <p>The token for the next set of results. Use the value returned in the previous response in the next request
734
733
  * to retrieve the next set of results.
735
734
  * </p>
735
+ * @public
736
736
  */
737
737
  nextToken?: string;
738
738
  /**
739
- * @public
740
739
  * <p>The maximum number of results to return per page.</p>
740
+ * @public
741
741
  */
742
742
  maxResults?: number;
743
743
  /**
744
- * @public
745
744
  * <p>The status of the resource</p>
745
+ * @public
746
746
  */
747
747
  status?: ResourceStatus;
748
748
  /**
749
- * @public
750
749
  * <p>The AWS Region code of the resource</p>
750
+ * @public
751
751
  */
752
752
  regionCode?: string;
753
753
  /**
754
- * @public
755
754
  * <p>The AWS Organization organization's Recommendation identifier</p>
755
+ * @public
756
756
  */
757
757
  organizationRecommendationIdentifier: string | undefined;
758
758
  /**
759
- * @public
760
759
  * <p>An account affected by this organization recommendation</p>
760
+ * @public
761
761
  */
762
762
  affectedAccountId?: string;
763
763
  }
764
764
  /**
765
- * @public
766
765
  * <p>Organization Recommendation Resource Summary</p>
766
+ * @public
767
767
  */
768
768
  export interface OrganizationRecommendationResourceSummary {
769
769
  /**
770
- * @public
771
770
  * <p>The ID of the Recommendation Resource</p>
771
+ * @public
772
772
  */
773
773
  id: string | undefined;
774
774
  /**
775
- * @public
776
775
  * <p>The ARN of the Recommendation Resource</p>
776
+ * @public
777
777
  */
778
778
  arn: string | undefined;
779
779
  /**
780
- * @public
781
780
  * <p>The AWS resource identifier</p>
781
+ * @public
782
782
  */
783
783
  awsResourceId: string | undefined;
784
784
  /**
785
- * @public
786
785
  * <p>The AWS Region code that the Recommendation Resource is in</p>
786
+ * @public
787
787
  */
788
788
  regionCode: string | undefined;
789
789
  /**
790
- * @public
791
790
  * <p>The current status of the Recommendation Resource</p>
791
+ * @public
792
792
  */
793
793
  status: ResourceStatus | undefined;
794
794
  /**
795
- * @public
796
795
  * <p>Metadata associated with the Recommendation Resource</p>
796
+ * @public
797
797
  */
798
798
  metadata: Record<string, string> | undefined;
799
799
  /**
800
- * @public
801
800
  * <p>When the Recommendation Resource was last updated</p>
801
+ * @public
802
802
  */
803
803
  lastUpdatedAt: Date | undefined;
804
804
  /**
805
- * @public
806
805
  * <p>The AWS account ID</p>
806
+ * @public
807
807
  */
808
808
  accountId?: string;
809
809
  /**
810
- * @public
811
810
  * <p>The Recommendation ARN</p>
811
+ * @public
812
812
  */
813
813
  recommendationArn: string | undefined;
814
814
  }
@@ -817,15 +817,15 @@ export interface OrganizationRecommendationResourceSummary {
817
817
  */
818
818
  export interface ListOrganizationRecommendationResourcesResponse {
819
819
  /**
820
- * @public
821
820
  * <p>The token for the next set of results. Use the value returned in the previous response in the next request
822
821
  * to retrieve the next set of results.
823
822
  * </p>
823
+ * @public
824
824
  */
825
825
  nextToken?: string;
826
826
  /**
827
- * @public
828
827
  * <p>A list of Recommendation Resources</p>
828
+ * @public
829
829
  */
830
830
  organizationRecommendationResourceSummaries: OrganizationRecommendationResourceSummary[] | undefined;
831
831
  }
@@ -834,131 +834,131 @@ export interface ListOrganizationRecommendationResourcesResponse {
834
834
  */
835
835
  export interface ListOrganizationRecommendationsRequest {
836
836
  /**
837
- * @public
838
837
  * <p>The token for the next set of results. Use the value returned in the previous response in the next request
839
838
  * to retrieve the next set of results.
840
839
  * </p>
840
+ * @public
841
841
  */
842
842
  nextToken?: string;
843
843
  /**
844
- * @public
845
844
  * <p>The maximum number of results to return per page.</p>
845
+ * @public
846
846
  */
847
847
  maxResults?: number;
848
848
  /**
849
- * @public
850
849
  * <p>The type of the Recommendation</p>
850
+ * @public
851
851
  */
852
852
  type?: RecommendationType;
853
853
  /**
854
- * @public
855
854
  * <p>The status of the Recommendation</p>
855
+ * @public
856
856
  */
857
857
  status?: RecommendationStatus;
858
858
  /**
859
- * @public
860
859
  * <p>The pillar of the Recommendation</p>
860
+ * @public
861
861
  */
862
862
  pillar?: RecommendationPillar;
863
863
  /**
864
- * @public
865
864
  * <p>The aws service associated with the Recommendation</p>
865
+ * @public
866
866
  */
867
867
  awsService?: string;
868
868
  /**
869
- * @public
870
869
  * <p>The source of the Recommendation</p>
870
+ * @public
871
871
  */
872
872
  source?: RecommendationSource;
873
873
  /**
874
- * @public
875
874
  * <p>The check identifier of the Recommendation</p>
875
+ * @public
876
876
  */
877
877
  checkIdentifier?: string;
878
878
  /**
879
- * @public
880
879
  * <p>After the last update of the Recommendation</p>
880
+ * @public
881
881
  */
882
882
  afterLastUpdatedAt?: Date;
883
883
  /**
884
- * @public
885
884
  * <p>Before the last update of the Recommendation</p>
885
+ * @public
886
886
  */
887
887
  beforeLastUpdatedAt?: Date;
888
888
  }
889
889
  /**
890
- * @public
891
890
  * <p>Summary of recommendation for accounts within an Organization</p>
891
+ * @public
892
892
  */
893
893
  export interface OrganizationRecommendationSummary {
894
894
  /**
895
- * @public
896
895
  * <p>The ID which identifies where the Recommendation was produced</p>
896
+ * @public
897
897
  */
898
898
  id: string | undefined;
899
899
  /**
900
- * @public
901
900
  * <p>Whether the Recommendation was automated or generated by AWS Trusted Advisor Priority</p>
901
+ * @public
902
902
  */
903
903
  type: RecommendationType | undefined;
904
904
  /**
905
- * @public
906
905
  * <p>The AWS Trusted Advisor Check ARN that relates to the Recommendation</p>
906
+ * @public
907
907
  */
908
908
  checkArn?: string;
909
909
  /**
910
- * @public
911
910
  * <p>The status of the Recommendation</p>
911
+ * @public
912
912
  */
913
913
  status: RecommendationStatus | undefined;
914
914
  /**
915
- * @public
916
915
  * <p>The lifecycle stage from AWS Trusted Advisor Priority</p>
916
+ * @public
917
917
  */
918
918
  lifecycleStage?: RecommendationLifecycleStage;
919
919
  /**
920
- * @public
921
920
  * <p>The Pillars that the Recommendation is optimizing</p>
921
+ * @public
922
922
  */
923
923
  pillars: RecommendationPillar[] | undefined;
924
924
  /**
925
- * @public
926
925
  * <p>The source of the Recommendation</p>
926
+ * @public
927
927
  */
928
928
  source: RecommendationSource | undefined;
929
929
  /**
930
- * @public
931
930
  * <p>The AWS Services that the Recommendation applies to</p>
931
+ * @public
932
932
  */
933
933
  awsServices?: string[];
934
934
  /**
935
- * @public
936
935
  * <p>The name of the AWS Trusted Advisor Recommendation</p>
936
+ * @public
937
937
  */
938
938
  name: string | undefined;
939
939
  /**
940
- * @public
941
940
  * <p>An aggregation of all resources</p>
941
+ * @public
942
942
  */
943
943
  resourcesAggregates: RecommendationResourcesAggregates | undefined;
944
944
  /**
945
- * @public
946
945
  * <p>The pillar aggregations for cost savings</p>
946
+ * @public
947
947
  */
948
948
  pillarSpecificAggregates?: RecommendationPillarSpecificAggregates;
949
949
  /**
950
- * @public
951
950
  * <p>When the Recommendation was created, if created by AWS Trusted Advisor Priority</p>
951
+ * @public
952
952
  */
953
953
  createdAt?: Date;
954
954
  /**
955
- * @public
956
955
  * <p>When the Recommendation was last updated</p>
956
+ * @public
957
957
  */
958
958
  lastUpdatedAt?: Date;
959
959
  /**
960
- * @public
961
960
  * <p>The ARN of the Recommendation</p>
961
+ * @public
962
962
  */
963
963
  arn: string | undefined;
964
964
  }
@@ -967,15 +967,15 @@ export interface OrganizationRecommendationSummary {
967
967
  */
968
968
  export interface ListOrganizationRecommendationsResponse {
969
969
  /**
970
- * @public
971
970
  * <p>The token for the next set of results. Use the value returned in the previous response in the next request
972
971
  * to retrieve the next set of results.
973
972
  * </p>
973
+ * @public
974
974
  */
975
975
  nextToken?: string;
976
976
  /**
977
- * @public
978
977
  * <p>The list of Recommendations</p>
978
+ * @public
979
979
  */
980
980
  organizationRecommendationSummaries: OrganizationRecommendationSummary[] | undefined;
981
981
  }
@@ -984,76 +984,76 @@ export interface ListOrganizationRecommendationsResponse {
984
984
  */
985
985
  export interface ListRecommendationResourcesRequest {
986
986
  /**
987
- * @public
988
987
  * <p>The token for the next set of results. Use the value returned in the previous response in the next request
989
988
  * to retrieve the next set of results.
990
989
  * </p>
990
+ * @public
991
991
  */
992
992
  nextToken?: string;
993
993
  /**
994
- * @public
995
994
  * <p>The maximum number of results to return per page.</p>
995
+ * @public
996
996
  */
997
997
  maxResults?: number;
998
998
  /**
999
- * @public
1000
999
  * <p>The status of the resource</p>
1000
+ * @public
1001
1001
  */
1002
1002
  status?: ResourceStatus;
1003
1003
  /**
1004
- * @public
1005
1004
  * <p>The AWS Region code of the resource</p>
1005
+ * @public
1006
1006
  */
1007
1007
  regionCode?: string;
1008
1008
  /**
1009
- * @public
1010
1009
  * <p>The Recommendation identifier</p>
1010
+ * @public
1011
1011
  */
1012
1012
  recommendationIdentifier: string | undefined;
1013
1013
  }
1014
1014
  /**
1015
- * @public
1016
1015
  * <p>Summary of a Recommendation Resource</p>
1016
+ * @public
1017
1017
  */
1018
1018
  export interface RecommendationResourceSummary {
1019
1019
  /**
1020
- * @public
1021
1020
  * <p>The ID of the Recommendation Resource</p>
1021
+ * @public
1022
1022
  */
1023
1023
  id: string | undefined;
1024
1024
  /**
1025
- * @public
1026
1025
  * <p>The ARN of the Recommendation Resource</p>
1026
+ * @public
1027
1027
  */
1028
1028
  arn: string | undefined;
1029
1029
  /**
1030
- * @public
1031
1030
  * <p>The AWS resource identifier</p>
1031
+ * @public
1032
1032
  */
1033
1033
  awsResourceId: string | undefined;
1034
1034
  /**
1035
- * @public
1036
1035
  * <p>The AWS Region code that the Recommendation Resource is in</p>
1036
+ * @public
1037
1037
  */
1038
1038
  regionCode: string | undefined;
1039
1039
  /**
1040
- * @public
1041
1040
  * <p>The current status of the Recommendation Resource</p>
1041
+ * @public
1042
1042
  */
1043
1043
  status: ResourceStatus | undefined;
1044
1044
  /**
1045
- * @public
1046
1045
  * <p>Metadata associated with the Recommendation Resource</p>
1046
+ * @public
1047
1047
  */
1048
1048
  metadata: Record<string, string> | undefined;
1049
1049
  /**
1050
- * @public
1051
1050
  * <p>When the Recommendation Resource was last updated</p>
1051
+ * @public
1052
1052
  */
1053
1053
  lastUpdatedAt: Date | undefined;
1054
1054
  /**
1055
- * @public
1056
1055
  * <p>The Recommendation ARN</p>
1056
+ * @public
1057
1057
  */
1058
1058
  recommendationArn: string | undefined;
1059
1059
  }
@@ -1062,15 +1062,15 @@ export interface RecommendationResourceSummary {
1062
1062
  */
1063
1063
  export interface ListRecommendationResourcesResponse {
1064
1064
  /**
1065
- * @public
1066
1065
  * <p>The token for the next set of results. Use the value returned in the previous response in the next request
1067
1066
  * to retrieve the next set of results.
1068
1067
  * </p>
1068
+ * @public
1069
1069
  */
1070
1070
  nextToken?: string;
1071
1071
  /**
1072
- * @public
1073
1072
  * <p>A list of Recommendation Resources</p>
1073
+ * @public
1074
1074
  */
1075
1075
  recommendationResourceSummaries: RecommendationResourceSummary[] | undefined;
1076
1076
  }
@@ -1079,131 +1079,131 @@ export interface ListRecommendationResourcesResponse {
1079
1079
  */
1080
1080
  export interface ListRecommendationsRequest {
1081
1081
  /**
1082
- * @public
1083
1082
  * <p>The token for the next set of results. Use the value returned in the previous response in the next request
1084
1083
  * to retrieve the next set of results.
1085
1084
  * </p>
1085
+ * @public
1086
1086
  */
1087
1087
  nextToken?: string;
1088
1088
  /**
1089
- * @public
1090
1089
  * <p>The maximum number of results to return per page.</p>
1090
+ * @public
1091
1091
  */
1092
1092
  maxResults?: number;
1093
1093
  /**
1094
- * @public
1095
1094
  * <p>The type of the Recommendation</p>
1095
+ * @public
1096
1096
  */
1097
1097
  type?: RecommendationType;
1098
1098
  /**
1099
- * @public
1100
1099
  * <p>The status of the Recommendation</p>
1100
+ * @public
1101
1101
  */
1102
1102
  status?: RecommendationStatus;
1103
1103
  /**
1104
- * @public
1105
1104
  * <p>The pillar of the Recommendation</p>
1105
+ * @public
1106
1106
  */
1107
1107
  pillar?: RecommendationPillar;
1108
1108
  /**
1109
- * @public
1110
1109
  * <p>The aws service associated with the Recommendation</p>
1110
+ * @public
1111
1111
  */
1112
1112
  awsService?: string;
1113
1113
  /**
1114
- * @public
1115
1114
  * <p>The source of the Recommendation</p>
1115
+ * @public
1116
1116
  */
1117
1117
  source?: RecommendationSource;
1118
1118
  /**
1119
- * @public
1120
1119
  * <p>The check identifier of the Recommendation</p>
1120
+ * @public
1121
1121
  */
1122
1122
  checkIdentifier?: string;
1123
1123
  /**
1124
- * @public
1125
1124
  * <p>After the last update of the Recommendation</p>
1125
+ * @public
1126
1126
  */
1127
1127
  afterLastUpdatedAt?: Date;
1128
1128
  /**
1129
- * @public
1130
1129
  * <p>Before the last update of the Recommendation</p>
1130
+ * @public
1131
1131
  */
1132
1132
  beforeLastUpdatedAt?: Date;
1133
1133
  }
1134
1134
  /**
1135
- * @public
1136
1135
  * <p>Summary of Recommendation for an Account</p>
1136
+ * @public
1137
1137
  */
1138
1138
  export interface RecommendationSummary {
1139
1139
  /**
1140
- * @public
1141
1140
  * <p>The ID which identifies where the Recommendation was produced</p>
1141
+ * @public
1142
1142
  */
1143
1143
  id: string | undefined;
1144
1144
  /**
1145
- * @public
1146
1145
  * <p>Whether the Recommendation was automated or generated by AWS Trusted Advisor Priority</p>
1146
+ * @public
1147
1147
  */
1148
1148
  type: RecommendationType | undefined;
1149
1149
  /**
1150
- * @public
1151
1150
  * <p>The AWS Trusted Advisor Check ARN that relates to the Recommendation</p>
1151
+ * @public
1152
1152
  */
1153
1153
  checkArn?: string;
1154
1154
  /**
1155
- * @public
1156
1155
  * <p>The status of the Recommendation</p>
1156
+ * @public
1157
1157
  */
1158
1158
  status: RecommendationStatus | undefined;
1159
1159
  /**
1160
- * @public
1161
1160
  * <p>The lifecycle stage from AWS Trusted Advisor Priority</p>
1161
+ * @public
1162
1162
  */
1163
1163
  lifecycleStage?: RecommendationLifecycleStage;
1164
1164
  /**
1165
- * @public
1166
1165
  * <p>The Pillars that the Recommendation is optimizing</p>
1166
+ * @public
1167
1167
  */
1168
1168
  pillars: RecommendationPillar[] | undefined;
1169
1169
  /**
1170
- * @public
1171
1170
  * <p>The source of the Recommendation</p>
1171
+ * @public
1172
1172
  */
1173
1173
  source: RecommendationSource | undefined;
1174
1174
  /**
1175
- * @public
1176
1175
  * <p>The AWS Services that the Recommendation applies to</p>
1176
+ * @public
1177
1177
  */
1178
1178
  awsServices?: string[];
1179
1179
  /**
1180
- * @public
1181
1180
  * <p>The name of the AWS Trusted Advisor Recommendation</p>
1181
+ * @public
1182
1182
  */
1183
1183
  name: string | undefined;
1184
1184
  /**
1185
- * @public
1186
1185
  * <p>An aggregation of all resources</p>
1186
+ * @public
1187
1187
  */
1188
1188
  resourcesAggregates: RecommendationResourcesAggregates | undefined;
1189
1189
  /**
1190
- * @public
1191
1190
  * <p>The pillar aggregations for cost savings</p>
1191
+ * @public
1192
1192
  */
1193
1193
  pillarSpecificAggregates?: RecommendationPillarSpecificAggregates;
1194
1194
  /**
1195
- * @public
1196
1195
  * <p>When the Recommendation was created, if created by AWS Trusted Advisor Priority</p>
1196
+ * @public
1197
1197
  */
1198
1198
  createdAt?: Date;
1199
1199
  /**
1200
- * @public
1201
1200
  * <p>When the Recommendation was last updated</p>
1201
+ * @public
1202
1202
  */
1203
1203
  lastUpdatedAt?: Date;
1204
1204
  /**
1205
- * @public
1206
1205
  * <p>The ARN of the Recommendation</p>
1206
+ * @public
1207
1207
  */
1208
1208
  arn: string | undefined;
1209
1209
  }
@@ -1212,15 +1212,15 @@ export interface RecommendationSummary {
1212
1212
  */
1213
1213
  export interface ListRecommendationsResponse {
1214
1214
  /**
1215
- * @public
1216
1215
  * <p>The token for the next set of results. Use the value returned in the previous response in the next request
1217
1216
  * to retrieve the next set of results.
1218
1217
  * </p>
1218
+ * @public
1219
1219
  */
1220
1220
  nextToken?: string;
1221
1221
  /**
1222
- * @public
1223
1222
  * <p>The list of Recommendations</p>
1223
+ * @public
1224
1224
  */
1225
1225
  recommendationSummaries: RecommendationSummary[] | undefined;
1226
1226
  }
@@ -1243,23 +1243,23 @@ export type UpdateRecommendationLifecycleStage = (typeof UpdateRecommendationLif
1243
1243
  */
1244
1244
  export interface UpdateOrganizationRecommendationLifecycleRequest {
1245
1245
  /**
1246
- * @public
1247
1246
  * <p>The new lifecycle stage</p>
1247
+ * @public
1248
1248
  */
1249
1249
  lifecycleStage: UpdateRecommendationLifecycleStage | undefined;
1250
1250
  /**
1251
- * @public
1252
1251
  * <p>Reason for the lifecycle stage change</p>
1252
+ * @public
1253
1253
  */
1254
1254
  updateReason?: string;
1255
1255
  /**
1256
- * @public
1257
1256
  * <p>Reason code for the lifecycle state change</p>
1257
+ * @public
1258
1258
  */
1259
1259
  updateReasonCode?: UpdateRecommendationLifecycleStageReasonCode;
1260
1260
  /**
1261
- * @public
1262
1261
  * <p>The Recommendation identifier for AWS Trusted Advisor Priority recommendations</p>
1262
+ * @public
1263
1263
  */
1264
1264
  organizationRecommendationIdentifier: string | undefined;
1265
1265
  }
@@ -1268,23 +1268,23 @@ export interface UpdateOrganizationRecommendationLifecycleRequest {
1268
1268
  */
1269
1269
  export interface UpdateRecommendationLifecycleRequest {
1270
1270
  /**
1271
- * @public
1272
1271
  * <p>The new lifecycle stage</p>
1272
+ * @public
1273
1273
  */
1274
1274
  lifecycleStage: UpdateRecommendationLifecycleStage | undefined;
1275
1275
  /**
1276
- * @public
1277
1276
  * <p>Reason for the lifecycle stage change</p>
1277
+ * @public
1278
1278
  */
1279
1279
  updateReason?: string;
1280
1280
  /**
1281
- * @public
1282
1281
  * <p>Reason code for the lifecycle state change</p>
1282
+ * @public
1283
1283
  */
1284
1284
  updateReasonCode?: UpdateRecommendationLifecycleStageReasonCode;
1285
1285
  /**
1286
- * @public
1287
1286
  * <p>The Recommendation identifier for AWS Trusted Advisor Priority recommendations</p>
1287
+ * @public
1288
1288
  */
1289
1289
  recommendationIdentifier: string | undefined;
1290
1290
  }