@aws-sdk/client-trustedadvisor 3.687.0 → 3.692.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.
@@ -52,17 +52,17 @@ export interface AccountRecommendationLifecycleSummary {
52
52
  * <p>The AWS account ID</p>
53
53
  * @public
54
54
  */
55
- accountId?: string;
55
+ accountId?: string | undefined;
56
56
  /**
57
57
  * <p>The Recommendation ARN</p>
58
58
  * @public
59
59
  */
60
- accountRecommendationArn?: string;
60
+ accountRecommendationArn?: string | undefined;
61
61
  /**
62
62
  * <p>The lifecycle stage from AWS Trusted Advisor Priority</p>
63
63
  * @public
64
64
  */
65
- lifecycleStage?: RecommendationLifecycleStage;
65
+ lifecycleStage?: RecommendationLifecycleStage | undefined;
66
66
  /**
67
67
  * <p>The person on whose behalf a Technical Account Manager (TAM) updated the recommendation. This information
68
68
  * is only available when a Technical Account Manager takes an action on a recommendation managed by AWS
@@ -70,7 +70,7 @@ export interface AccountRecommendationLifecycleSummary {
70
70
  * </p>
71
71
  * @public
72
72
  */
73
- updatedOnBehalfOf?: string;
73
+ updatedOnBehalfOf?: string | undefined;
74
74
  /**
75
75
  * <p>The job title of the person on whose behalf a Technical Account Manager (TAM) updated the recommendation.
76
76
  * This information is only available when a Technical Account Manager takes an action on a recommendation
@@ -78,22 +78,22 @@ export interface AccountRecommendationLifecycleSummary {
78
78
  * </p>
79
79
  * @public
80
80
  */
81
- updatedOnBehalfOfJobTitle?: string;
81
+ updatedOnBehalfOfJobTitle?: string | undefined;
82
82
  /**
83
83
  * <p>Reason for the lifecycle stage change</p>
84
84
  * @public
85
85
  */
86
- updateReason?: string;
86
+ updateReason?: string | undefined;
87
87
  /**
88
88
  * <p>Reason code for the lifecycle state change</p>
89
89
  * @public
90
90
  */
91
- updateReasonCode?: UpdateRecommendationLifecycleStageReasonCode;
91
+ updateReasonCode?: UpdateRecommendationLifecycleStageReasonCode | undefined;
92
92
  /**
93
93
  * <p>When the Recommendation was last updated</p>
94
94
  * @public
95
95
  */
96
- lastUpdatedAt?: Date;
96
+ lastUpdatedAt?: Date | undefined;
97
97
  }
98
98
  /**
99
99
  * <p>The request entry for Recommendation Resource exclusion. Each entry is a combination of Recommendation Resource ARN and corresponding exclusion status</p>
@@ -130,17 +130,17 @@ export interface UpdateRecommendationResourceExclusionError {
130
130
  * <p>The ARN of the Recommendation Resource</p>
131
131
  * @public
132
132
  */
133
- arn?: string;
133
+ arn?: string | undefined;
134
134
  /**
135
135
  * <p>The error code</p>
136
136
  * @public
137
137
  */
138
- errorCode?: string;
138
+ errorCode?: string | undefined;
139
139
  /**
140
140
  * <p>The error message</p>
141
141
  * @public
142
142
  */
143
- errorMessage?: string;
143
+ errorMessage?: string | undefined;
144
144
  }
145
145
  /**
146
146
  * @public
@@ -336,7 +336,7 @@ export interface RecommendationPillarSpecificAggregates {
336
336
  * <p>Cost optimizing aggregates</p>
337
337
  * @public
338
338
  */
339
- costOptimizing?: RecommendationCostOptimizingAggregates;
339
+ costOptimizing?: RecommendationCostOptimizingAggregates | undefined;
340
340
  }
341
341
  /**
342
342
  * <p>Aggregation of Recommendation Resources</p>
@@ -404,7 +404,7 @@ export interface OrganizationRecommendation {
404
404
  * <p>The AWS Trusted Advisor Check ARN that relates to the Recommendation</p>
405
405
  * @public
406
406
  */
407
- checkArn?: string;
407
+ checkArn?: string | undefined;
408
408
  /**
409
409
  * <p>The status of the Recommendation</p>
410
410
  * @public
@@ -414,7 +414,7 @@ export interface OrganizationRecommendation {
414
414
  * <p>The lifecycle stage from AWS Trusted Advisor Priority</p>
415
415
  * @public
416
416
  */
417
- lifecycleStage?: RecommendationLifecycleStage;
417
+ lifecycleStage?: RecommendationLifecycleStage | undefined;
418
418
  /**
419
419
  * <p>The Pillars that the Recommendation is optimizing</p>
420
420
  * @public
@@ -429,7 +429,7 @@ export interface OrganizationRecommendation {
429
429
  * <p>The AWS Services that the Recommendation applies to</p>
430
430
  * @public
431
431
  */
432
- awsServices?: string[];
432
+ awsServices?: string[] | undefined;
433
433
  /**
434
434
  * <p>The name of the AWS Trusted Advisor Recommendation</p>
435
435
  * @public
@@ -444,17 +444,17 @@ export interface OrganizationRecommendation {
444
444
  * <p>The pillar aggregations for cost savings</p>
445
445
  * @public
446
446
  */
447
- pillarSpecificAggregates?: RecommendationPillarSpecificAggregates;
447
+ pillarSpecificAggregates?: RecommendationPillarSpecificAggregates | undefined;
448
448
  /**
449
449
  * <p>When the Recommendation was created, if created by AWS Trusted Advisor Priority</p>
450
450
  * @public
451
451
  */
452
- createdAt?: Date;
452
+ createdAt?: Date | undefined;
453
453
  /**
454
454
  * <p>When the Recommendation was last updated</p>
455
455
  * @public
456
456
  */
457
- lastUpdatedAt?: Date;
457
+ lastUpdatedAt?: Date | undefined;
458
458
  /**
459
459
  * <p>The ARN of the Recommendation</p>
460
460
  * @public
@@ -469,7 +469,7 @@ export interface OrganizationRecommendation {
469
469
  * <p>The creator, if created by AWS Trusted Advisor Priority</p>
470
470
  * @public
471
471
  */
472
- createdBy?: string;
472
+ createdBy?: string | undefined;
473
473
  /**
474
474
  * <p>The person on whose behalf a Technical Account Manager (TAM) updated the recommendation. This information
475
475
  * is only available when a Technical Account Manager takes an action on a recommendation managed by AWS
@@ -477,7 +477,7 @@ export interface OrganizationRecommendation {
477
477
  * </p>
478
478
  * @public
479
479
  */
