@aws-sdk/client-wellarchitected 3.428.0 → 3.430.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.
@@ -27,7 +27,7 @@ export declare const AdditionalResourceType: {
27
27
  export type AdditionalResourceType =
28
28
  (typeof AdditionalResourceType)[keyof typeof AdditionalResourceType];
29
29
  export interface AdditionalResources {
30
- Type?: AdditionalResourceType | string;
30
+ Type?: AdditionalResourceType;
31
31
  Content?: ChoiceContent[];
32
32
  }
33
33
  export declare const ChoiceReason: {
@@ -46,8 +46,8 @@ export declare const ChoiceStatus: {
46
46
  export type ChoiceStatus = (typeof ChoiceStatus)[keyof typeof ChoiceStatus];
47
47
  export interface ChoiceAnswer {
48
48
  ChoiceId?: string;
49
- Status?: ChoiceStatus | string;
50
- Reason?: ChoiceReason | string;
49
+ Status?: ChoiceStatus;
50
+ Reason?: ChoiceReason;
51
51
  Notes?: string;
52
52
  }
53
53
  export interface Choice {
@@ -86,14 +86,14 @@ export interface Answer {
86
86
  SelectedChoices?: string[];
87
87
  ChoiceAnswers?: ChoiceAnswer[];
88
88
  IsApplicable?: boolean;
89
- Risk?: Risk | string;
89
+ Risk?: Risk;
90
90
  Notes?: string;
91
- Reason?: AnswerReason | string;
91
+ Reason?: AnswerReason;
92
92
  }
93
93
  export interface ChoiceAnswerSummary {
94
94
  ChoiceId?: string;
95
- Status?: ChoiceStatus | string;
96
- Reason?: ChoiceReason | string;
95
+ Status?: ChoiceStatus;
96
+ Reason?: ChoiceReason;
97
97
  }
98
98
  export declare const QuestionType: {
99
99
  readonly NON_PRIORITIZED: "NON_PRIORITIZED";
@@ -108,9 +108,9 @@ export interface AnswerSummary {
108
108
  SelectedChoices?: string[];
109
109
  ChoiceAnswerSummaries?: ChoiceAnswerSummary[];
110
110
  IsApplicable?: boolean;
111
- Risk?: Risk | string;
112
- Reason?: AnswerReason | string;
113
- QuestionType?: QuestionType | string;
111
+ Risk?: Risk;
112
+ Reason?: AnswerReason;
113
+ QuestionType?: QuestionType;
114
114
  }
115
115
  export interface AssociateLensesInput {
116
116
  WorkloadId: string | undefined;
@@ -168,7 +168,7 @@ export declare class ValidationException extends __BaseException {
168
168
  readonly name: "ValidationException";
169
169
  readonly $fault: "client";
170
170
  Message: string | undefined;
171
- Reason?: ValidationExceptionReason | string;
171
+ Reason?: ValidationExceptionReason;
172
172
  Fields?: ValidationExceptionField[];
173
173
  constructor(
174
174
  opts: __ExceptionOptionType<ValidationException, __BaseException>
@@ -198,29 +198,29 @@ export interface CheckDetail {
198
198
  Id?: string;
199
199
  Name?: string;
200
200
  Description?: string;
201
- Provider?: CheckProvider | string;
201
+ Provider?: CheckProvider;
202
202
  LensArn?: string;
203
203
  PillarId?: string;
204
204
  QuestionId?: string;
205
205
  ChoiceId?: string;
206
- Status?: CheckStatus | string;
206
+ Status?: CheckStatus;
207
207
  AccountId?: string;
208
208
  FlaggedResources?: number;
209
- Reason?: CheckFailureReason | string;
209
+ Reason?: CheckFailureReason;
210
210
  UpdatedAt?: Date;
211
211
  }
212
212
  export interface CheckSummary {
213
213
  Id?: string;
214
214
  Name?: string;
215
- Provider?: CheckProvider | string;
215
+ Provider?: CheckProvider;
216
216
  Description?: string;
217
217
  UpdatedAt?: Date;
218
218
  LensArn?: string;
219
219
  PillarId?: string;
220
220
  QuestionId?: string;
221
221
  ChoiceId?: string;
222
- Status?: CheckStatus | string;
223
- AccountSummary?: Record<string, number>;
222
+ Status?: CheckStatus;
223
+ AccountSummary?: Record<CheckStatus, number>;
224
224
  }
225
225
  export interface ChoiceImprovementPlan {
226
226
  ChoiceId?: string;
@@ -228,32 +228,32 @@ export interface ChoiceImprovementPlan {
228
228
  ImprovementPlanUrl?: string;
229
229
  }
230
230
  export interface ChoiceUpdate {
231
- Status: ChoiceStatus | string | undefined;
232
- Reason?: ChoiceReason | string;
231
+ Status: ChoiceStatus | undefined;
232
+ Reason?: ChoiceReason;
233
233
  Notes?: string;
234
234
  }
235
235
  export interface QuestionMetric {
236
236
  QuestionId?: string;
237
- Risk?: Risk | string;
237
+ Risk?: Risk;
238
238
  BestPractices?: BestPractice[];
239
239
  }
240
240
  export interface PillarMetric {
241
241
  PillarId?: string;
242
- RiskCounts?: Record<string, number>;
242
+ RiskCounts?: Record<Risk, number>;
243
243
  Questions?: QuestionMetric[];
244
244
  }
245
245
  export interface LensMetric {
246
246
  LensArn?: string;
247
247
  Pillars?: PillarMetric[];
248
- RiskCounts?: Record<string, number>;
248
+ RiskCounts?: Record<Risk, number>;
249
249
  }
250
250
  export declare const MetricType: {
251
251
  readonly WORKLOAD: "WORKLOAD";
252
252
  };
253
253
  export type MetricType = (typeof MetricType)[keyof typeof MetricType];
254
254
  export interface ConsolidatedReportMetric {
255
- MetricType?: MetricType | string;
256
- RiskCounts?: Record<string, number>;
255
+ MetricType?: MetricType;
256
+ RiskCounts?: Record<Risk, number>;
257
257
  WorkloadId?: string;
258
258
  WorkloadName?: string;
259
259
  WorkloadArn?: string;
@@ -357,8 +357,8 @@ export declare const DefinitionType: {
357
357
  export type DefinitionType =
358
358
  (typeof DefinitionType)[keyof typeof DefinitionType];
359
359
  export interface WorkloadDiscoveryConfig {
360
- TrustedAdvisorIntegrationStatus?: TrustedAdvisorIntegrationStatus | string;
361
- WorkloadResourceDefinition?: (DefinitionType | string)[];
360
+ TrustedAdvisorIntegrationStatus?: TrustedAdvisorIntegrationStatus;
361
+ WorkloadResourceDefinition?: DefinitionType[];
362
362
  }
363
363
  export declare const WorkloadEnvironment: {
364
364
  readonly PREPRODUCTION: "PREPRODUCTION";
@@ -369,7 +369,7 @@ export type WorkloadEnvironment =
369
369
  export interface CreateWorkloadInput {
370
370
  WorkloadName: string | undefined;
371
371
  Description: string | undefined;
372
- Environment: WorkloadEnvironment | string | undefined;
372
+ Environment: WorkloadEnvironment | undefined;
373
373
  AccountIds?: string[];
374
374
  AwsRegions?: string[];
375
375
  NonAwsRegions?: string[];
@@ -400,7 +400,7 @@ export type PermissionType =
400
400
  export interface CreateWorkloadShareInput {
401
401
  WorkloadId: string | undefined;
402
402
  SharedWith: string | undefined;
403
- PermissionType: PermissionType | string | undefined;
403
+ PermissionType: PermissionType | undefined;
404
404
  ClientRequestToken?: string;
405
405
  }
406
406
  export interface CreateWorkloadShareOutput {
@@ -417,7 +417,7 @@ export type LensStatusType =
417
417
  export interface DeleteLensInput {
418
418
  LensAlias: string | undefined;
419
419
  ClientRequestToken?: string;
420
- LensStatus: LensStatusType | string | undefined;
420
+ LensStatus: LensStatusType | undefined;
421
421
  }
422
422
  export interface DeleteLensShareInput {
423
423
  ShareId: string | undefined;
@@ -498,7 +498,7 @@ export declare const ReportFormat: {
498
498
  };
499
499
  export type ReportFormat = (typeof ReportFormat)[keyof typeof ReportFormat];
500
500
  export interface GetConsolidatedReportInput {
501
- Format: ReportFormat | string | undefined;
501
+ Format: ReportFormat | undefined;
502
502
  IncludeSharedResources?: boolean;
503
503
  NextToken?: string;
504
504
  MaxResults?: number;
@@ -541,8 +541,8 @@ export interface PillarReviewSummary {
541
541
  PillarId?: string;
542
542
  PillarName?: string;
543
543
  Notes?: string;
544
- RiskCounts?: Record<string, number>;
545
- PrioritizedRiskCounts?: Record<string, number>;
544
+ RiskCounts?: Record<Risk, number>;
545
+ PrioritizedRiskCounts?: Record<Risk, number>;
546
546
  }
547
547
  export interface WorkloadProfile {
548
548
  ProfileArn?: string;
@@ -553,14 +553,14 @@ export interface LensReview {
553
553
  LensArn?: string;
554
554
  LensVersion?: string;
555
555
  LensName?: string;
556
- LensStatus?: LensStatus | string;
556
+ LensStatus?: LensStatus;
557
557
  PillarReviewSummaries?: PillarReviewSummary[];
558
558
  UpdatedAt?: Date;
559
559
  Notes?: string;
560
- RiskCounts?: Record<string, number>;
560
+ RiskCounts?: Record<Risk, number>;
561
561
  NextToken?: string;
562
562
  Profiles?: WorkloadProfile[];
563
- PrioritizedRiskCounts?: Record<string, number>;
563
+ PrioritizedRiskCounts?: Record<Risk, number>;
564
564
  }
565
565
  export interface GetLensReviewOutput {
566
566
  WorkloadId?: string;
@@ -590,12 +590,12 @@ export interface GetLensVersionDifferenceInput {
590
590
  export interface QuestionDifference {
591
591
  QuestionId?: string;
592
592
  QuestionTitle?: string;
593
- DifferenceStatus?: DifferenceStatus | string;
593
+ DifferenceStatus?: DifferenceStatus;
594
594
  }
595
595
  export interface PillarDifference {
596
596
  PillarId?: string;
597
597
  PillarName?: string;
598
- DifferenceStatus?: DifferenceStatus | string;
598
+ DifferenceStatus?: DifferenceStatus;
599
599
  QuestionDifferences?: QuestionDifference[];
600
600
  }
601
601
  export interface VersionDifferences {
@@ -627,7 +627,7 @@ export interface Workload {
627
627
  WorkloadArn?: string;
628
628
  WorkloadName?: string;
629
629
  Description?: string;
630
- Environment?: WorkloadEnvironment | string;
630
+ Environment?: WorkloadEnvironment;
631
631
  UpdatedAt?: Date;
632
632
  AccountIds?: string[];
633
633
  AwsRegions?: string[];
@@ -639,8 +639,8 @@ export interface Workload {
639
639
  IndustryType?: string;
640
640
  Industry?: string;
641
641
  Notes?: string;
642
- ImprovementStatus?: WorkloadImprovementStatus | string;
643
- RiskCounts?: Record<string, number>;
642
+ ImprovementStatus?: WorkloadImprovementStatus;
643
+ RiskCounts?: Record<Risk, number>;
644
644
  PillarPriorities?: string[];
645
645
  Lenses?: string[];
646
646
  Owner?: string;
@@ -649,7 +649,7 @@ export interface Workload {
649
649
  DiscoveryConfig?: WorkloadDiscoveryConfig;
650
650
  Applications?: string[];
651
651
  Profiles?: WorkloadProfile[];
652
- PrioritizedRiskCounts?: Record<string, number>;
652
+ PrioritizedRiskCounts?: Record<Risk, number>;
653
653
  }
654
654
  export interface Milestone {
655
655
  MilestoneNumber?: number;
@@ -735,13 +735,13 @@ export interface ReviewTemplate {
735
735
  Description?: string;
736
736
  Lenses?: string[];
737
737
  Notes?: string;
738
- QuestionCounts?: Record<string, number>;
738
+ QuestionCounts?: Record<Question, number>;
739
739
  Owner?: string;
740
740
  UpdatedAt?: Date;
741
741
  TemplateArn?: string;
742
742
  TemplateName?: string;
743
743
  Tags?: Record<string, string>;
744
- UpdateStatus?: ReviewTemplateUpdateStatus | string;
744
+ UpdateStatus?: ReviewTemplateUpdateStatus;
745
745
  ShareInvitationId?: string;
746
746
  }
747
747
  export interface GetReviewTemplateOutput {
@@ -770,9 +770,9 @@ export interface ReviewTemplateAnswer {
770
770
  SelectedChoices?: string[];
771
771
  ChoiceAnswers?: ChoiceAnswer[];
772
772
  IsApplicable?: boolean;
773
- AnswerStatus?: ReviewTemplateAnswerStatus | string;
773
+ AnswerStatus?: ReviewTemplateAnswerStatus;
774
774
  Notes?: string;
775
- Reason?: AnswerReason | string;
775
+ Reason?: AnswerReason;
776
776
  }
777
777
  export interface GetReviewTemplateAnswerOutput {
778
778
  TemplateArn?: string;
@@ -787,18 +787,18 @@ export interface ReviewTemplatePillarReviewSummary {
787
787
  PillarId?: string;
788
788
  PillarName?: string;
789
789
  Notes?: string;
790
- QuestionCounts?: Record<string, number>;
790
+ QuestionCounts?: Record<Question, number>;
791
791
  }
792
792
  export interface ReviewTemplateLensReview {
793
793
  LensAlias?: string;
794
794
  LensArn?: string;
795
795
  LensVersion?: string;
796
796
  LensName?: string;
797
- LensStatus?: LensStatus | string;
797
+ LensStatus?: LensStatus;
798
798
  PillarReviewSummaries?: ReviewTemplatePillarReviewSummary[];
799
799
  UpdatedAt?: Date;
800
800
  Notes?: string;
801
- QuestionCounts?: Record<string, number>;
801
+ QuestionCounts?: Record<Question, number>;
802
802
  NextToken?: string;
803
803
  }
804
804
  export interface GetReviewTemplateLensReviewOutput {
@@ -826,13 +826,13 @@ export type ImportLensStatus =
826
826
  (typeof ImportLensStatus)[keyof typeof ImportLensStatus];
827
827
  export interface ImportLensOutput {
828
828
  LensArn?: string;
829
- Status?: ImportLensStatus | string;
829
+ Status?: ImportLensStatus;
830
830
  }
831
831
  export interface ImprovementSummary {
832
832
  QuestionId?: string;
833
833
  PillarId?: string;
834
834
  QuestionTitle?: string;
835
- Risk?: Risk | string;
835
+ Risk?: Risk;
836
836
  ImprovementPlanUrl?: string;
837
837
  ImprovementPlans?: ChoiceImprovementPlan[];
838
838
  }
@@ -841,11 +841,11 @@ export interface LensReviewSummary {
841
841
  LensArn?: string;
842
842
  LensVersion?: string;
843
843
  LensName?: string;
844
- LensStatus?: LensStatus | string;
844
+ LensStatus?: LensStatus;
845
845
  UpdatedAt?: Date;
846
- RiskCounts?: Record<string, number>;
846
+ RiskCounts?: Record<Risk, number>;
847
847
  Profiles?: WorkloadProfile[];
848
- PrioritizedRiskCounts?: Record<string, number>;
848
+ PrioritizedRiskCounts?: Record<Risk, number>;
849
849
  }
850
850
  export declare const ShareStatus: {
851
851
  readonly ACCEPTED: "ACCEPTED";
@@ -861,7 +861,7 @@ export type ShareStatus = (typeof ShareStatus)[keyof typeof ShareStatus];
861
861
  export interface LensShareSummary {
862
862
  ShareId?: string;
863
863
  SharedWith?: string;
864
- Status?: ShareStatus | string;
864
+ Status?: ShareStatus;
865
865
  StatusMessage?: string;
866
866
  }
867
867
  export declare const LensType: {
@@ -874,13 +874,13 @@ export interface LensSummary {
874
874
  LensArn?: string;
875
875
  LensAlias?: string;
876
876
  LensName?: string;
877
- LensType?: LensType | string;
877
+ LensType?: LensType;
878
878
  Description?: string;
879
879
  CreatedAt?: Date;
880
880
  UpdatedAt?: Date;
881
881
  LensVersion?: string;
882
882
  Owner?: string;
883
- LensStatus?: LensStatus | string;
883
+ LensStatus?: LensStatus;
884
884
  }
885
885
  export interface LensUpgradeSummary {
886
886
  WorkloadId?: string;
@@ -905,7 +905,7 @@ export interface ListAnswersInput {
905
905
  MilestoneNumber?: number;
906
906
  NextToken?: string;
907
907
  MaxResults?: number;
908
- QuestionPriority?: QuestionPriority | string;
908
+ QuestionPriority?: QuestionPriority;
909
909
  }
910
910
  export interface ListAnswersOutput {
911
911
  WorkloadId?: string;
@@ -944,8 +944,8 @@ export interface ListCheckSummariesOutput {
944
944
  export interface ListLensesInput {
945
945
  NextToken?: string;
946
946
  MaxResults?: number;
947
- LensType?: LensType | string;
948
- LensStatus?: LensStatusType | string;
947
+ LensType?: LensType;
948
+ LensStatus?: LensStatusType;
949
949
  LensName?: string;
950
950
  }
951
951
  export interface ListLensesOutput {
@@ -959,7 +959,7 @@ export interface ListLensReviewImprovementsInput {
959
959
  MilestoneNumber?: number;
960
960
  NextToken?: string;
961
961
  MaxResults?: number;
962
- QuestionPriority?: QuestionPriority | string;
962
+ QuestionPriority?: QuestionPriority;
963
963
  }
964
964
  export interface ListLensReviewImprovementsOutput {
965
965
  WorkloadId?: string;
@@ -986,7 +986,7 @@ export interface ListLensSharesInput {
986
986
  SharedWithPrefix?: string;
987
987
  NextToken?: string;
988
988
  MaxResults?: number;
989
- Status?: ShareStatus | string;
989
+ Status?: ShareStatus;
990
990
  }
991
991
  export interface ListLensSharesOutput {
992
992
  LensShareSummaries?: LensShareSummary[];
@@ -1004,10 +1004,10 @@ export interface WorkloadSummary {
1004
1004
  Owner?: string;
1005
1005
  UpdatedAt?: Date;
1006
1006
  Lenses?: string[];
1007
- RiskCounts?: Record<string, number>;
1008
- ImprovementStatus?: WorkloadImprovementStatus | string;
1007
+ RiskCounts?: Record<Risk, number>;
1008
+ ImprovementStatus?: WorkloadImprovementStatus;
1009
1009
  Profiles?: WorkloadProfile[];
1010
- PrioritizedRiskCounts?: Record<string, number>;
1010
+ PrioritizedRiskCounts?: Record<Risk, number>;
1011
1011
  }
1012
1012
  export interface MilestoneSummary {
1013
1013
  MilestoneNumber?: number;
@@ -1033,7 +1033,7 @@ export declare const NotificationType: {
1033
1033
  export type NotificationType =
1034
1034
  (typeof NotificationType)[keyof typeof NotificationType];
1035
1035
  export interface NotificationSummary {
1036
- Type?: NotificationType | string;
1036
+ Type?: NotificationType;
1037
1037
  LensUpgradeSummary?: LensUpgradeSummary;
1038
1038
  }
1039
1039
  export interface ListNotificationsOutput {
@@ -1054,7 +1054,7 @@ export type ProfileNotificationType =
1054
1054
  export interface ProfileNotificationSummary {
1055
1055
  CurrentProfileVersion?: string;
1056
1056
  LatestProfileVersion?: string;
1057
- Type?: ProfileNotificationType | string;
1057
+ Type?: ProfileNotificationType;
1058
1058
  ProfileArn?: string;
1059
1059
  ProfileName?: string;
1060
1060
  WorkloadId?: string;
@@ -1072,7 +1072,7 @@ export type ProfileOwnerType =
1072
1072
  (typeof ProfileOwnerType)[keyof typeof ProfileOwnerType];
1073
1073
  export interface ListProfilesInput {
1074
1074
  ProfileNamePrefix?: string;
1075
- ProfileOwnerType?: ProfileOwnerType | string;
1075
+ ProfileOwnerType?: ProfileOwnerType;
1076
1076
  NextToken?: string;
1077
1077
  MaxResults?: number;
1078
1078
  }
@@ -1094,12 +1094,12 @@ export interface ListProfileSharesInput {
1094
1094
  SharedWithPrefix?: string;
1095
1095
  NextToken?: string;
1096
1096
  MaxResults?: number;
1097
- Status?: ShareStatus | string;
1097
+ Status?: ShareStatus;
1098
1098
  }
1099
1099
  export interface ProfileShareSummary {
1100
1100
  ShareId?: string;
1101
1101
  SharedWith?: string;
1102
- Status?: ShareStatus | string;
1102
+ Status?: ShareStatus;
1103
1103
  StatusMessage?: string;
1104
1104
  }
1105
1105
  export interface ListProfileSharesOutput {
@@ -1121,9 +1121,9 @@ export interface ReviewTemplateAnswerSummary {
1121
1121
  SelectedChoices?: string[];
1122
1122
  ChoiceAnswerSummaries?: ChoiceAnswerSummary[];
1123
1123
  IsApplicable?: boolean;
1124
- AnswerStatus?: ReviewTemplateAnswerStatus | string;
1125
- Reason?: AnswerReason | string;
1126
- QuestionType?: QuestionType | string;
1124
+ AnswerStatus?: ReviewTemplateAnswerStatus;
1125
+ Reason?: AnswerReason;
1126
+ QuestionType?: QuestionType;
1127
1127
  }
1128
1128
  export interface ListReviewTemplateAnswersOutput {
1129
1129
  TemplateArn?: string;
@@ -1142,7 +1142,7 @@ export interface ReviewTemplateSummary {
1142
1142
  UpdatedAt?: Date;
1143
1143
  TemplateArn?: string;
1144
1144
  TemplateName?: string;
1145
- UpdateStatus?: ReviewTemplateUpdateStatus | string;
1145
+ UpdateStatus?: ReviewTemplateUpdateStatus;
1146
1146
  }
1147
1147
  export interface ListReviewTemplatesOutput {
1148
1148
  ReviewTemplates?: ReviewTemplateSummary[];
@@ -1159,7 +1159,7 @@ export type ShareResourceType =
1159
1159
  export interface ListShareInvitationsInput {
1160
1160
  WorkloadNamePrefix?: string;
1161
1161
  LensNamePrefix?: string;
1162
- ShareResourceType?: ShareResourceType | string;
1162
+ ShareResourceType?: ShareResourceType;
1163
1163
  NextToken?: string;
1164
1164
  MaxResults?: number;
1165
1165
  ProfileNamePrefix?: string;
@@ -1169,8 +1169,8 @@ export interface ShareInvitationSummary {
1169
1169
  ShareInvitationId?: string;
1170
1170
  SharedBy?: string;
1171
1171
  SharedWith?: string;
1172
- PermissionType?: PermissionType | string;
1173
- ShareResourceType?: ShareResourceType | string;
1172
+ PermissionType?: PermissionType;
1173
+ ShareResourceType?: ShareResourceType;
1174
1174
  WorkloadName?: string;
1175
1175
  WorkloadId?: string;
1176
1176
  LensName?: string;
@@ -1195,12 +1195,12 @@ export interface ListTemplateSharesInput {
1195
1195
  SharedWithPrefix?: string;
1196
1196
  NextToken?: string;
1197
1197
  MaxResults?: number;
1198
- Status?: ShareStatus | string;
1198
+ Status?: ShareStatus;
1199
1199
  }
1200
1200
  export interface TemplateShareSummary {
1201
1201
  ShareId?: string;
1202
1202
  SharedWith?: string;
1203
- Status?: ShareStatus | string;
1203
+ Status?: ShareStatus;
1204
1204
  StatusMessage?: string;
1205
1205
  }
1206
1206
  export interface ListTemplateSharesOutput {
@@ -1222,13 +1222,13 @@ export interface ListWorkloadSharesInput {
1222
1222
  SharedWithPrefix?: string;
1223
1223
  NextToken?: string;
1224
1224
  MaxResults?: number;
1225
- Status?: ShareStatus | string;
1225
+ Status?: ShareStatus;
1226
1226
  }
1227
1227
  export interface WorkloadShareSummary {
1228
1228
  ShareId?: string;
1229
1229
  SharedWith?: string;
1230
- PermissionType?: PermissionType | string;
1231
- Status?: ShareStatus | string;
1230
+ PermissionType?: PermissionType;
1231
+ Status?: ShareStatus;
1232
1232
  StatusMessage?: string;
1233
1233
  }
1234
1234
  export interface ListWorkloadSharesOutput {
@@ -1244,7 +1244,7 @@ export type OrganizationSharingStatus =
1244
1244
  (typeof OrganizationSharingStatus)[keyof typeof OrganizationSharingStatus];
1245
1245
  export interface ShareInvitation {
1246
1246
  ShareInvitationId?: string;
1247
- ShareResourceType?: ShareResourceType | string;
1247
+ ShareResourceType?: ShareResourceType;
1248
1248
  WorkloadId?: string;
1249
1249
  LensAlias?: string;
1250
1250
  LensArn?: string;
@@ -1275,7 +1275,7 @@ export interface UpdateAnswerInput {
1275
1275
  ChoiceUpdates?: Record<string, ChoiceUpdate>;
1276
1276
  Notes?: string;
1277
1277
  IsApplicable?: boolean;
1278
- Reason?: AnswerReason | string;
1278
+ Reason?: AnswerReason;
1279
1279
  }
1280
1280
  export interface UpdateAnswerOutput {
1281
1281
  WorkloadId?: string;
@@ -1284,8 +1284,8 @@ export interface UpdateAnswerOutput {
1284
1284
  Answer?: Answer;
1285
1285
  }
1286
1286
  export interface UpdateGlobalSettingsInput {
1287
- OrganizationSharingStatus?: OrganizationSharingStatus | string;
1288
- DiscoveryIntegrationStatus?: DiscoveryIntegrationStatus | string;
1287
+ OrganizationSharingStatus?: OrganizationSharingStatus;
1288
+ DiscoveryIntegrationStatus?: DiscoveryIntegrationStatus;
1289
1289
  }
1290
1290
  export interface UpdateLensReviewInput {
1291
1291
  WorkloadId: string | undefined;
@@ -1324,7 +1324,7 @@ export interface UpdateReviewTemplateAnswerInput {
1324
1324
  ChoiceUpdates?: Record<string, ChoiceUpdate>;
1325
1325
  Notes?: string;
1326
1326
  IsApplicable?: boolean;
1327
- Reason?: AnswerReason | string;
1327
+ Reason?: AnswerReason;
1328
1328
  }
1329
1329
  export interface UpdateReviewTemplateAnswerOutput {
1330
1330
  TemplateArn?: string;
@@ -1343,7 +1343,7 @@ export interface UpdateReviewTemplateLensReviewOutput {
1343
1343
  }
1344
1344
  export interface UpdateShareInvitationInput {
1345
1345
  ShareInvitationId: string | undefined;
1346
- ShareInvitationAction: ShareInvitationAction | string | undefined;
1346
+ ShareInvitationAction: ShareInvitationAction | undefined;
1347
1347
  }
1348
1348
  export interface UpdateShareInvitationOutput {
1349
1349
  ShareInvitation?: ShareInvitation;
@@ -1352,7 +1352,7 @@ export interface UpdateWorkloadInput {
1352
1352
  WorkloadId: string | undefined;
1353
1353
  WorkloadName?: string;
1354
1354
  Description?: string;
1355
- Environment?: WorkloadEnvironment | string;
1355
+ Environment?: WorkloadEnvironment;
1356
1356
  AccountIds?: string[];
1357
1357
  AwsRegions?: string[];
1358
1358
  NonAwsRegions?: string[];
@@ -1363,7 +1363,7 @@ export interface UpdateWorkloadInput {
1363
1363
  IndustryType?: string;
1364
1364
  Industry?: string;
1365
1365
  Notes?: string;
1366
- ImprovementStatus?: WorkloadImprovementStatus | string;
1366
+ ImprovementStatus?: WorkloadImprovementStatus;
1367
1367
  DiscoveryConfig?: WorkloadDiscoveryConfig;
1368
1368
  Applications?: string[];
1369
1369
  }
@@ -1373,14 +1373,14 @@ export interface UpdateWorkloadOutput {
1373
1373
  export interface UpdateWorkloadShareInput {
1374
1374
  ShareId: string | undefined;
1375
1375
  WorkloadId: string | undefined;
1376
- PermissionType: PermissionType | string | undefined;
1376
+ PermissionType: PermissionType | undefined;
1377
1377
  }
1378
1378
  export interface WorkloadShare {
1379
1379
  ShareId?: string;
1380
1380
  SharedBy?: string;
1381
1381
  SharedWith?: string;
1382
- PermissionType?: PermissionType | string;
1383
- Status?: ShareStatus | string;
1382
+ PermissionType?: PermissionType;
1383
+ Status?: ShareStatus;
1384
1384
  WorkloadName?: string;
1385
1385
  WorkloadId?: string;
1386
1386
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-wellarchitected",
3
3
  "description": "AWS SDK for JavaScript Wellarchitected Client for Node.js, Browser and React Native",
4
- "version": "3.428.0",
4
+ "version": "3.430.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,28 +21,28 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.428.0",
25
- "@aws-sdk/credential-provider-node": "3.428.0",
26
- "@aws-sdk/middleware-host-header": "3.428.0",
24
+ "@aws-sdk/client-sts": "3.430.0",
25
+ "@aws-sdk/credential-provider-node": "3.430.0",
26
+ "@aws-sdk/middleware-host-header": "3.429.0",
27
27
  "@aws-sdk/middleware-logger": "3.428.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.428.0",
29
29
  "@aws-sdk/middleware-signing": "3.428.0",
30
30
  "@aws-sdk/middleware-user-agent": "3.428.0",
31
- "@aws-sdk/region-config-resolver": "3.428.0",
31
+ "@aws-sdk/region-config-resolver": "3.430.0",
32
32
  "@aws-sdk/types": "3.428.0",
33
33
  "@aws-sdk/util-endpoints": "3.428.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.428.0",
35
- "@aws-sdk/util-user-agent-node": "3.428.0",
36
- "@smithy/config-resolver": "^2.0.14",
35
+ "@aws-sdk/util-user-agent-node": "3.430.0",
36
+ "@smithy/config-resolver": "^2.0.15",
37
37
  "@smithy/fetch-http-handler": "^2.2.3",
38
38
  "@smithy/hash-node": "^2.0.11",
39
39
  "@smithy/invalid-dependency": "^2.0.11",
40
40
  "@smithy/middleware-content-length": "^2.0.13",
41
- "@smithy/middleware-endpoint": "^2.1.0",
42
- "@smithy/middleware-retry": "^2.0.16",
41
+ "@smithy/middleware-endpoint": "^2.1.2",
42
+ "@smithy/middleware-retry": "^2.0.17",
43
43
  "@smithy/middleware-serde": "^2.0.11",
44
44
  "@smithy/middleware-stack": "^2.0.5",
45
- "@smithy/node-config-provider": "^2.1.1",
45
+ "@smithy/node-config-provider": "^2.1.2",
46
46
  "@smithy/node-http-handler": "^2.1.7",
47
47
  "@smithy/protocol-http": "^3.0.7",
48
48
  "@smithy/smithy-client": "^2.1.11",
@@ -52,7 +52,7 @@
52
52
  "@smithy/util-body-length-browser": "^2.0.0",
53
53
  "@smithy/util-body-length-node": "^2.1.0",
54
54
  "@smithy/util-defaults-mode-browser": "^2.0.15",
55
- "@smithy/util-defaults-mode-node": "^2.0.19",
55
+ "@smithy/util-defaults-mode-node": "^2.0.20",
56
56
  "@smithy/util-retry": "^2.0.4",
57
57
  "@smithy/util-utf8": "^2.0.0",
58
58
  "tslib": "^2.5.0",