480
- updatedOnBehalfOf?: string;
480
+ updatedOnBehalfOf?: string | undefined;
481
481
  /**
482
482
  * <p>The job title of the person on whose behalf a Technical Account Manager (TAM) updated the recommendation.
483
483
  * This information is only available when a Technical Account Manager takes an action on a recommendation
@@ -485,22 +485,22 @@ export interface OrganizationRecommendation {
485
485
  * </p>
486
486
  * @public
487
487
  */
488
- updatedOnBehalfOfJobTitle?: string;
488
+ updatedOnBehalfOfJobTitle?: string | undefined;
489
489
  /**
490
490
  * <p>Reason for the lifecycle stage change</p>
491
491
  * @public
492
492
  */
493
- updateReason?: string;
493
+ updateReason?: string | undefined;
494
494
  /**
495
495
  * <p>Reason code for the lifecycle state change</p>
496
496
  * @public
497
497
  */
498
- updateReasonCode?: UpdateRecommendationLifecycleStageReasonCode;
498
+ updateReasonCode?: UpdateRecommendationLifecycleStageReasonCode | undefined;
499
499
  /**
500
500
  * <p>When the Recommendation was resolved</p>
501
501
  * @public
502
502
  */
503
- resolvedAt?: Date;
503
+ resolvedAt?: Date | undefined;
504
504
  }
505
505
  /**
506
506
  * @public
@@ -510,7 +510,7 @@ export interface GetOrganizationRecommendationResponse {
510
510
  * <p>The Recommendation</p>
511
511
  * @public
512
512
  */
513
- organizationRecommendation?: OrganizationRecommendation;
513
+ organizationRecommendation?: OrganizationRecommendation | undefined;
514
514
  }
515
515
  /**
516
516
  * <p>Exception that the requested resource has not been found</p>
@@ -553,7 +553,7 @@ export interface Recommendation {
553
553
  * <p>The AWS Trusted Advisor Check ARN that relates to the Recommendation</p>
554
554
  * @public
555
555
  */
556
- checkArn?: string;
556
+ checkArn?: string | undefined;
557
557
  /**
558
558
  * <p>The status of the Recommendation</p>
559
559
  * @public
@@ -563,7 +563,7 @@ export interface Recommendation {
563
563
  * <p>The lifecycle stage from AWS Trusted Advisor Priority</p>
564
564
  * @public
565
565
  */
566
- lifecycleStage?: RecommendationLifecycleStage;
566
+ lifecycleStage?: RecommendationLifecycleStage | undefined;
567
567
  /**
568
568
  * <p>The Pillars that the Recommendation is optimizing</p>
569
569
  * @public
@@ -578,7 +578,7 @@ export interface Recommendation {
578
578
  * <p>The AWS Services that the Recommendation applies to</p>
579
579
  * @public
580
580
  */
581
- awsServices?: string[];
581
+ awsServices?: string[] | undefined;
582
582
  /**
583
583
  * <p>The name of the AWS Trusted Advisor Recommendation</p>
584
584
  * @public
@@ -593,17 +593,17 @@ export interface Recommendation {
593
593
  * <p>The pillar aggregations for cost savings</p>
594
594
  * @public
595
595
  */
596
- pillarSpecificAggregates?: RecommendationPillarSpecificAggregates;
596
+ pillarSpecificAggregates?: RecommendationPillarSpecificAggregates | undefined;
597
597
  /**
598
598
  * <p>When the Recommendation was created, if created by AWS Trusted Advisor Priority</p>
599
599
  * @public
600
600
  */
601
- createdAt?: Date;
601
+ createdAt?: Date | undefined;
602
602
  /**
603
603
  * <p>When the Recommendation was last updated</p>
604
604
  * @public
605
605
  */
606
- lastUpdatedAt?: Date;
606
+ lastUpdatedAt?: Date | undefined;
607
607
  /**
608
608
  * <p>The ARN of the Recommendation</p>
609
609
  * @public
@@ -618,7 +618,7 @@ export interface Recommendation {
618
618
  * <p>The creator, if created by AWS Trusted Advisor Priority</p>
619
619
  * @public
620
620
  */
621
- createdBy?: string;
621
+ createdBy?: string | undefined;
622
622
  /**
623
623
  * <p>The person on whose behalf a Technical Account Manager (TAM) updated the recommendation. This information
624
624
  * is only available when a Technical Account Manager takes an action on a recommendation managed by AWS
@@ -626,7 +626,7 @@ export interface Recommendation {
626
626
  * </p>
627
627
  * @public
628
628
  */
629
- updatedOnBehalfOf?: string;
629
+ updatedOnBehalfOf?: string | undefined;
630
630
  /**
631
631
  * <p>The job title of the person on whose behalf a Technical Account Manager (TAM) updated the recommendation.
632
632
  * This information is only available when a Technical Account Manager takes an action on a recommendation
@@ -634,22 +634,22 @@ export interface Recommendation {
634
634
  * </p>
635
635
  * @public
636
636
  */
637
- updatedOnBehalfOfJobTitle?: string;
637
+ updatedOnBehalfOfJobTitle?: string | undefined;
638
638
  /**
639
639
  * <p>Reason for the lifecycle stage change</p>
640
640
  * @public
641
641
  */
642
- updateReason?: string;
642
+ updateReason?: string | undefined;
643
643
  /**
644
644
  * <p>Reason code for the lifecycle state change</p>
645
645
  * @public
646
646
  */
647
- updateReasonCode?: UpdateRecommendationLifecycleStageReasonCode;
647
+ updateReasonCode?: UpdateRecommendationLifecycleStageReasonCode | undefined;
648
648
  /**
649
649
  * <p>When the Recommendation was resolved</p>
650
650
  * @public
651
651
  */
652
- resolvedAt?: Date;
652
+ resolvedAt?: Date | undefined;
653
653
  }
654
654
  /**
655
655
  * @public
@@ -659,7 +659,7 @@ export interface GetRecommendationResponse {
659
659
  * <p>The Recommendation</p>
660
660
  * @public
661
661
  */
662
- recommendation?: Recommendation;
662
+ recommendation?: Recommendation | undefined;
663
663
  }
664
664
  /**
665
665
  * @public
@@ -692,32 +692,32 @@ export interface ListChecksRequest {
692
692
  * </p>
693
693
  * @public
694
694
  */
695
- nextToken?: string;
695
+ nextToken?: string | undefined;
696
696
  /**
697
697
  * <p>The maximum number of results to return per page.</p>
698
698
  * @public
699
699
  */
700
- maxResults?: number;
700
+ maxResults?: number | undefined;
701
701
  /**
702
702
  * <p>The pillar of the check</p>
703
703
  * @public
704
704
  */
705
- pillar?: RecommendationPillar;
705
+ pillar?: RecommendationPillar | undefined;
706
706
  /**
707
707
  * <p>The aws service associated with the check</p>
708
708
  * @public
709
709
  */
710
- awsService?: string;
710
+ awsService?: string | undefined;
711
711
  /**
712
712
  * <p>The source of the check</p>
713
713
  * @public
714
714
  */
715
- source?: RecommendationSource;
715
+ source?: RecommendationSource | undefined;
716
716
  /**
717
717
  * <p>The ISO 639-1 code for the language that you want your checks to appear in.</p>
718
718
  * @public
719
719
  */
720
- language?: RecommendationLanguage;
720
+ language?: RecommendationLanguage | undefined;
721
721
  }
722
722
  /**
723
723
  * @public
@@ -729,7 +729,7 @@ export interface ListChecksResponse {
729
729
  * </p>
730
730
  * @public
731
731
  */
732
- nextToken?: string;
732
+ nextToken?: string | undefined;
733
733
  /**
734
734
  * <p>The list of Checks</p>
735
735
  * @public
@@ -746,12 +746,12 @@ export interface ListOrganizationRecommendationAccountsRequest {
746
746
  * </p>
747
747
  * @public
748
748
  */
749
- nextToken?: string;
749
+ nextToken?: string | undefined;
750
750
  /**
751
751
  * <p>The maximum number of results to return per page.</p>
752
752
  * @public
753
753
  */
754
- maxResults?: number;
754
+ maxResults?: number | undefined;
755
755
  /**
756
756
  * <p>The Recommendation identifier</p>
757
757
  * @public
@@ -761,7 +761,7 @@ export interface ListOrganizationRecommendationAccountsRequest {
761
761
  * <p>An account affected by this organization recommendation</p>
762
762
  * @public
763
763
  */
764
- affectedAccountId?: string;
764
+ affectedAccountId?: string | undefined;
765
765
  }
766
766
  /**
767
767
  * @public
@@ -773,7 +773,7 @@ export interface ListOrganizationRecommendationAccountsResponse {
773
773
  * </p>
774
774
  * @public
775
775
  */
776
- nextToken?: string;
776
+ nextToken?: string | undefined;
777
777
  /**
778
778
  * <p>The account recommendations lifecycles that are applicable to the Recommendation</p>
779
779
  * @public
@@ -803,27 +803,27 @@ export interface ListOrganizationRecommendationResourcesRequest {
803
803
  * </p>
804
804
  * @public
805
805
  */
806
- nextToken?: string;
806
+ nextToken?: string | undefined;
807
807
  /**
808
808
  * <p>The maximum number of results to return per page.</p>
809
809
  * @public
810
810
  */
811
- maxResults?: number;
811
+ maxResults?: number | undefined;
812
812
  /**
813
813
  * <p>The status of the resource</p>
814
814
  * @public
815
815
  */
816
- status?: ResourceStatus;
816
+ status?: ResourceStatus | undefined;
817
817
  /**
818
818
  * <p>The exclusion status of the resource</p>
819
819
  * @public
820
820
  */
821
- exclusionStatus?: ExclusionStatus;
821
+ exclusionStatus?: ExclusionStatus | undefined;
822
822
  /**
823
823
  * <p>The AWS Region code of the resource</p>
824
824
  * @public
825
825
  */
826
- regionCode?: string;
826
+ regionCode?: string | undefined;
827
827
  /**
828
828
  * <p>The AWS Organization organization's Recommendation identifier</p>
829
829
  * @public
@@ -833,7 +833,7 @@ export interface ListOrganizationRecommendationResourcesRequest {
833
833
  * <p>An account affected by this organization recommendation</p>
834
834
  * @public
835
835
  */
836
- affectedAccountId?: string;
836
+ affectedAccountId?: string | undefined;
837
837
  }
838
838
  /**
839
839
  * <p>Organization Recommendation Resource Summary</p>
@@ -879,12 +879,12 @@ export interface OrganizationRecommendationResourceSummary {
879
879
  * <p>The exclusion status of the Recommendation Resource</p>
880
880
  * @public
881
881
  */
882
- exclusionStatus?: ExclusionStatus;
882
+ exclusionStatus?: ExclusionStatus | undefined;
883
883
  /**
884
884
  * <p>The AWS account ID</p>
885
885
  * @public
886
886
  */
887
- accountId?: string;
887
+ accountId?: string | undefined;
888
888
  /**
889
889
  * <p>The Recommendation ARN</p>
890
890
  * @public
@@ -901,7 +901,7 @@ export interface ListOrganizationRecommendationResourcesResponse {
901
901
  * </p>
902
902
  * @public
903
903
  */
904
- nextToken?: string;
904
+ nextToken?: string | undefined;
905
905
  /**
906
906
  * <p>A list of Recommendation Resources</p>
907
907
  * @public
@@ -918,52 +918,52 @@ export interface ListOrganizationRecommendationsRequest {
918
918
  * </p>
919
919
  * @public
920
920
  */
921
- nextToken?: string;
921
+ nextToken?: string | undefined;
922
922
  /**
923
923
  * <p>The maximum number of results to return per page.</p>
924
924
  * @public
925
925
  */
926
- maxResults?: number;
926
+ maxResults?: number | undefined;
927
927
  /**
928
928
  * <p>The type of the Recommendation</p>
929
929
  * @public
930
930
  */
931
- type?: RecommendationType;
931
+ type?: RecommendationType | undefined;
932
932
  /**
933
933
  * <p>The status of the Recommendation</p>
934
934
  * @public
935
935
  */
936
- status?: RecommendationStatus;
936
+ status?: RecommendationStatus | undefined;
937
937
  /**
938
938
  * <p>The pillar of the Recommendation</p>
939
939
  * @public
940
940
  */
941
- pillar?: RecommendationPillar;
941
+ pillar?: RecommendationPillar | undefined;
942
942
  /**
943
943
  * <p>The aws service associated with the Recommendation</p>
944
944
  * @public
945
945
  */
946
- awsService?: string;
946
+ awsService?: string | undefined;
947
947
  /**
948
948
  * <p>The source of the Recommendation</p>
949
949
  * @public
950
950
  */
951
- source?: RecommendationSource;
951
+ source?: RecommendationSource | undefined;
952
952
  /**
953
953
  * <p>The check identifier of the Recommendation</p>
954
954
  * @public
955
955
  */
956
- checkIdentifier?: string;
956
+ checkIdentifier?: string | undefined;
957
957
  /**
958
958
  * <p>After the last update of the Recommendation</p>
959
959
  * @public
960
960
  */
961
- afterLastUpdatedAt?: Date;
961
+ afterLastUpdatedAt?: Date | undefined;
962
962
  /**
963
963
  * <p>Before the last update of the Recommendation</p>
964
964
  * @public
965
965
  */
966
- beforeLastUpdatedAt?: Date;
966
+ beforeLastUpdatedAt?: Date | undefined;
967
967
  }
968
968
  /**
969
969
  * <p>Summary of recommendation for accounts within an Organization</p>
@@ -984,7 +984,7 @@ export interface OrganizationRecommendationSummary {
984
984
  * <p>The AWS Trusted Advisor Check ARN that relates to the Recommendation</p>
985
985
  * @public
986
986
  */
987
- checkArn?: string;
987
+ checkArn?: string | undefined;
988
988
  /**
989
989
  * <p>The status of the Recommendation</p>
990
990
  * @public
@@ -994,7 +994,7 @@ export interface OrganizationRecommendationSummary {
994
994
  * <p>The lifecycle stage from AWS Trusted Advisor Priority</p>
995
995
  * @public
996
996
  */
997
- lifecycleStage?: RecommendationLifecycleStage;
997
+ lifecycleStage?: RecommendationLifecycleStage | undefined;
998
998
  /**
999
999
  * <p>The Pillars that the Recommendation is optimizing</p>
1000
1000
  * @public
@@ -1009,7 +1009,7 @@ export interface OrganizationRecommendationSummary {
1009
1009
  * <p>The AWS Services that the Recommendation applies to</p>
1010
1010
  * @public
1011
1011
  */
1012
- awsServices?: string[];
1012
+ awsServices?: string[] | undefined;
1013
1013
  /**
1014
1014
  * <p>The name of the AWS Trusted Advisor Recommendation</p>
1015
1015
  * @public
@@ -1024,17 +1024,17 @@ export interface OrganizationRecommendationSummary {
1024
1024
  * <p>The pillar aggregations for cost savings</p>
1025
1025
  * @public
1026
1026
  */
1027
- pillarSpecificAggregates?: RecommendationPillarSpecificAggregates;
1027
+ pillarSpecificAggregates?: RecommendationPillarSpecificAggregates | undefined;
1028
1028
  /**
1029
1029
  * <p>When the Recommendation was created, if created by AWS Trusted Advisor Priority</p>
1030
1030
  * @public
1031
1031
  */
1032
- createdAt?: Date;
1032
+ createdAt?: Date | undefined;
1033
1033
  /**
1034
1034
  * <p>When the Recommendation was last updated</p>
1035
1035
  * @public
1036
1036
  */
1037
- lastUpdatedAt?: Date;
1037
+ lastUpdatedAt?: Date | undefined;
1038
1038
  /**
1039
1039
  * <p>The ARN of the Recommendation</p>
1040
1040
  * @public
@@ -1051,7 +1051,7 @@ export interface ListOrganizationRecommendationsResponse {
1051
1051
  * </p>
1052
1052
  * @public
1053
1053
  */
1054
- nextToken?: string;
1054
+ nextToken?: string | undefined;
1055
1055
  /**
1056
1056
  * <p>The list of Recommendations</p>
1057
1057
  * @public
@@ -1068,27 +1068,27 @@ export interface ListRecommendationResourcesRequest {
1068
1068
  * </p>
1069
1069
  * @public
1070
1070
  */
1071
- nextToken?: string;
1071
+ nextToken?: string | undefined;
1072
1072
  /**
1073
1073
  * <p>The maximum number of results to return per page.</p>
1074
1074
  * @public
1075
1075
  */
1076
- maxResults?: number;
1076
+ maxResults?: number | undefined;
1077
1077
  /**
1078
1078
  * <p>The status of the resource</p>
1079
1079
  * @public
1080
1080
  */
1081
- status?: ResourceStatus;
1081
+ status?: ResourceStatus | undefined;
1082
1082
  /**
1083
1083
  * <p>The exclusion status of the resource</p>
1084
1084
  * @public
1085
1085
  */
1086
- exclusionStatus?: ExclusionStatus;
1086
+ exclusionStatus?: ExclusionStatus | undefined;
1087
1087
  /**
1088
1088
  * <p>The AWS Region code of the resource</p>
1089
1089
  * @public
1090
1090
  */
1091
- regionCode?: string;
1091
+ regionCode?: string | undefined;
1092
1092
  /**
1093
1093
  * <p>The Recommendation identifier</p>
1094
1094
  * @public
@@ -1139,7 +1139,7 @@ export interface RecommendationResourceSummary {
1139
1139
  * <p>The exclusion status of the Recommendation Resource</p>
1140
1140
  * @public
1141
1141
  */
1142
- exclusionStatus?: ExclusionStatus;
1142
+ exclusionStatus?: ExclusionStatus | undefined;
1143
1143
  /**
1144
1144
  * <p>The Recommendation ARN</p>
1145
1145
  * @public
@@ -1156,7 +1156,7 @@ export interface ListRecommendationResourcesResponse {
1156
1156
  * </p>
1157
1157
  * @public
1158
1158
  */
1159
- nextToken?: string;
1159
+ nextToken?: string | undefined;
1160
1160
  /**
1161
1161
  * <p>A list of Recommendation Resources</p>
1162
1162
  * @public
@@ -1173,52 +1173,52 @@ export interface ListRecommendationsRequest {
1173
1173
  * </p>
1174
1174
  * @public
1175
1175
  */
1176
- nextToken?: string;
1176
+ nextToken?: string | undefined;
1177
1177
  /**
1178
1178
  * <p>The maximum number of results to return per page.</p>
1179
1179
  * @public
1180
1180
  */
1181
- maxResults?: number;
1181
+ maxResults?: number | undefined;
1182
1182
  /**
1183
1183
  * <p>The type of the Recommendation</p>
1184
1184
  * @public
1185
1185
  */
1186
- type?: RecommendationType;
1186
+ type?: RecommendationType | undefined;
1187
1187
  /**
1188
1188
  * <p>The status of the Recommendation</p>
1189
1189
  * @public
1190
1190
  */
1191
- status?: RecommendationStatus;
1191
+ status?: RecommendationStatus | undefined;
1192
1192
  /**
1193
1193
  * <p>The pillar of the Recommendation</p>
1194
1194
  * @public
1195
1195
  */
1196
- pillar?: RecommendationPillar;
1196
+ pillar?: RecommendationPillar | undefined;
1197
1197
  /**
1198
1198
  * <p>The aws service associated with the Recommendation</p>
1199
1199
  * @public
1200
1200
  */
1201
- awsService?: string;
1201
+ awsService?: string | undefined;
1202
1202
  /**
1203
1203
  * <p>The source of the Recommendation</p>
1204
1204
  * @public
1205
1205
  */
1206
- source?: RecommendationSource;
1206
+ source?: RecommendationSource | undefined;
1207
1207
  /**
1208
1208
  * <p>The check identifier of the Recommendation</p>
1209
1209
  * @public
1210
1210
  */
1211
- checkIdentifier?: string;
1211
+ checkIdentifier?: string | undefined;
1212
1212
  /**
1213
1213
  * <p>After the last update of the Recommendation</p>
1214
1214
  * @public
1215
1215
  */
1216
- afterLastUpdatedAt?: Date;
1216
+ afterLastUpdatedAt?: Date | undefined;
1217
1217
  /**
1218
1218
  * <p>Before the last update of the Recommendation</p>
1219
1219
  * @public
1220
1220
  */
1221
- beforeLastUpdatedAt?: Date;
1221
+ beforeLastUpdatedAt?: Date | undefined;
1222
1222
  }
1223
1223
  /**
1224
1224
  * <p>Summary of Recommendation for an Account</p>
@@ -1239,7 +1239,7 @@ export interface RecommendationSummary {
1239
1239
  * <p>The AWS Trusted Advisor Check ARN that relates to the Recommendation</p>
1240
1240
  * @public
1241
1241
  */
1242
- checkArn?: string;
1242
+ checkArn?: string | undefined;
1243
1243
  /**
1244
1244
  * <p>The status of the Recommendation</p>
1245
1245
  * @public
@@ -1249,7 +1249,7 @@ export interface RecommendationSummary {
1249
1249
  * <p>The lifecycle stage from AWS Trusted Advisor Priority</p>
1250
1250
  * @public
1251
1251
  */
1252
- lifecycleStage?: RecommendationLifecycleStage;
1252
+ lifecycleStage?: RecommendationLifecycleStage | undefined;
1253
1253
  /**
1254
1254
  * <p>The Pillars that the Recommendation is optimizing</p>
1255
1255
  * @public
@@ -1264,7 +1264,7 @@ export interface RecommendationSummary {
1264
1264
  * <p>The AWS Services that the Recommendation applies to</p>
1265
1265
  * @public
1266
1266
  */
1267
- awsServices?: string[];
1267
+ awsServices?: string[] | undefined;
1268
1268
  /**
1269
1269
  * <p>The name of the AWS Trusted Advisor Recommendation</p>
1270
1270
  * @public
@@ -1279,17 +1279,17 @@ export interface RecommendationSummary {
1279
1279
  * <p>The pillar aggregations for cost savings</p>
1280
1280
  * @public
1281
1281
  */
1282
- pillarSpecificAggregates?: RecommendationPillarSpecificAggregates;
1282
+ pillarSpecificAggregates?: RecommendationPillarSpecificAggregates | undefined;
1283
1283
  /**
1284
1284
  * <p>When the Recommendation was created, if created by AWS Trusted Advisor Priority</p>
1285
1285
  * @public
1286
1286
  */
1287
- createdAt?: Date;
1287
+ createdAt?: Date | undefined;
1288
1288
  /**
1289
1289
  * <p>When the Recommendation was last updated</p>
1290
1290
  * @public
1291
1291
  */
1292
- lastUpdatedAt?: Date;
1292
+ lastUpdatedAt?: Date | undefined;
1293
1293
  /**
1294
1294
  * <p>The ARN of the Recommendation</p>
1295
1295
  * @public
@@ -1306,7 +1306,7 @@ export interface ListRecommendationsResponse {
1306
1306
  * </p>
1307
1307
  * @public
1308
1308
  */
1309
- nextToken?: string;
1309
+ nextToken?: string | undefined;
1310
1310
  /**
1311
1311
  * <p>The list of Recommendations</p>
1312
1312
  * @public
@@ -1340,12 +1340,12 @@ export interface UpdateOrganizationRecommendationLifecycleRequest {
1340
1340
  * <p>Reason for the lifecycle stage change</p>
1341
1341
  * @public
1342
1342
  */
1343
- updateReason?: string;
1343
+ updateReason?: string | undefined;
1344
1344
  /**
1345
1345
  * <p>Reason code for the lifecycle state change</p>
1346
1346
  * @public
1347
1347
  */
1348
- updateReasonCode?: UpdateRecommendationLifecycleStageReasonCode;
1348
+ updateReasonCode?: UpdateRecommendationLifecycleStageReasonCode | undefined;
1349
1349
  /**
1350
1350
  * <p>The Recommendation identifier for AWS Trusted Advisor Priority recommendations</p>
1351
1351
  * @public
@@ -1365,12 +1365,12 @@ export interface UpdateRecommendationLifecycleRequest {
1365
1365
  * <p>Reason for the lifecycle stage change</p>
1366
1366
  * @public
1367
1367
  */
1368
- updateReason?: string;
1368
+ updateReason?: string | undefined;
1369
1369
  /**
1370
1370
  * <p>Reason code for the lifecycle state change</p>
1371
1371
  * @public
1372
1372
  */
1373
- updateReasonCode?: UpdateRecommendationLifecycleStageReasonCode;
1373
+ updateReasonCode?: UpdateRecommendationLifecycleStageReasonCode | undefined;
1374
1374
  /**
1375
1375
  * <p>The Recommendation identifier for AWS Trusted Advisor Priority recommendations</p>
1376
1376
  * @public
@@ -27,14 +27,14 @@ export declare const UpdateRecommendationLifecycleStageReasonCode: {
27
27
  export type UpdateRecommendationLifecycleStageReasonCode =
28
28
  (typeof UpdateRecommendationLifecycleStageReasonCode)[keyof typeof UpdateRecommendationLifecycleStageReasonCode];
29
29
  export interface AccountRecommendationLifecycleSummary {
30
- accountId?: string;
31
- accountRecommendationArn?: string;
32
- lifecycleStage?: RecommendationLifecycleStage;
33
- updatedOnBehalfOf?: string;
34
- updatedOnBehalfOfJobTitle?: string;
35
- updateReason?: string;
36
- updateReasonCode?: UpdateRecommendationLifecycleStageReasonCode;
37
- lastUpdatedAt?: Date;
30
+ accountId?: string | undefined;
31
+ accountRecommendationArn?: string | undefined;
32
+ lifecycleStage?: RecommendationLifecycleStage | undefined;
33
+ updatedOnBehalfOf?: string | undefined;
34
+ updatedOnBehalfOfJobTitle?: string | undefined;
35
+ updateReason?: string | undefined;
36
+ updateReasonCode?: UpdateRecommendationLifecycleStageReasonCode | undefined;
37
+ lastUpdatedAt?: Date | undefined;
38
38
  }
39
39
  export interface RecommendationResourceExclusion {
40
40
  arn: string | undefined;
@@ -46,9 +46,9 @@ export interface BatchUpdateRecommendationResourceExclusionRequest {
46
46
  | undefined;
47
47
  }
48
48
  export interface UpdateRecommendationResourceExclusionError {
49
- arn?: string;
50
- errorCode?: string;
51
- errorMessage?: string;
49
+ arn?: string | undefined;
50
+ errorCode?: string | undefined;
51
+ errorMessage?: string | undefined;
52
52
  }
53
53
  export interface BatchUpdateRecommendationResourceExclusionResponse {
54
54
  batchUpdateRecommendationResourceExclusionErrors:
@@ -136,7 +136,7 @@ export interface RecommendationCostOptimizingAggregates {
136
136
  estimatedPercentMonthlySavings: number | undefined;
137
137
  }
138
138
  export interface RecommendationPillarSpecificAggregates {
139
- costOptimizing?: RecommendationCostOptimizingAggregates;
139
+ costOptimizing?: RecommendationCostOptimizingAggregates | undefined;
140
140
  }
141
141
  export interface RecommendationResourcesAggregates {
142
142
  okCount: number | undefined;
@@ -159,28 +159,28 @@ export type RecommendationType =
159
159
  export interface OrganizationRecommendation {
160
160
  id: string | undefined;
161
161
  type: RecommendationType | undefined;
162
- checkArn?: string;
162
+ checkArn?: string | undefined;
163
163
  status: RecommendationStatus | undefined;
164
- lifecycleStage?: RecommendationLifecycleStage;
164
+ lifecycleStage?: RecommendationLifecycleStage | undefined;
165
165
  pillars: RecommendationPillar[] | undefined;
166
166
  source: RecommendationSource | undefined;
167
- awsServices?: string[];
167
+ awsServices?: string[] | undefined;
168
168
  name: string | undefined;
169
169
  resourcesAggregates: RecommendationResourcesAggregates | undefined;
170
- pillarSpecificAggregates?: RecommendationPillarSpecificAggregates;
171
- createdAt?: Date;
172
- lastUpdatedAt?: Date;
170
+ pillarSpecificAggregates?: RecommendationPillarSpecificAggregates | undefined;
171
+ createdAt?: Date | undefined;
172
+ lastUpdatedAt?: Date | undefined;
173
173
  arn: string | undefined;
174
174
  description: string | undefined;
175
- createdBy?: string;
176
- updatedOnBehalfOf?: string;
177
- updatedOnBehalfOfJobTitle?: string;
178
- updateReason?: string;
179
- updateReasonCode?: UpdateRecommendationLifecycleStageReasonCode;
180
- resolvedAt?: Date;
175
+ createdBy?: string | undefined;
176
+ updatedOnBehalfOf?: string | undefined;
177
+ updatedOnBehalfOfJobTitle?: string | undefined;
178
+ updateReason?: string | undefined;
179
+ updateReasonCode?: UpdateRecommendationLifecycleStageReasonCode | undefined;
180
+ resolvedAt?: Date | undefined;
181
181
  }
182
182
  export interface GetOrganizationRecommendationResponse {
183
- organizationRecommendation?: OrganizationRecommendation;
183
+ organizationRecommendation?: OrganizationRecommendation | undefined;
184
184
  }
185
185
  export declare class ResourceNotFoundException extends __BaseException {
186
186
  readonly name: "ResourceNotFoundException";
@@ -195,28 +195,28 @@ export interface GetRecommendationRequest {
195
195
  export interface Recommendation {
196
196
  id: string | undefined;
197
197
  type: RecommendationType | undefined;
198
- checkArn?: string;
198
+ checkArn?: string | undefined;
199
199
  status: RecommendationStatus | undefined;
200
- lifecycleStage?: RecommendationLifecycleStage;
200
+ lifecycleStage?: RecommendationLifecycleStage | undefined;
201
201
  pillars: RecommendationPillar[] | undefined;
202
202
  source: RecommendationSource | undefined;
203
- awsServices?: string[];
203
+ awsServices?: string[] | undefined;
204
204
  name: string | undefined;
205
205
  resourcesAggregates: RecommendationResourcesAggregates | undefined;
206
- pillarSpecificAggregates?: RecommendationPillarSpecificAggregates;
207
- createdAt?: Date;
208
- lastUpdatedAt?: Date;
206
+ pillarSpecificAggregates?: RecommendationPillarSpecificAggregates | undefined;
207
+ createdAt?: Date | undefined;
208
+ lastUpdatedAt?: Date | undefined;
209
209
  arn: string | undefined;
210
210
  description: string | undefined;
211
- createdBy?: string;
212
- updatedOnBehalfOf?: string;
213
- updatedOnBehalfOfJobTitle?: string;
214
- updateReason?: string;
215
- updateReasonCode?: UpdateRecommendationLifecycleStageReasonCode;
216
- resolvedAt?: Date;
211
+ createdBy?: string | undefined;
212
+ updatedOnBehalfOf?: string | undefined;
213
+ updatedOnBehalfOfJobTitle?: string | undefined;
214
+ updateReason?: string | undefined;
215
+ updateReasonCode?: UpdateRecommendationLifecycleStageReasonCode | undefined;
216
+ resolvedAt?: Date | undefined;
217
217
  }
218
218
  export interface GetRecommendationResponse {
219
- recommendation?: Recommendation;
219
+ recommendation?: Recommendation | undefined;
220
220
  }
221
221
  export declare const RecommendationLanguage: {
222
222
  readonly BAHASA_INDONESIA: "id";
@@ -234,25 +234,25 @@ export declare const RecommendationLanguage: {
234
234
  export type RecommendationLanguage =
235
235
  (typeof RecommendationLanguage)[keyof typeof RecommendationLanguage];
236
236
  export interface ListChecksRequest {
237
- nextToken?: string;
238
- maxResults?: number;
239
- pillar?: RecommendationPillar;
240
- awsService?: string;
241
- source?: RecommendationSource;
242
- language?: RecommendationLanguage;
237
+ nextToken?: string | undefined;
238
+ maxResults?: number | undefined;
239
+ pillar?: RecommendationPillar | undefined;
240
+ awsService?: string | undefined;
241
+ source?: RecommendationSource | undefined;
242
+ language?: RecommendationLanguage | undefined;
243
243
  }
244
244
  export interface ListChecksResponse {
245
- nextToken?: string;
245
+ nextToken?: string | undefined;
246
246
  checkSummaries: CheckSummary[] | undefined;
247
247
  }
248
248
  export interface ListOrganizationRecommendationAccountsRequest {
249
- nextToken?: string;
250
- maxResults?: number;
249
+ nextToken?: string | undefined;
250
+ maxResults?: number | undefined;
251
251
  organizationRecommendationIdentifier: string | undefined;
252
- affectedAccountId?: string;
252
+ affectedAccountId?: string | undefined;
253
253
  }
254
254
  export interface ListOrganizationRecommendationAccountsResponse {
255
- nextToken?: string;
255
+ nextToken?: string | undefined;
256
256
  accountRecommendationLifecycleSummaries:
257
257
  | AccountRecommendationLifecycleSummary[]
258
258
  | undefined;
@@ -265,13 +265,13 @@ export declare const ResourceStatus: {
265
265
  export type ResourceStatus =
266
266
  (typeof ResourceStatus)[keyof typeof ResourceStatus];
267
267
  export interface ListOrganizationRecommendationResourcesRequest {
268
- nextToken?: string;
269
- maxResults?: number;
270
- status?: ResourceStatus;
271
- exclusionStatus?: ExclusionStatus;
272
- regionCode?: string;
268
+ nextToken?: string | undefined;
269
+ maxResults?: number | undefined;
270
+ status?: ResourceStatus | undefined;
271
+ exclusionStatus?: ExclusionStatus | undefined;
272
+ regionCode?: string | undefined;
273
273
  organizationRecommendationIdentifier: string | undefined;
274
- affectedAccountId?: string;
274
+ affectedAccountId?: string | undefined;
275
275
  }
276
276
  export interface OrganizationRecommendationResourceSummary {
277
277
  id: string | undefined;
@@ -281,56 +281,56 @@ export interface OrganizationRecommendationResourceSummary {
281
281
  status: ResourceStatus | undefined;
282
282
  metadata: Record<string, string> | undefined;
283
283
  lastUpdatedAt: Date | undefined;
284
- exclusionStatus?: ExclusionStatus;
285
- accountId?: string;
284
+ exclusionStatus?: ExclusionStatus | undefined;
285
+ accountId?: string | undefined;
286
286
  recommendationArn: string | undefined;
287
287
  }
288
288
  export interface ListOrganizationRecommendationResourcesResponse {
289
- nextToken?: string;
289
+ nextToken?: string | undefined;
290
290
  organizationRecommendationResourceSummaries:
291
291
  | OrganizationRecommendationResourceSummary[]
292
292
  | undefined;
293
293
  }
294
294
  export interface ListOrganizationRecommendationsRequest {
295
- nextToken?: string;
296
- maxResults?: number;
297
- type?: RecommendationType;
298
- status?: RecommendationStatus;
299
- pillar?: RecommendationPillar;
300
- awsService?: string;
301
- source?: RecommendationSource;
302
- checkIdentifier?: string;
303
- afterLastUpdatedAt?: Date;
304
- beforeLastUpdatedAt?: Date;
295
+ nextToken?: string | undefined;
296
+ maxResults?: number | undefined;
297
+ type?: RecommendationType | undefined;
298
+ status?: RecommendationStatus | undefined;
299
+ pillar?: RecommendationPillar | undefined;
300
+ awsService?: string | undefined;
301
+ source?: RecommendationSource | undefined;
302
+ checkIdentifier?: string | undefined;
303
+ afterLastUpdatedAt?: Date | undefined;
304
+ beforeLastUpdatedAt?: Date | undefined;
305
305
  }
306
306
  export interface OrganizationRecommendationSummary {
307
307
  id: string | undefined;
308
308
  type: RecommendationType | undefined;
309
- checkArn?: string;
309
+ checkArn?: string | undefined;
310
310
  status: RecommendationStatus | undefined;
311
- lifecycleStage?: RecommendationLifecycleStage;
311
+ lifecycleStage?: RecommendationLifecycleStage | undefined;
312
312
  pillars: RecommendationPillar[] | undefined;
313
313
  source: RecommendationSource | undefined;
314
- awsServices?: string[];
314
+ awsServices?: string[] | undefined;
315
315
  name: string | undefined;
316
316
  resourcesAggregates: RecommendationResourcesAggregates | undefined;
317
- pillarSpecificAggregates?: RecommendationPillarSpecificAggregates;
318
- createdAt?: Date;
319
- lastUpdatedAt?: Date;
317
+ pillarSpecificAggregates?: RecommendationPillarSpecificAggregates | undefined;
318
+ createdAt?: Date | undefined;
319
+ lastUpdatedAt?: Date | undefined;
320
320
  arn: string | undefined;
321
321
  }
322
322
  export interface ListOrganizationRecommendationsResponse {
323
- nextToken?: string;
323
+ nextToken?: string | undefined;
324
324
  organizationRecommendationSummaries:
325
325
  | OrganizationRecommendationSummary[]
326
326
  | undefined;
327
327
  }
328
328
  export interface ListRecommendationResourcesRequest {
329
- nextToken?: string;
330
- maxResults?: number;
331
- status?: ResourceStatus;
332
- exclusionStatus?: ExclusionStatus;
333
- regionCode?: string;
329
+ nextToken?: string | undefined;
330
+ maxResults?: number | undefined;
331
+ status?: ResourceStatus | undefined;
332
+ exclusionStatus?: ExclusionStatus | undefined;
333
+ regionCode?: string | undefined;
334
334
  recommendationIdentifier: string | undefined;
335
335
  }
336
336
  export interface RecommendationResourceSummary {
@@ -341,43 +341,43 @@ export interface RecommendationResourceSummary {
341
341
  status: ResourceStatus | undefined;
342
342
  metadata: Record<string, string> | undefined;
343
343
  lastUpdatedAt: Date | undefined;
344
- exclusionStatus?: ExclusionStatus;
344
+ exclusionStatus?: ExclusionStatus | undefined;
345
345
  recommendationArn: string | undefined;
346
346
  }
347
347
  export interface ListRecommendationResourcesResponse {
348
- nextToken?: string;
348
+ nextToken?: string | undefined;
349
349
  recommendationResourceSummaries: RecommendationResourceSummary[] | undefined;
350
350
  }
351
351
  export interface ListRecommendationsRequest {
352
- nextToken?: string;
353
- maxResults?: number;
354
- type?: RecommendationType;
355
- status?: RecommendationStatus;
356
- pillar?: RecommendationPillar;
357
- awsService?: string;
358
- source?: RecommendationSource;
359
- checkIdentifier?: string;
360
- afterLastUpdatedAt?: Date;
361
- beforeLastUpdatedAt?: Date;
352
+ nextToken?: string | undefined;
353
+ maxResults?: number | undefined;
354
+ type?: RecommendationType | undefined;
355
+ status?: RecommendationStatus | undefined;
356
+ pillar?: RecommendationPillar | undefined;
357
+ awsService?: string | undefined;
358
+ source?: RecommendationSource | undefined;
359
+ checkIdentifier?: string | undefined;
360
+ afterLastUpdatedAt?: Date | undefined;
361
+ beforeLastUpdatedAt?: Date | undefined;
362
362
  }
363
363
  export interface RecommendationSummary {
364
364
  id: string | undefined;
365
365
  type: RecommendationType | undefined;
366
- checkArn?: string;
366
+ checkArn?: string | undefined;
367
367
  status: RecommendationStatus | undefined;
368
- lifecycleStage?: RecommendationLifecycleStage;
368
+ lifecycleStage?: RecommendationLifecycleStage | undefined;
369
369
  pillars: RecommendationPillar[] | undefined;
370
370
  source: RecommendationSource | undefined;
371
- awsServices?: string[];
371
+ awsServices?: string[] | undefined;
372
372
  name: string | undefined;
373
373
  resourcesAggregates: RecommendationResourcesAggregates | undefined;
374
- pillarSpecificAggregates?: RecommendationPillarSpecificAggregates;
375
- createdAt?: Date;
376
- lastUpdatedAt?: Date;
374
+ pillarSpecificAggregates?: RecommendationPillarSpecificAggregates | undefined;
375
+ createdAt?: Date | undefined;
376
+ lastUpdatedAt?: Date | undefined;
377
377
  arn: string | undefined;
378
378
  }
379
379
  export interface ListRecommendationsResponse {
380
- nextToken?: string;
380
+ nextToken?: string | undefined;
381
381
  recommendationSummaries: RecommendationSummary[] | undefined;
382
382
  }
383
383
  export declare const UpdateRecommendationLifecycleStage: {
@@ -390,14 +390,14 @@ export type UpdateRecommendationLifecycleStage =
390
390
  (typeof UpdateRecommendationLifecycleStage)[keyof typeof UpdateRecommendationLifecycleStage];
391
391
  export interface UpdateOrganizationRecommendationLifecycleRequest {
392
392
  lifecycleStage: UpdateRecommendationLifecycleStage | undefined;
393
- updateReason?: string;
394
- updateReasonCode?: UpdateRecommendationLifecycleStageReasonCode;
393
+ updateReason?: string | undefined;
394
+ updateReasonCode?: UpdateRecommendationLifecycleStageReasonCode | undefined;
395
395
  organizationRecommendationIdentifier: string | undefined;
396
396
  }
397
397
  export interface UpdateRecommendationLifecycleRequest {
398
398
  lifecycleStage: UpdateRecommendationLifecycleStage | undefined;
399
- updateReason?: string;
400
- updateReasonCode?: UpdateRecommendationLifecycleStageReasonCode;
399
+ updateReason?: string | undefined;
400
+ updateReasonCode?: UpdateRecommendationLifecycleStageReasonCode | undefined;
401
401
  recommendationIdentifier: string | undefined;
402
402
  }
403
403
  export declare const AccountRecommendationLifecycleSummaryFilterSensitiveLog: (
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-trustedadvisor",
3
3
  "description": "AWS SDK for JavaScript Trustedadvisor Client for Node.js, Browser and React Native",
4
- "version": "3.687.0",
4
+ "version": "3.692.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-trustedadvisor",
@@ -20,43 +20,43 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.687.0",
24
- "@aws-sdk/client-sts": "3.687.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.687.0",
27
- "@aws-sdk/middleware-host-header": "3.686.0",
28
- "@aws-sdk/middleware-logger": "3.686.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.687.0",
31
- "@aws-sdk/region-config-resolver": "3.686.0",
32
- "@aws-sdk/types": "3.686.0",
33
- "@aws-sdk/util-endpoints": "3.686.0",
34
- "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.687.0",
36
- "@smithy/config-resolver": "^3.0.10",
37
- "@smithy/core": "^2.5.1",
38
- "@smithy/fetch-http-handler": "^4.0.0",
39
- "@smithy/hash-node": "^3.0.8",
40
- "@smithy/invalid-dependency": "^3.0.8",
41
- "@smithy/middleware-content-length": "^3.0.10",
42
- "@smithy/middleware-endpoint": "^3.2.1",
43
- "@smithy/middleware-retry": "^3.0.25",
44
- "@smithy/middleware-serde": "^3.0.8",
45
- "@smithy/middleware-stack": "^3.0.8",
46
- "@smithy/node-config-provider": "^3.1.9",
47
- "@smithy/node-http-handler": "^3.2.5",
48
- "@smithy/protocol-http": "^4.1.5",
49
- "@smithy/smithy-client": "^3.4.2",
50
- "@smithy/types": "^3.6.0",
51
- "@smithy/url-parser": "^3.0.8",
23
+ "@aws-sdk/client-sso-oidc": "3.692.0",
24
+ "@aws-sdk/client-sts": "3.692.0",
25
+ "@aws-sdk/core": "3.692.0",
26
+ "@aws-sdk/credential-provider-node": "3.692.0",
27
+ "@aws-sdk/middleware-host-header": "3.692.0",
28
+ "@aws-sdk/middleware-logger": "3.692.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.692.0",
30
+ "@aws-sdk/middleware-user-agent": "3.692.0",
31
+ "@aws-sdk/region-config-resolver": "3.692.0",
32
+ "@aws-sdk/types": "3.692.0",
33
+ "@aws-sdk/util-endpoints": "3.692.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.692.0",
35
+ "@aws-sdk/util-user-agent-node": "3.692.0",
36
+ "@smithy/config-resolver": "^3.0.11",
37
+ "@smithy/core": "^2.5.2",
38
+ "@smithy/fetch-http-handler": "^4.1.0",
39
+ "@smithy/hash-node": "^3.0.9",
40
+ "@smithy/invalid-dependency": "^3.0.9",
41
+ "@smithy/middleware-content-length": "^3.0.11",
42
+ "@smithy/middleware-endpoint": "^3.2.2",
43
+ "@smithy/middleware-retry": "^3.0.26",
44
+ "@smithy/middleware-serde": "^3.0.9",
45
+ "@smithy/middleware-stack": "^3.0.9",
46
+ "@smithy/node-config-provider": "^3.1.10",
47
+ "@smithy/node-http-handler": "^3.3.0",
48
+ "@smithy/protocol-http": "^4.1.6",
49
+ "@smithy/smithy-client": "^3.4.3",
50
+ "@smithy/types": "^3.7.0",
51
+ "@smithy/url-parser": "^3.0.9",
52
52
  "@smithy/util-base64": "^3.0.0",
53
53
  "@smithy/util-body-length-browser": "^3.0.0",
54
54
  "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.25",
56
- "@smithy/util-defaults-mode-node": "^3.0.25",
57
- "@smithy/util-endpoints": "^2.1.4",
58
- "@smithy/util-middleware": "^3.0.8",
59
- "@smithy/util-retry": "^3.0.8",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.26",
56
+ "@smithy/util-defaults-mode-node": "^3.0.26",
57
+ "@smithy/util-endpoints": "^2.1.5",
58
+ "@smithy/util-middleware": "^3.0.9",
59
+ "@smithy/util-retry": "^3.0.9",
60
60
  "@smithy/util-utf8": "^3.0.0",
61
61
  "tslib": "^2.6.2"
62
62
  },