@aws-sdk/client-wellarchitected 3.686.0 → 3.691.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.
@@ -61,22 +61,22 @@ export interface AccountJiraConfigurationInput {
61
61
  * <p>Account-level: Jira issue management status.</p>
62
62
  * @public
63
63
  */
64
- IssueManagementStatus?: AccountJiraIssueManagementStatus;
64
+ IssueManagementStatus?: AccountJiraIssueManagementStatus | undefined;
65
65
  /**
66
66
  * <p>Account-level: Jira issue management type.</p>
67
67
  * @public
68
68
  */
69
- IssueManagementType?: IssueManagementType;
69
+ IssueManagementType?: IssueManagementType | undefined;
70
70
  /**
71
71
  * <p>Account-level: Jira project key to sync workloads to.</p>
72
72
  * @public
73
73
  */
74
- JiraProjectKey?: string;
74
+ JiraProjectKey?: string | undefined;
75
75
  /**
76
76
  * <p>Account-level: Configuration status of the Jira integration.</p>
77
77
  * @public
78
78
  */
79
- IntegrationStatus?: IntegrationStatusInput;
79
+ IntegrationStatus?: IntegrationStatusInput | undefined;
80
80
  }
81
81
  /**
82
82
  * @public
@@ -99,32 +99,32 @@ export interface AccountJiraConfigurationOutput {
99
99
  * <p>Account-level: Configuration status of the Jira integration.</p>
100
100
  * @public
101
101
  */
102
- IntegrationStatus?: IntegrationStatus;
102
+ IntegrationStatus?: IntegrationStatus | undefined;
103
103
  /**
104
104
  * <p>Account-level: Jira issue management status.</p>
105
105
  * @public
106
106
  */
107
- IssueManagementStatus?: AccountJiraIssueManagementStatus;
107
+ IssueManagementStatus?: AccountJiraIssueManagementStatus | undefined;
108
108
  /**
109
109
  * <p>Account-level: Jira issue management type.</p>
110
110
  * @public
111
111
  */
112
- IssueManagementType?: IssueManagementType;
112
+ IssueManagementType?: IssueManagementType | undefined;
113
113
  /**
114
114
  * <p>Account-level: Jira subdomain URL.</p>
115
115
  * @public
116
116
  */
117
- Subdomain?: string;
117
+ Subdomain?: string | undefined;
118
118
  /**
119
119
  * <p>Account-level: Jira project key to sync workloads to.</p>
120
120
  * @public
121
121
  */
122
- JiraProjectKey?: string;
122
+ JiraProjectKey?: string | undefined;
123
123
  /**
124
124
  * <p>Account-level: Status message on configuration of the Jira integration.</p>
125
125
  * @public
126
126
  */
127
- StatusMessage?: string;
127
+ StatusMessage?: string | undefined;
128
128
  }
129
129
  /**
130
130
  * @public
@@ -150,12 +150,12 @@ export interface ChoiceContent {
150
150
  * <p>The display text for the choice content.</p>
151
151
  * @public
152
152
  */
153
- DisplayText?: string;
153
+ DisplayText?: string | undefined;
154
154
  /**
155
155
  * <p>The URL for the choice content.</p>
156
156
  * @public
157
157
  */
158
- Url?: string;
158
+ Url?: string | undefined;
159
159
  }
160
160
  /**
161
161
  * @public
@@ -179,12 +179,12 @@ export interface AdditionalResources {
179
179
  * <p>Type of additional resource for a custom lens.</p>
180
180
  * @public
181
181
  */
182
- Type?: AdditionalResourceType;
182
+ Type?: AdditionalResourceType | undefined;
183
183
  /**
184
184
  * <p>The URLs for additional resources, either helpful resources or improvement plans, for a custom lens. Up to five additional URLs can be specified.</p>
185
185
  * @public
186
186
  */
187
- Content?: ChoiceContent[];
187
+ Content?: ChoiceContent[] | undefined;
188
188
  }
189
189
  /**
190
190
  * @public
@@ -223,22 +223,22 @@ export interface ChoiceAnswer {
223
223
  * <p>The ID of a choice.</p>
224
224
  * @public
225
225
  */
226
- ChoiceId?: string;
226
+ ChoiceId?: string | undefined;
227
227
  /**
228
228
  * <p>The status of a choice.</p>
229
229
  * @public
230
230
  */
231
- Status?: ChoiceStatus;
231
+ Status?: ChoiceStatus | undefined;
232
232
  /**
233
233
  * <p>The reason why a choice is non-applicable to a question in your workload.</p>
234
234
  * @public
235
235
  */
236
- Reason?: ChoiceReason;
236
+ Reason?: ChoiceReason | undefined;
237
237
  /**
238
238
  * <p>The notes associated with a choice.</p>
239
239
  * @public
240
240
  */
241
- Notes?: string;
241
+ Notes?: string | undefined;
242
242
  }
243
243
  /**
244
244
  * <p>A choice available to answer question.</p>
@@ -249,36 +249,36 @@ export interface Choice {
249
249
  * <p>The ID of a choice.</p>
250
250
  * @public
251
251
  */
252
- ChoiceId?: string;
252
+ ChoiceId?: string | undefined;
253
253
  /**
254
254
  * <p>The title of a choice.</p>
255
255
  * @public
256
256
  */
257
- Title?: string;
257
+ Title?: string | undefined;
258
258
  /**
259
259
  * <p>The description of a choice.</p>
260
260
  * @public
261
261
  */
262
- Description?: string;
262
+ Description?: string | undefined;
263
263
  /**
264
264
  * <p>The helpful resource (both text and URL) for a particular choice.</p>
265
265
  * <p>This field only applies to custom lenses. Each choice can have only one helpful resource.</p>
266
266
  * @public
267
267
  */
268
- HelpfulResource?: ChoiceContent;
268
+ HelpfulResource?: ChoiceContent | undefined;
269
269
  /**
270
270
  * <p>The improvement plan (both text and URL) for a particular choice.</p>
271
271
  * <p>This field only applies to custom lenses. Each choice can have only one improvement plan.</p>
272
272
  * @public
273
273
  */
274
- ImprovementPlan?: ChoiceContent;
274
+ ImprovementPlan?: ChoiceContent | undefined;
275
275
  /**
276
276
  * <p>The additional resources for a choice in a custom lens.</p>
277
277
  * <p>A choice can have up to two additional resources: one of type <code>HELPFUL_RESOURCE</code>,
278
278
  * one of type <code>IMPROVEMENT_PLAN</code>, or both.</p>
279
279
  * @public
280
280
  */
281
- AdditionalResources?: AdditionalResources[];
281
+ AdditionalResources?: AdditionalResources[] | undefined;
282
282
  }
283
283
  /**
284
284
  * <p>Configuration of the Jira integration.</p>
@@ -289,12 +289,12 @@ export interface JiraConfiguration {
289
289
  * <p>The URL of the associated Jira issue.</p>
290
290
  * @public
291
291
  */
292
- JiraIssueUrl?: string;
292
+ JiraIssueUrl?: string | undefined;
293
293
  /**
294
294
  * <p>The date and time recorded.</p>
295
295
  * @public
296
296
  */
297
- LastSyncedTime?: Date;
297
+ LastSyncedTime?: Date | undefined;
298
298
  }
299
299
  /**
300
300
  * @public
@@ -335,30 +335,30 @@ export interface Answer {
335
335
  * <p>The ID of the question.</p>
336
336
  * @public
337
337
  */
338
- QuestionId?: string;
338
+ QuestionId?: string | undefined;
339
339
  /**
340
340
  * <p>The ID used to identify a pillar, for example, <code>security</code>.</p>
341
341
  * <p>A pillar is identified by its <a>PillarReviewSummary$PillarId</a>.</p>
342
342
  * @public
343
343
  */
344
- PillarId?: string;
344
+ PillarId?: string | undefined;
345
345
  /**
346
346
  * <p>The title of the question.</p>
347
347
  * @public
348
348
  */
349
- QuestionTitle?: string;
349
+ QuestionTitle?: string | undefined;
350
350
  /**
351
351
  * <p>The description of the question.</p>
352
352
  * @public
353
353
  */
354
- QuestionDescription?: string;
354
+ QuestionDescription?: string | undefined;
355
355
  /**
356
356
  * <p>The improvement plan URL for a question in an Amazon Web Services official lenses.</p>
357
357
  * <p>This value is only available if the question has been answered.</p>
358
358
  * <p>This value does not apply to custom lenses.</p>
359
359
  * @public
360
360
  */
361
- ImprovementPlanUrl?: string;
361
+ ImprovementPlanUrl?: string | undefined;
362
362
  /**
363
363
  * <p>The helpful resource URL.</p>
364
364
  * <p>For Amazon Web Services official lenses, this is the helpful resource URL for a question or choice.</p>
@@ -366,55 +366,55 @@ export interface Answer {
366
366
  * if <code>HelpfulResourceDisplayText</code> was specified for the question.</p>
367
367
  * @public
368
368
  */
369
- HelpfulResourceUrl?: string;
369
+ HelpfulResourceUrl?: string | undefined;
370
370
  /**
371
371
  * <p>The helpful resource text to be displayed for a custom lens.</p>
372
372
  * <p>This field does not apply to Amazon Web Services official lenses.</p>
373
373
  * @public
374
374
  */
375
- HelpfulResourceDisplayText?: string;
375
+ HelpfulResourceDisplayText?: string | undefined;
376
376
  /**
377
377
  * <p>List of choices available for a question.</p>
378
378
  * @public
379
379
  */
380
- Choices?: Choice[];
380
+ Choices?: Choice[] | undefined;
381
381
  /**
382
382
  * <p>List of selected choice IDs in a question answer.</p>
383
383
  * <p>The values entered replace the previously selected choices.</p>
384
384
  * @public
385
385
  */
386
- SelectedChoices?: string[];
386
+ SelectedChoices?: string[] | undefined;
387
387
  /**
388
388
  * <p>A list of selected choices to a question in your workload.</p>
389
389
  * @public
390
390
  */
391
- ChoiceAnswers?: ChoiceAnswer[];
391
+ ChoiceAnswers?: ChoiceAnswer[] | undefined;
392
392
  /**
393
393
  * <p>Defines whether this question is applicable to a lens review.</p>
394
394
  * @public
395
395
  */
396
- IsApplicable?: boolean;
396
+ IsApplicable?: boolean | undefined;
397
397
  /**
398
398
  * <p>The risk for a given workload, lens review, pillar, or question.</p>
399
399
  * @public
400
400
  */
401
- Risk?: Risk;
401
+ Risk?: Risk | undefined;
402
402
  /**
403
403
  * <p>The notes associated with the workload.</p>
404
404
  * <p>For a review template, these are the notes that will be associated with the workload when the template is applied.</p>
405
405
  * @public
406
406
  */
407
- Notes?: string;
407
+ Notes?: string | undefined;
408
408
  /**
409
409
  * <p>The reason why the question is not applicable to your workload.</p>
410
410
  * @public
411
411
  */
412
- Reason?: AnswerReason;
412
+ Reason?: AnswerReason | undefined;
413
413
  /**
414
414
  * <p>Configuration of the Jira integration.</p>
415
415
  * @public
416
416
  */
417
- JiraConfiguration?: JiraConfiguration;
417
+ JiraConfiguration?: JiraConfiguration | undefined;
418
418
  }
419
419
  /**
420
420
  * <p>A choice summary that has been answered on a question in your workload.</p>
@@ -425,17 +425,17 @@ export interface ChoiceAnswerSummary {
425
425
  * <p>The ID of a choice.</p>
426
426
  * @public
427
427
  */
428
- ChoiceId?: string;
428
+ ChoiceId?: string | undefined;
429
429
  /**
430
430
  * <p>The status of a choice.</p>
431
431
  * @public
432
432
  */
433
- Status?: ChoiceStatus;
433
+ Status?: ChoiceStatus | undefined;
434
434
  /**
435
435
  * <p>The reason why a choice is non-applicable to a question in your workload.</p>
436
436
  * @public
437
437
  */
438
- Reason?: ChoiceReason;
438
+ Reason?: ChoiceReason | undefined;
439
439
  }
440
440
  /**
441
441
  * @public
@@ -458,59 +458,59 @@ export interface AnswerSummary {
458
458
  * <p>The ID of the question.</p>
459
459
  * @public
460
460
  */
461
- QuestionId?: string;
461
+ QuestionId?: string | undefined;
462
462
  /**
463
463
  * <p>The ID used to identify a pillar, for example, <code>security</code>.</p>
464
464
  * <p>A pillar is identified by its <a>PillarReviewSummary$PillarId</a>.</p>
465
465
  * @public
466
466
  */
467
- PillarId?: string;
467
+ PillarId?: string | undefined;
468
468
  /**
469
469
  * <p>The title of the question.</p>
470
470
  * @public
471
471
  */
472
- QuestionTitle?: string;
472
+ QuestionTitle?: string | undefined;
473
473
  /**
474
474
  * <p>List of choices available for a question.</p>
475
475
  * @public
476
476
  */
477
- Choices?: Choice[];
477
+ Choices?: Choice[] | undefined;
478
478
  /**
479
479
  * <p>List of selected choice IDs in a question answer.</p>
480
480
  * <p>The values entered replace the previously selected choices.</p>
481
481
  * @public
482
482
  */
483
- SelectedChoices?: string[];
483
+ SelectedChoices?: string[] | undefined;
484
484
  /**
485
485
  * <p>A list of selected choices to a question in your workload.</p>
486
486
  * @public
487
487
  */
488
- ChoiceAnswerSummaries?: ChoiceAnswerSummary[];
488
+ ChoiceAnswerSummaries?: ChoiceAnswerSummary[] | undefined;
489
489
  /**
490
490
  * <p>Defines whether this question is applicable to a lens review.</p>
491
491
  * @public
492
492
  */
493
- IsApplicable?: boolean;
493
+ IsApplicable?: boolean | undefined;
494
494
  /**
495
495
  * <p>The risk for a given workload, lens review, pillar, or question.</p>
496
496
  * @public
497
497
  */
498
- Risk?: Risk;
498
+ Risk?: Risk | undefined;
499
499
  /**
500
500
  * <p>The reason why a choice is non-applicable to a question in your workload.</p>
501
501
  * @public
502
502
  */
503
- Reason?: AnswerReason;
503
+ Reason?: AnswerReason | undefined;
504
504
  /**
505
505
  * <p>The type of the question.</p>
506
506
  * @public
507
507
  */
508
- QuestionType?: QuestionType;
508
+ QuestionType?: QuestionType | undefined;
509
509
  /**
510
510
  * <p>Configuration of the Jira integration.</p>
511
511
  * @public
512
512
  */
513
- JiraConfiguration?: JiraConfiguration;
513
+ JiraConfiguration?: JiraConfiguration | undefined;
514
514
  }
515
515
  /**
516
516
  * <p>Input to associate lens reviews.</p>
@@ -616,12 +616,12 @@ export declare class ThrottlingException extends __BaseException {
616
616
  * <p>Service Quotas requirement to identify originating quota.</p>
617
617
  * @public
618
618
  */
619
- QuotaCode?: string;
619
+ QuotaCode?: string | undefined;
620
620
  /**
621
621
  * <p>Service Quotas requirement to identify originating service.</p>
622
622
  * @public
623
623
  */
624
- ServiceCode?: string;
624
+ ServiceCode?: string | undefined;
625
625
  /**
626
626
  * @internal
627
627
  */
@@ -673,12 +673,12 @@ export declare class ValidationException extends __BaseException {
673
673
  * <p>The reason why the request failed validation.</p>
674
674
  * @public
675
675
  */
676
- Reason?: ValidationExceptionReason;
676
+ Reason?: ValidationExceptionReason | undefined;
677
677
  /**
678
678
  * <p>The fields that caused the error, if applicable.</p>
679
679
  * @public
680
680
  */
681
- Fields?: ValidationExceptionField[];
681
+ Fields?: ValidationExceptionField[] | undefined;
682
682
  /**
683
683
  * @internal
684
684
  */
@@ -708,12 +708,12 @@ export interface BestPractice {
708
708
  * <p>The ID of a choice.</p>
709
709
  * @public
710
710
  */
711
- ChoiceId?: string;
711
+ ChoiceId?: string | undefined;
712
712
  /**
713
713
  * <p>The title of a choice.</p>
714
714
  * @public
715
715
  */
716
- ChoiceTitle?: string;
716
+ ChoiceTitle?: string | undefined;
717
717
  }
718
718
  /**
719
719
  * @public
@@ -749,68 +749,68 @@ export interface CheckDetail {
749
749
  * <p>Trusted Advisor check ID.</p>
750
750
  * @public
751
751
  */
752
- Id?: string;
752
+ Id?: string | undefined;
753
753
  /**
754
754
  * <p>Trusted Advisor check name.</p>
755
755
  * @public
756
756
  */
757
- Name?: string;
757
+ Name?: string | undefined;
758
758
  /**
759
759
  * <p>Trusted Advisor check description.</p>
760
760
  * @public
761
761
  */
762
- Description?: string;
762
+ Description?: string | undefined;
763
763
  /**
764
764
  * <p>Provider of the check related to the best practice.</p>
765
765
  * @public
766
766
  */
767
- Provider?: CheckProvider;
767
+ Provider?: CheckProvider | undefined;
768
768
  /**
769
769
  * <p>Well-Architected Lens ARN associated to the check.</p>
770
770
  * @public
771
771
  */
772
- LensArn?: string;
772
+ LensArn?: string | undefined;
773
773
  /**
774
774
  * <p>The ID used to identify a pillar, for example, <code>security</code>.</p>
775
775
  * <p>A pillar is identified by its <a>PillarReviewSummary$PillarId</a>.</p>
776
776
  * @public
777
777
  */
778
- PillarId?: string;
778
+ PillarId?: string | undefined;
779
779
  /**
780
780
  * <p>The ID of the question.</p>
781
781
  * @public
782
782
  */
783
- QuestionId?: string;
783
+ QuestionId?: string | undefined;
784
784
  /**
785
785
  * <p>The ID of a choice.</p>
786
786
  * @public
787
787
  */
788
- ChoiceId?: string;
788
+ ChoiceId?: string | undefined;
789
789
  /**
790
790
  * <p>Status associated to the check.</p>
791
791
  * @public
792
792
  */
793
- Status?: CheckStatus;
793
+ Status?: CheckStatus | undefined;
794
794
  /**
795
795
  * <p>An Amazon Web Services account ID.</p>
796
796
  * @public
797
797
  */
798
- AccountId?: string;
798
+ AccountId?: string | undefined;
799
799
  /**
800
800
  * <p>Count of flagged resources associated to the check.</p>
801
801
  * @public
802
802
  */
803
- FlaggedResources?: number;
803
+ FlaggedResources?: number | undefined;
804
804
  /**
805
805
  * <p>Reason associated to the check.</p>
806
806
  * @public
807
807
  */
808
- Reason?: CheckFailureReason;
808
+ Reason?: CheckFailureReason | undefined;
809
809
  /**
810
810
  * <p>The date and time recorded.</p>
811
811
  * @public
812
812
  */
813
- UpdatedAt?: Date;
813
+ UpdatedAt?: Date | undefined;
814
814
  }
815
815
  /**
816
816
  * <p>Trusted Advisor check summary.</p>
@@ -821,58 +821,58 @@ export interface CheckSummary {
821
821
  * <p>Trusted Advisor check ID.</p>
822
822
  * @public
823
823
  */
824
- Id?: string;
824
+ Id?: string | undefined;
825
825
  /**
826
826
  * <p>Trusted Advisor check name.</p>
827
827
  * @public
828
828
  */
829
- Name?: string;
829
+ Name?: string | undefined;
830
830
  /**
831
831
  * <p>Provider of the check related to the best practice.</p>
832
832
  * @public
833
833
  */
834
- Provider?: CheckProvider;
834
+ Provider?: CheckProvider | undefined;
835
835
  /**
836
836
  * <p>Trusted Advisor check description.</p>
837
837
  * @public
838
838
  */
839
- Description?: string;
839
+ Description?: string | undefined;
840
840
  /**
841
841
  * <p>The date and time recorded.</p>
842
842
  * @public
843
843
  */
844
- UpdatedAt?: Date;
844
+ UpdatedAt?: Date | undefined;
845
845
  /**
846
846
  * <p>Well-Architected Lens ARN associated to the check.</p>
847
847
  * @public
848
848
  */
849
- LensArn?: string;
849
+ LensArn?: string | undefined;
850
850
  /**
851
851
  * <p>The ID used to identify a pillar, for example, <code>security</code>.</p>
852
852
  * <p>A pillar is identified by its <a>PillarReviewSummary$PillarId</a>.</p>
853
853
  * @public
854
854
  */
855
- PillarId?: string;
855
+ PillarId?: string | undefined;
856
856
  /**
857
857
  * <p>The ID of the question.</p>
858
858
  * @public
859
859
  */
860
- QuestionId?: string;
860
+ QuestionId?: string | undefined;
861
861
  /**
862
862
  * <p>The ID of a choice.</p>
863
863
  * @public
864
864
  */
865
- ChoiceId?: string;
865
+ ChoiceId?: string | undefined;
866
866
  /**
867
867
  * <p>Status associated to the check.</p>
868
868
  * @public
869
869
  */
870
- Status?: CheckStatus;
870
+ Status?: CheckStatus | undefined;
871
871
  /**
872
872
  * <p>Account summary associated to the check.</p>
873
873
  * @public
874
874
  */
875
- AccountSummary?: Partial<Record<CheckStatus, number>>;
875
+ AccountSummary?: Partial<Record<CheckStatus, number>> | undefined;
876
876
  }
877
877
  /**
878
878
  * <p>The choice level improvement plan.</p>
@@ -883,19 +883,19 @@ export interface ChoiceImprovementPlan {
883
883
  * <p>The ID of a choice.</p>
884
884
  * @public
885
885
  */
886
- ChoiceId?: string;
886
+ ChoiceId?: string | undefined;
887
887
  /**
888
888
  * <p>The display text for the improvement plan.</p>
889
889
  * @public
890
890
  */
891
- DisplayText?: string;
891
+ DisplayText?: string | undefined;
892
892
  /**
893
893
  * <p>The improvement plan URL for a question in an Amazon Web Services official lenses.</p>
894
894
  * <p>This value is only available if the question has been answered.</p>
895
895
  * <p>This value does not apply to custom lenses.</p>
896
896
  * @public
897
897
  */
898
- ImprovementPlanUrl?: string;
898
+ ImprovementPlanUrl?: string | undefined;
899
899
  }
900
900
  /**
901
901
  * <p>A list of choices to be updated.</p>
@@ -911,12 +911,12 @@ export interface ChoiceUpdate {
911
911
  * <p>The reason why a choice is non-applicable to a question in your workload.</p>
912
912
  * @public
913
913
  */
914
- Reason?: ChoiceReason;
914
+ Reason?: ChoiceReason | undefined;
915
915
  /**
916
916
  * <p>The notes associated with a choice.</p>
917
917
  * @public
918
918
  */
919
- Notes?: string;
919
+ Notes?: string | undefined;
920
920
  }
921
921
  /**
922
922
  * <p>A metric for a particular question in the pillar. </p>
@@ -927,17 +927,17 @@ export interface QuestionMetric {
927
927
  * <p>The ID of the question.</p>
928
928
  * @public
929
929
  */
930
- QuestionId?: string;
930
+ QuestionId?: string | undefined;
931
931
  /**
932
932
  * <p>The risk for a given workload, lens review, pillar, or question.</p>
933
933
  * @public
934
934
  */
935
- Risk?: Risk;
935
+ Risk?: Risk | undefined;
936
936
  /**
937
937
  * <p>The best practices, or choices, that have been identified as contributing to risk in a question.</p>
938
938
  * @public
939
939
  */
940
- BestPractices?: BestPractice[];
940
+ BestPractices?: BestPractice[] | undefined;
941
941
  }
942
942
  /**
943
943
  * <p>A metric for a particular pillar in a lens.</p>
@@ -949,17 +949,17 @@ export interface PillarMetric {
949
949
  * <p>A pillar is identified by its <a>PillarReviewSummary$PillarId</a>.</p>
950
950
  * @public
951
951
  */
952
- PillarId?: string;
952
+ PillarId?: string | undefined;
953
953
  /**
954
954
  * <p>A map from risk names to the count of how many questions have that rating.</p>
955
955
  * @public
956
956
  */
957
- RiskCounts?: Partial<Record<Risk, number>>;
957
+ RiskCounts?: Partial<Record<Risk, number>> | undefined;
958
958
  /**
959
959
  * <p>The questions that have been identified as risks in the pillar.</p>
960
960
  * @public
961
961
  */
962
- Questions?: QuestionMetric[];
962
+ Questions?: QuestionMetric[] | undefined;
963
963
  }
964
964
  /**
965
965
  * <p>A metric for a particular lens in a workload.</p>
@@ -970,17 +970,17 @@ export interface LensMetric {
970
970
  * <p>The lens ARN.</p>
971
971
  * @public
972
972
  */
973
- LensArn?: string;
973
+ LensArn?: string | undefined;
974
974
  /**
975
975
  * <p>The metrics for the pillars in a lens.</p>
976
976
  * @public
977
977
  */
978
- Pillars?: PillarMetric[];
978
+ Pillars?: PillarMetric[] | undefined;
979
979
  /**
980
980
  * <p>A map from risk names to the count of how many questions have that rating.</p>
981
981
  * @public
982
982
  */
983
- RiskCounts?: Partial<Record<Risk, number>>;
983
+ RiskCounts?: Partial<Record<Risk, number>> | undefined;
984
984
  }
985
985
  /**
986
986
  * @public
@@ -1002,44 +1002,44 @@ export interface ConsolidatedReportMetric {
1002
1002
  * <p>The metric type of a metric in the consolidated report. Currently only WORKLOAD metric types are supported.</p>
1003
1003
  * @public
1004
1004
  */
1005
- MetricType?: MetricType;
1005
+ MetricType?: MetricType | undefined;
1006
1006
  /**
1007
1007
  * <p>A map from risk names to the count of how many questions have that rating.</p>
1008
1008
  * @public
1009
1009
  */
1010
- RiskCounts?: Partial<Record<Risk, number>>;
1010
+ RiskCounts?: Partial<Record<Risk, number>> | undefined;
1011
1011
  /**
1012
1012
  * <p>The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.</p>
1013
1013
  * @public
1014
1014
  */
1015
- WorkloadId?: string;
1015
+ WorkloadId?: string | undefined;
1016
1016
  /**
1017
1017
  * <p>The name of the workload.</p>
1018
1018
  * <p>The name must be unique within an account within an Amazon Web Services Region. Spaces and capitalization
1019
1019
  * are ignored when checking for uniqueness.</p>
1020
1020
  * @public
1021
1021
  */
1022
- WorkloadName?: string;
1022
+ WorkloadName?: string | undefined;
1023
1023
  /**
1024
1024
  * <p>The ARN for the workload.</p>
1025
1025
  * @public
1026
1026
  */
1027
- WorkloadArn?: string;
1027
+ WorkloadArn?: string | undefined;
1028
1028
  /**
1029
1029
  * <p>The date and time recorded.</p>
1030
1030
  * @public
1031
1031
  */
1032
- UpdatedAt?: Date;
1032
+ UpdatedAt?: Date | undefined;
1033
1033
  /**
1034
1034
  * <p>The metrics for the lenses in the workload.</p>
1035
1035
  * @public
1036
1036
  */
1037
- Lenses?: LensMetric[];
1037
+ Lenses?: LensMetric[] | undefined;
1038
1038
  /**
1039
1039
  * <p>The total number of lenses applied to the workload.</p>
1040
1040
  * @public
1041
1041
  */
1042
- LensesAppliedCount?: number;
1042
+ LensesAppliedCount?: number | undefined;
1043
1043
  }
1044
1044
  /**
1045
1045
  * @public
@@ -1076,7 +1076,7 @@ export interface CreateLensShareInput {
1076
1076
  * </important>
1077
1077
  * @public
1078
1078
  */
1079
- ClientRequestToken?: string;
1079
+ ClientRequestToken?: string | undefined;
1080
1080
  }
1081
1081
  /**
1082
1082
  * @public
@@ -1086,7 +1086,7 @@ export interface CreateLensShareOutput {
1086
1086
  * <p>The ID associated with the share.</p>
1087
1087
  * @public
1088
1088
  */
1089
- ShareId?: string;
1089
+ ShareId?: string | undefined;
1090
1090
  }
1091
1091
  /**
1092
1092
  * <p>The user has reached their resource quota.</p>
@@ -1104,12 +1104,12 @@ export declare class ServiceQuotaExceededException extends __BaseException {
1104
1104
  * <p>Identifier of the resource affected.</p>
1105
1105
  * @public
1106
1106
  */
1107
- ResourceId?: string;
1107
+ ResourceId?: string | undefined;
1108
1108
  /**
1109
1109
  * <p>Type of the resource affected.</p>
1110
1110
  * @public
1111
1111
  */
1112
- ResourceType?: string;
1112
+ ResourceType?: string | undefined;
1113
1113
  /**
1114
1114
  * <p>Service Quotas requirement to identify originating quota.</p>
1115
1115
  * @public
@@ -1150,7 +1150,7 @@ export interface CreateLensVersionInput {
1150
1150
  * <p>Set to true if this new major lens version.</p>
1151
1151
  * @public
1152
1152
  */
1153
- IsMajorVersion?: boolean;
1153
+ IsMajorVersion?: boolean | undefined;
1154
1154
  /**
1155
1155
  * <p>A unique case-sensitive string used to ensure that this request is idempotent
1156
1156
  * (executes only once).</p>
@@ -1164,7 +1164,7 @@ export interface CreateLensVersionInput {
1164
1164
  * </important>
1165
1165
  * @public
1166
1166
  */
1167
- ClientRequestToken?: string;
1167
+ ClientRequestToken?: string | undefined;
1168
1168
  }
1169
1169
  /**
1170
1170
  * @public
@@ -1174,12 +1174,12 @@ export interface CreateLensVersionOutput {
1174
1174
  * <p>The ARN for the lens.</p>
1175
1175
  * @public
1176
1176
  */
1177
- LensArn?: string;
1177
+ LensArn?: string | undefined;
1178
1178
  /**
1179
1179
  * <p>The version of the lens.</p>
1180
1180
  * @public
1181
1181
  */
1182
- LensVersion?: string;
1182
+ LensVersion?: string | undefined;
1183
1183
  }
1184
1184
  /**
1185
1185
  * <p>Input for milestone creation.</p>
@@ -1210,7 +1210,7 @@ export interface CreateMilestoneInput {
1210
1210
  * </important>
1211
1211
  * @public
1212
1212
  */
1213
- ClientRequestToken?: string;
1213
+ ClientRequestToken?: string | undefined;
1214
1214
  }
1215
1215
  /**
1216
1216
  * <p>Output of a create milestone call.</p>
@@ -1221,13 +1221,13 @@ export interface CreateMilestoneOutput {
1221
1221
  * <p>The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.</p>
1222
1222
  * @public
1223
1223
  */
1224
- WorkloadId?: string;
1224
+ WorkloadId?: string | undefined;
1225
1225
  /**
1226
1226
  * <p>The milestone number.</p>
1227
1227
  * <p>A workload can have a maximum of 100 milestones.</p>
1228
1228
  * @public
1229
1229
  */
1230
- MilestoneNumber?: number;
1230
+ MilestoneNumber?: number | undefined;
1231
1231
  }
1232
1232
  /**
1233
1233
  * <p>An update to a profile question.</p>
@@ -1238,12 +1238,12 @@ export interface ProfileQuestionUpdate {
1238
1238
  * <p>The ID of the question.</p>
1239
1239
  * @public
1240
1240
  */
1241
- QuestionId?: string;
1241
+ QuestionId?: string | undefined;
1242
1242
  /**
1243
1243
  * <p>The selected choices.</p>
1244
1244
  * @public
1245
1245
  */
1246
- SelectedChoiceIds?: string[];
1246
+ SelectedChoiceIds?: string[] | undefined;
1247
1247
  }
1248
1248
  /**
1249
1249
  * @public
@@ -1277,12 +1277,12 @@ export interface CreateProfileInput {
1277
1277
  * </important>
1278
1278
  * @public
1279
1279
  */
1280
- ClientRequestToken?: string;
1280
+ ClientRequestToken?: string | undefined;
1281
1281
  /**
1282
1282
  * <p>The tags assigned to the profile.</p>
1283
1283
  * @public
1284
1284
  */
1285
- Tags?: Record<string, string>;
1285
+ Tags?: Record<string, string> | undefined;
1286
1286
  }
1287
1287
  /**
1288
1288
  * @public
@@ -1292,12 +1292,12 @@ export interface CreateProfileOutput {
1292
1292
  * <p>The profile ARN.</p>
1293
1293
  * @public
1294
1294
  */
1295
- ProfileArn?: string;
1295
+ ProfileArn?: string | undefined;
1296
1296
  /**
1297
1297
  * <p>Version of the profile.</p>
1298
1298
  * @public
1299
1299
  */
1300
- ProfileVersion?: string;
1300
+ ProfileVersion?: string | undefined;
1301
1301
  }
1302
1302
  /**
1303
1303
  * @public
@@ -1327,7 +1327,7 @@ export interface CreateProfileShareInput {
1327
1327
  * </important>
1328
1328
  * @public
1329
1329
  */
1330
- ClientRequestToken?: string;
1330
+ ClientRequestToken?: string | undefined;
1331
1331
  }
1332
1332
  /**
1333
1333
  * @public
@@ -1337,12 +1337,12 @@ export interface CreateProfileShareOutput {
1337
1337
  * <p>The ID associated with the share.</p>
1338
1338
  * @public
1339
1339
  */
1340
- ShareId?: string;
1340
+ ShareId?: string | undefined;
1341
1341
  /**
1342
1342
  * <p>The profile ARN.</p>
1343
1343
  * @public
1344
1344
  */
1345
- ProfileArn?: string;
1345
+ ProfileArn?: string | undefined;
1346
1346
  }
1347
1347
  /**
1348
1348
  * @public
@@ -1368,12 +1368,12 @@ export interface CreateReviewTemplateInput {
1368
1368
  * <p>For a review template, these are the notes that will be associated with the workload when the template is applied.</p>
1369
1369
  * @public
1370
1370
  */
1371
- Notes?: string;
1371
+ Notes?: string | undefined;
1372
1372
  /**
1373
1373
  * <p>The tags assigned to the review template.</p>
1374
1374
  * @public
1375
1375
  */
1376
- Tags?: Record<string, string>;
1376
+ Tags?: Record<string, string> | undefined;
1377
1377
  /**
1378
1378
  * <p>A unique case-sensitive string used to ensure that this request is idempotent
1379
1379
  * (executes only once).</p>
@@ -1387,7 +1387,7 @@ export interface CreateReviewTemplateInput {
1387
1387
  * </important>
1388
1388
  * @public
1389
1389
  */
1390
- ClientRequestToken?: string;
1390
+ ClientRequestToken?: string | undefined;
1391
1391
  }
1392
1392
  /**
1393
1393
  * @public
@@ -1397,7 +1397,7 @@ export interface CreateReviewTemplateOutput {
1397
1397
  * <p>The review template ARN.</p>
1398
1398
  * @public
1399
1399
  */
1400
- TemplateArn?: string;
1400
+ TemplateArn?: string | undefined;
1401
1401
  }
1402
1402
  /**
1403
1403
  * @public
@@ -1427,7 +1427,7 @@ export interface CreateTemplateShareInput {
1427
1427
  * </important>
1428
1428
  * @public
1429
1429
  */
1430
- ClientRequestToken?: string;
1430
+ ClientRequestToken?: string | undefined;
1431
1431
  }
1432
1432
  /**
1433
1433
  * @public
@@ -1437,12 +1437,12 @@ export interface CreateTemplateShareOutput {
1437
1437
  * <p>The review template ARN.</p>
1438
1438
  * @public
1439
1439
  */
1440
- TemplateArn?: string;
1440
+ TemplateArn?: string | undefined;
1441
1441
  /**
1442
1442
  * <p>The ID associated with the share.</p>
1443
1443
  * @public
1444
1444
  */
1445
- ShareId?: string;
1445
+ ShareId?: string | undefined;
1446
1446
  }
1447
1447
  /**
1448
1448
  * @public
@@ -1477,13 +1477,13 @@ export interface WorkloadDiscoveryConfig {
1477
1477
  * <p>Discovery integration status in respect to Trusted Advisor for the workload.</p>
1478
1478
  * @public
1479
1479
  */
1480
- TrustedAdvisorIntegrationStatus?: TrustedAdvisorIntegrationStatus;
1480
+ TrustedAdvisorIntegrationStatus?: TrustedAdvisorIntegrationStatus | undefined;
1481
1481
  /**
1482
1482
  * <p>The mode to use for identifying resources associated with the workload.</p>
1483
1483
  * <p>You can specify <code>WORKLOAD_METADATA</code>, <code>APP_REGISTRY</code>, or both.</p>
1484
1484
  * @public
1485
1485
  */
1486
- WorkloadResourceDefinition?: DefinitionType[];
1486
+ WorkloadResourceDefinition?: DefinitionType[] | undefined;
1487
1487
  }
1488
1488
  /**
1489
1489
  * @public
@@ -1519,17 +1519,17 @@ export interface WorkloadJiraConfigurationInput {
1519
1519
  * <p>Workload-level: Jira issue management status.</p>
1520
1520
  * @public
1521
1521
  */
1522
- IssueManagementStatus?: WorkloadIssueManagementStatus;
1522
+ IssueManagementStatus?: WorkloadIssueManagementStatus | undefined;
1523
1523
  /**
1524
1524
  * <p>Workload-level: Jira issue management type.</p>
1525
1525
  * @public
1526
1526
  */
1527
- IssueManagementType?: IssueManagementType;
1527
+ IssueManagementType?: IssueManagementType | undefined;
1528
1528
  /**
1529
1529
  * <p>Workload-level: Jira project key to sync workloads to.</p>
1530
1530
  * @public
1531
1531
  */
1532
- JiraProjectKey?: string;
1532
+ JiraProjectKey?: string | undefined;
1533
1533
  }
1534
1534
  /**
1535
1535
  * <p>Input for workload creation.</p>
@@ -1557,35 +1557,35 @@ export interface CreateWorkloadInput {
1557
1557
  * <p>The list of Amazon Web Services account IDs associated with the workload.</p>
1558
1558
  * @public
1559
1559
  */
1560
- AccountIds?: string[];
1560
+ AccountIds?: string[] | undefined;
1561
1561
  /**
1562
1562
  * <p>The list of Amazon Web Services Regions associated with the workload, for example,
1563
1563
  * <code>us-east-2</code>, or <code>ca-central-1</code>.</p>
1564
1564
  * @public
1565
1565
  */
1566
- AwsRegions?: string[];
1566
+ AwsRegions?: string[] | undefined;
1567
1567
  /**
1568
1568
  * <p> The list of non-Amazon Web Services Regions associated with the workload.</p>
1569
1569
  * @public
1570
1570
  */
1571
- NonAwsRegions?: string[];
1571
+ NonAwsRegions?: string[] | undefined;
1572
1572
  /**
1573
1573
  * <p>The priorities of the pillars, which are used to order items in the improvement plan.
1574
1574
  * Each pillar is represented by its <a>PillarReviewSummary$PillarId</a>.</p>
1575
1575
  * @public
1576
1576
  */
1577
- PillarPriorities?: string[];
1577
+ PillarPriorities?: string[] | undefined;
1578
1578
  /**
1579
1579
  * <p>The URL of the architectural design for the workload.</p>
1580
1580
  * @public
1581
1581
  */
1582
- ArchitecturalDesign?: string;
1582
+ ArchitecturalDesign?: string | undefined;
1583
1583
  /**
1584
1584
  * <p>The review owner of the workload. The name, email address, or identifier for the
1585
1585
  * primary group or individual that owns the workload review process.</p>
1586
1586
  * @public
1587
1587
  */
1588
- ReviewOwner?: string;
1588
+ ReviewOwner?: string | undefined;
1589
1589
  /**
1590
1590
  * <p>The industry type for the workload.</p>
1591
1591
  * <p>If specified, must be one of the following:</p>
@@ -1728,12 +1728,12 @@ export interface CreateWorkloadInput {
1728
1728
  * </ul>
1729
1729
  * @public
1730
1730
  */
1731
- IndustryType?: string;
1731
+ IndustryType?: string | undefined;
1732
1732
  /**
1733
1733
  * <p>The industry for the workload.</p>
1734
1734
  * @public
1735
1735
  */
1736
- Industry?: string;
1736
+ Industry?: string | undefined;
1737
1737
  /**
1738
1738
  * <p>The list of lenses associated with the workload. Each lens is identified by its <a>LensSummary$LensAlias</a>.</p>
1739
1739
  * <p>If a review template that specifies lenses is applied to the workload, those lenses are applied
@@ -1746,7 +1746,7 @@ export interface CreateWorkloadInput {
1746
1746
  * <p>For a review template, these are the notes that will be associated with the workload when the template is applied.</p>
1747
1747
  * @public
1748
1748
  */
1749
- Notes?: string;
1749
+ Notes?: string | undefined;
1750
1750
  /**
1751
1751
  * <p>A unique case-sensitive string used to ensure that this request is idempotent
1752
1752
  * (executes only once).</p>
@@ -1760,37 +1760,37 @@ export interface CreateWorkloadInput {
1760
1760
  * </important>
1761
1761
  * @public
1762
1762
  */
1763
- ClientRequestToken?: string;
1763
+ ClientRequestToken?: string | undefined;
1764
1764
  /**
1765
1765
  * <p>The tags to be associated with the workload.</p>
1766
1766
  * @public
1767
1767
  */
1768
- Tags?: Record<string, string>;
1768
+ Tags?: Record<string, string> | undefined;
1769
1769
  /**
1770
1770
  * <p>Well-Architected discovery configuration settings associated to the workload.</p>
1771
1771
  * @public
1772
1772
  */
1773
- DiscoveryConfig?: WorkloadDiscoveryConfig;
1773
+ DiscoveryConfig?: WorkloadDiscoveryConfig | undefined;
1774
1774
  /**
1775
1775
  * <p>List of AppRegistry application ARNs associated to the workload.</p>
1776
1776
  * @public
1777
1777
  */
1778
- Applications?: string[];
1778
+ Applications?: string[] | undefined;
1779
1779
  /**
1780
1780
  * <p>The list of profile ARNs associated with the workload.</p>
1781
1781
  * @public
1782
1782
  */
1783
- ProfileArns?: string[];
1783
+ ProfileArns?: string[] | undefined;
1784
1784
  /**
1785
1785
  * <p>The list of review template ARNs to associate with the workload.</p>
1786
1786
  * @public
1787
1787
  */
1788
- ReviewTemplateArns?: string[];
1788
+ ReviewTemplateArns?: string[] | undefined;
1789
1789
  /**
1790
1790
  * <p>Jira configuration settings when creating a workload.</p>
1791
1791
  * @public
1792
1792
  */
1793
- JiraConfiguration?: WorkloadJiraConfigurationInput;
1793
+ JiraConfiguration?: WorkloadJiraConfigurationInput | undefined;
1794
1794
  }
1795
1795
  /**
1796
1796
  * <p>Output of a create workload call.</p>
@@ -1801,12 +1801,12 @@ export interface CreateWorkloadOutput {
1801
1801
  * <p>The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.</p>
1802
1802
  * @public
1803
1803
  */
1804
- WorkloadId?: string;
1804
+ WorkloadId?: string | undefined;
1805
1805
  /**
1806
1806
  * <p>The ARN for the workload.</p>
1807
1807
  * @public
1808
1808
  */
1809
- WorkloadArn?: string;
1809
+ WorkloadArn?: string | undefined;
1810
1810
  }
1811
1811
  /**
1812
1812
  * @public
@@ -1854,7 +1854,7 @@ export interface CreateWorkloadShareInput {
1854
1854
  * </important>
1855
1855
  * @public
1856
1856
  */
1857
- ClientRequestToken?: string;
1857
+ ClientRequestToken?: string | undefined;
1858
1858
  }
1859
1859
  /**
1860
1860
  * <p>Input for Create Workload Share</p>
@@ -1865,12 +1865,12 @@ export interface CreateWorkloadShareOutput {
1865
1865
  * <p>The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.</p>
1866
1866
  * @public
1867
1867
  */
1868
- WorkloadId?: string;
1868
+ WorkloadId?: string | undefined;
1869
1869
  /**
1870
1870
  * <p>The ID associated with the share.</p>
1871
1871
  * @public
1872
1872
  */
1873
- ShareId?: string;
1873
+ ShareId?: string | undefined;
1874
1874
  }
1875
1875
  /**
1876
1876
  * @public
@@ -1914,7 +1914,7 @@ export interface DeleteLensInput {
1914
1914
  * </important>
1915
1915
  * @public
1916
1916
  */
1917
- ClientRequestToken?: string;
1917
+ ClientRequestToken?: string | undefined;
1918
1918
  /**
1919
1919
  * <p>The status of the lens to be deleted.</p>
1920
1920
  * @public
@@ -1955,7 +1955,7 @@ export interface DeleteLensShareInput {
1955
1955
  * </important>
1956
1956
  * @public
1957
1957
  */
1958
- ClientRequestToken?: string;
1958
+ ClientRequestToken?: string | undefined;
1959
1959
  }
1960
1960
  /**
1961
1961
  * @public
@@ -1979,7 +1979,7 @@ export interface DeleteProfileInput {
1979
1979
  * </important>
1980
1980
  * @public
1981
1981
  */
1982
- ClientRequestToken?: string;
1982
+ ClientRequestToken?: string | undefined;
1983
1983
  }
1984
1984
  /**
1985
1985
  * @public
@@ -2008,7 +2008,7 @@ export interface DeleteProfileShareInput {
2008
2008
  * </important>
2009
2009
  * @public
2010
2010
  */
2011
- ClientRequestToken?: string;
2011
+ ClientRequestToken?: string | undefined;
2012
2012
  }
2013
2013
  /**
2014
2014
  * @public
@@ -2032,7 +2032,7 @@ export interface DeleteReviewTemplateInput {
2032
2032
  * </important>
2033
2033
  * @public
2034
2034
  */
2035
- ClientRequestToken?: string;
2035
+ ClientRequestToken?: string | undefined;
2036
2036
  }
2037
2037
  /**
2038
2038
  * @public
@@ -2061,7 +2061,7 @@ export interface DeleteTemplateShareInput {
2061
2061
  * </important>
2062
2062
  * @public
2063
2063
  */
2064
- ClientRequestToken?: string;
2064
+ ClientRequestToken?: string | undefined;
2065
2065
  }
2066
2066
  /**
2067
2067
  * <p>Input for workload deletion.</p>
@@ -2086,7 +2086,7 @@ export interface DeleteWorkloadInput {
2086
2086
  * </important>
2087
2087
  * @public
2088
2088
  */
2089
- ClientRequestToken?: string;
2089
+ ClientRequestToken?: string | undefined;
2090
2090
  }
2091
2091
  /**
2092
2092
  * <p>Input for Delete Workload Share</p>
@@ -2116,7 +2116,7 @@ export interface DeleteWorkloadShareInput {
2116
2116
  * </important>
2117
2117
  * @public
2118
2118
  */
2119
- ClientRequestToken?: string;
2119
+ ClientRequestToken?: string | undefined;
2120
2120
  }
2121
2121
  /**
2122
2122
  * @public
@@ -2195,7 +2195,7 @@ export interface ExportLensInput {
2195
2195
  * <p>The lens version to be exported.</p>
2196
2196
  * @public
2197
2197
  */
2198
- LensVersion?: string;
2198
+ LensVersion?: string | undefined;
2199
2199
  }
2200
2200
  /**
2201
2201
  * @public
@@ -2205,7 +2205,7 @@ export interface ExportLensOutput {
2205
2205
  * <p>The JSON representation of a lens.</p>
2206
2206
  * @public
2207
2207
  */
2208
- LensJSON?: string;
2208
+ LensJSON?: string | undefined;
2209
2209
  }
2210
2210
  /**
2211
2211
  * <p>Input to get answer.</p>
@@ -2239,7 +2239,7 @@ export interface GetAnswerInput {
2239
2239
  * <p>A workload can have a maximum of 100 milestones.</p>
2240
2240
  * @public
2241
2241
  */
2242
- MilestoneNumber?: number;
2242
+ MilestoneNumber?: number | undefined;
2243
2243
  }
2244
2244
  /**
2245
2245
  * <p>Output of a get answer call.</p>
@@ -2250,13 +2250,13 @@ export interface GetAnswerOutput {
2250
2250
  * <p>The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.</p>
2251
2251
  * @public
2252
2252
  */
2253
- WorkloadId?: string;
2253
+ WorkloadId?: string | undefined;
2254
2254
  /**
2255
2255
  * <p>The milestone number.</p>
2256
2256
  * <p>A workload can have a maximum of 100 milestones.</p>
2257
2257
  * @public
2258
2258
  */
2259
- MilestoneNumber?: number;
2259
+ MilestoneNumber?: number | undefined;
2260
2260
  /**
2261
2261
  * <p>The alias of the lens.</p>
2262
2262
  * <p>For Amazon Web Services official lenses, this is either the lens alias, such as
@@ -2268,17 +2268,17 @@ export interface GetAnswerOutput {
2268
2268
  * <p>Each lens is identified by its <a>LensSummary$LensAlias</a>.</p>
2269
2269
  * @public
2270
2270
  */
2271
- LensAlias?: string;
2271
+ LensAlias?: string | undefined;
2272
2272
  /**
2273
2273
  * <p>The ARN for the lens.</p>
2274
2274
  * @public
2275
2275
  */
2276
- LensArn?: string;
2276
+ LensArn?: string | undefined;
2277
2277
  /**
2278
2278
  * <p>An answer of the question.</p>
2279
2279
  * @public
2280
2280
  */
2281
- Answer?: Answer;
2281
+ Answer?: Answer | undefined;
2282
2282
  }
2283
2283
  /**
2284
2284
  * @public
@@ -2307,17 +2307,17 @@ export interface GetConsolidatedReportInput {
2307
2307
  * <p>Set to <code>true</code> to have shared resources included in the report.</p>
2308
2308
  * @public
2309
2309
  */
2310
- IncludeSharedResources?: boolean;
2310
+ IncludeSharedResources?: boolean | undefined;
2311
2311
  /**
2312
2312
  * <p>The token to use to retrieve the next set of results.</p>
2313
2313
  * @public
2314
2314
  */
2315
- NextToken?: string;
2315
+ NextToken?: string | undefined;
2316
2316
  /**
2317
2317
  * <p>The maximum number of results to return for this request.</p>
2318
2318
  * @public
2319
2319
  */
2320
- MaxResults?: number;
2320
+ MaxResults?: number | undefined;
2321
2321
  }
2322
2322
  /**
2323
2323
  * @public
@@ -2328,12 +2328,12 @@ export interface GetConsolidatedReportOutput {
2328
2328
  * <p>Only returned when <code>JSON</code> format is requested.</p>
2329
2329
  * @public
2330
2330
  */
2331
- Metrics?: ConsolidatedReportMetric[];
2331
+ Metrics?: ConsolidatedReportMetric[] | undefined;
2332
2332
  /**
2333
2333
  * <p>The token to use to retrieve the next set of results.</p>
2334
2334
  * @public
2335
2335
  */
2336
- NextToken?: string;
2336
+ NextToken?: string | undefined;
2337
2337
  /**
2338
2338
  * <p>The Base64-encoded string representation of a lens review report.</p>
2339
2339
  * <p>This data can be used to create a PDF file.</p>
@@ -2341,7 +2341,7 @@ export interface GetConsolidatedReportOutput {
2341
2341
  * when <code>PDF</code> format is requested.</p>
2342
2342
  * @public
2343
2343
  */
2344
- Base64String?: string;
2344
+ Base64String?: string | undefined;
2345
2345
  }
2346
2346
  /**
2347
2347
  * @public
@@ -2363,17 +2363,17 @@ export interface GetGlobalSettingsOutput {
2363
2363
  * <p>Amazon Web Services Organizations sharing status.</p>
2364
2364
  * @public
2365
2365
  */
2366
- OrganizationSharingStatus?: OrganizationSharingStatus;
2366
+ OrganizationSharingStatus?: OrganizationSharingStatus | undefined;
2367
2367
  /**
2368
2368
  * <p>Discovery integration status.</p>
2369
2369
  * @public
2370
2370
  */
2371
- DiscoveryIntegrationStatus?: DiscoveryIntegrationStatus;
2371
+ DiscoveryIntegrationStatus?: DiscoveryIntegrationStatus | undefined;
2372
2372
  /**
2373
2373
  * <p>Jira configuration status.</p>
2374
2374
  * @public
2375
2375
  */
2376
- JiraConfiguration?: AccountJiraConfigurationOutput;
2376
+ JiraConfiguration?: AccountJiraConfigurationOutput | undefined;
2377
2377
  }
2378
2378
  /**
2379
2379
  * @public
@@ -2395,7 +2395,7 @@ export interface GetLensInput {
2395
2395
  * <p>The lens version to be retrieved.</p>
2396
2396
  * @public
2397
2397
  */
2398
- LensVersion?: string;
2398
+ LensVersion?: string | undefined;
2399
2399
  }
2400
2400
  /**
2401
2401
  * <p>A lens return object.</p>
@@ -2406,37 +2406,37 @@ export interface Lens {
2406
2406
  * <p>The ARN of a lens.</p>
2407
2407
  * @public
2408
2408
  */
2409
- LensArn?: string;
2409
+ LensArn?: string | undefined;
2410
2410
  /**
2411
2411
  * <p>The version of a lens.</p>
2412
2412
  * @public
2413
2413
  */
2414
- LensVersion?: string;
2414
+ LensVersion?: string | undefined;
2415
2415
  /**
2416
2416
  * <p>The full name of the lens.</p>
2417
2417
  * @public
2418
2418
  */
2419
- Name?: string;
2419
+ Name?: string | undefined;
2420
2420
  /**
2421
2421
  * <p>The description of the lens.</p>
2422
2422
  * @public
2423
2423
  */
2424
- Description?: string;
2424
+ Description?: string | undefined;
2425
2425
  /**
2426
2426
  * <p>The Amazon Web Services account ID that owns the lens.</p>
2427
2427
  * @public
2428
2428
  */
2429
- Owner?: string;
2429
+ Owner?: string | undefined;
2430
2430
  /**
2431
2431
  * <p>The ID assigned to the share invitation.</p>
2432
2432
  * @public
2433
2433
  */
2434
- ShareInvitationId?: string;
2434
+ ShareInvitationId?: string | undefined;
2435
2435
  /**
2436
2436
  * <p>The tags assigned to the lens.</p>
2437
2437
  * @public
2438
2438
  */
2439
- Tags?: Record<string, string>;
2439
+ Tags?: Record<string, string> | undefined;
2440
2440
  }
2441
2441
  /**
2442
2442
  * @public
@@ -2446,7 +2446,7 @@ export interface GetLensOutput {
2446
2446
  * <p>A lens return object.</p>
2447
2447
  * @public
2448
2448
  */
2449
- Lens?: Lens;
2449
+ Lens?: Lens | undefined;
2450
2450
  }
2451
2451
  /**
2452
2452
  * <p>Input to get lens review.</p>
@@ -2475,7 +2475,7 @@ export interface GetLensReviewInput {
2475
2475
  * <p>A workload can have a maximum of 100 milestones.</p>
2476
2476
  * @public
2477
2477
  */
2478
- MilestoneNumber?: number;
2478
+ MilestoneNumber?: number | undefined;
2479
2479
  }
2480
2480
  /**
2481
2481
  * <p>The selected pillar.</p>
@@ -2487,12 +2487,12 @@ export interface SelectedPillar {
2487
2487
  * <p>A pillar is identified by its <a>PillarReviewSummary$PillarId</a>.</p>
2488
2488
  * @public
2489
2489
  */
2490
- PillarId?: string;
2490
+ PillarId?: string | undefined;
2491
2491
  /**
2492
2492
  * <p>Selected question IDs in the selected pillar.</p>
2493
2493
  * @public
2494
2494
  */
2495
- SelectedQuestionIds?: string[];
2495
+ SelectedQuestionIds?: string[] | undefined;
2496
2496
  }
2497
2497
  /**
2498
2498
  * <p>Selected questions in the workload.</p>
@@ -2503,7 +2503,7 @@ export interface JiraSelectedQuestionConfiguration {
2503
2503
  * <p>Selected pillars in the workload.</p>
2504
2504
  * @public
2505
2505
  */
2506
- SelectedPillars?: SelectedPillar[];
2506
+ SelectedPillars?: SelectedPillar[] | undefined;
2507
2507
  }
2508
2508
  /**
2509
2509
  * @public
@@ -2530,28 +2530,28 @@ export interface PillarReviewSummary {
2530
2530
  * <p>A pillar is identified by its <a>PillarReviewSummary$PillarId</a>.</p>
2531
2531
  * @public
2532
2532
  */
2533
- PillarId?: string;
2533
+ PillarId?: string | undefined;
2534
2534
  /**
2535
2535
  * <p>The name of the pillar.</p>
2536
2536
  * @public
2537
2537
  */
2538
- PillarName?: string;
2538
+ PillarName?: string | undefined;
2539
2539
  /**
2540
2540
  * <p>The notes associated with the workload.</p>
2541
2541
  * <p>For a review template, these are the notes that will be associated with the workload when the template is applied.</p>
2542
2542
  * @public
2543
2543
  */
2544
- Notes?: string;
2544
+ Notes?: string | undefined;
2545
2545
  /**
2546
2546
  * <p>A map from risk names to the count of how many questions have that rating.</p>
2547
2547
  * @public
2548
2548
  */
2549
- RiskCounts?: Partial<Record<Risk, number>>;
2549
+ RiskCounts?: Partial<Record<Risk, number>> | undefined;
2550
2550
  /**
2551
2551
  * <p>A map from risk names to the count of how many questions have that rating.</p>
2552
2552
  * @public
2553
2553
  */
2554
- PrioritizedRiskCounts?: Partial<Record<Risk, number>>;
2554
+ PrioritizedRiskCounts?: Partial<Record<Risk, number>> | undefined;
2555
2555
  }
2556
2556
  /**
2557
2557
  * <p>The profile associated with a workload.</p>
@@ -2562,12 +2562,12 @@ export interface WorkloadProfile {
2562
2562
  * <p>The profile ARN.</p>
2563
2563
  * @public
2564
2564
  */
2565
- ProfileArn?: string;
2565
+ ProfileArn?: string | undefined;
2566
2566
  /**
2567
2567
  * <p>The profile version.</p>
2568
2568
  * @public
2569
2569
  */
2570
- ProfileVersion?: string;
2570
+ ProfileVersion?: string | undefined;
2571
2571
  }
2572
2572
  /**
2573
2573
  * <p>A lens review of a question.</p>
@@ -2585,68 +2585,68 @@ export interface LensReview {
2585
2585
  * <p>Each lens is identified by its <a>LensSummary$LensAlias</a>.</p>
2586
2586
  * @public
2587
2587
  */
2588
- LensAlias?: string;
2588
+ LensAlias?: string | undefined;
2589
2589
  /**
2590
2590
  * <p>The ARN for the lens.</p>
2591
2591
  * @public
2592
2592
  */
2593
- LensArn?: string;
2593
+ LensArn?: string | undefined;
2594
2594
  /**
2595
2595
  * <p>The version of the lens.</p>
2596
2596
  * @public
2597
2597
  */
2598
- LensVersion?: string;
2598
+ LensVersion?: string | undefined;
2599
2599
  /**
2600
2600
  * <p>The full name of the lens.</p>
2601
2601
  * @public
2602
2602
  */
2603
- LensName?: string;
2603
+ LensName?: string | undefined;
2604
2604
  /**
2605
2605
  * <p>The status of the lens.</p>
2606
2606
  * @public
2607
2607
  */
2608
- LensStatus?: LensStatus;
2608
+ LensStatus?: LensStatus | undefined;
2609
2609
  /**
2610
2610
  * <p>List of pillar review summaries of lens review in a workload.</p>
2611
2611
  * @public
2612
2612
  */
2613
- PillarReviewSummaries?: PillarReviewSummary[];
2613
+ PillarReviewSummaries?: PillarReviewSummary[] | undefined;
2614
2614
  /**
2615
2615
  * <p>Jira configuration status of the Lens review.</p>
2616
2616
  * @public
2617
2617
  */
2618
- JiraConfiguration?: JiraSelectedQuestionConfiguration;
2618
+ JiraConfiguration?: JiraSelectedQuestionConfiguration | undefined;
2619
2619
  /**
2620
2620
  * <p>The date and time recorded.</p>
2621
2621
  * @public
2622
2622
  */
2623
- UpdatedAt?: Date;
2623
+ UpdatedAt?: Date | undefined;
2624
2624
  /**
2625
2625
  * <p>The notes associated with the workload.</p>
2626
2626
  * <p>For a review template, these are the notes that will be associated with the workload when the template is applied.</p>
2627
2627
  * @public
2628
2628
  */
2629
- Notes?: string;
2629
+ Notes?: string | undefined;
2630
2630
  /**
2631
2631
  * <p>A map from risk names to the count of how many questions have that rating.</p>
2632
2632
  * @public
2633
2633
  */
2634
- RiskCounts?: Partial<Record<Risk, number>>;
2634
+ RiskCounts?: Partial<Record<Risk, number>> | undefined;
2635
2635
  /**
2636
2636
  * <p>The token to use to retrieve the next set of results.</p>
2637
2637
  * @public
2638
2638
  */
2639
- NextToken?: string;
2639
+ NextToken?: string | undefined;
2640
2640
  /**
2641
2641
  * <p>The profiles associated with the workload.</p>
2642
2642
  * @public
2643
2643
  */
2644
- Profiles?: WorkloadProfile[];
2644
+ Profiles?: WorkloadProfile[] | undefined;
2645
2645
  /**
2646
2646
  * <p>A map from risk names to the count of how many questions have that rating.</p>
2647
2647
  * @public
2648
2648
  */
2649
- PrioritizedRiskCounts?: Partial<Record<Risk, number>>;
2649
+ PrioritizedRiskCounts?: Partial<Record<Risk, number>> | undefined;
2650
2650
  }
2651
2651
  /**
2652
2652
  * <p>Output of a get lens review call.</p>
@@ -2657,18 +2657,18 @@ export interface GetLensReviewOutput {
2657
2657
  * <p>The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.</p>
2658
2658
  * @public
2659
2659
  */
2660
- WorkloadId?: string;
2660
+ WorkloadId?: string | undefined;
2661
2661
  /**
2662
2662
  * <p>The milestone number.</p>
2663
2663
  * <p>A workload can have a maximum of 100 milestones.</p>
2664
2664
  * @public
2665
2665
  */
2666
- MilestoneNumber?: number;
2666
+ MilestoneNumber?: number | undefined;
2667
2667
  /**
2668
2668
  * <p>A lens review of a question.</p>
2669
2669
  * @public
2670
2670
  */
2671
- LensReview?: LensReview;
2671
+ LensReview?: LensReview | undefined;
2672
2672
  }
2673
2673
  /**
2674
2674
  * <p>Input to get lens review report.</p>
@@ -2697,7 +2697,7 @@ export interface GetLensReviewReportInput {
2697
2697
  * <p>A workload can have a maximum of 100 milestones.</p>
2698
2698
  * @public
2699
2699
  */
2700
- MilestoneNumber?: number;
2700
+ MilestoneNumber?: number | undefined;
2701
2701
  }
2702
2702
  /**
2703
2703
  * <p>A report of a lens review.</p>
@@ -2715,12 +2715,12 @@ export interface LensReviewReport {
2715
2715
  * <p>Each lens is identified by its <a>LensSummary$LensAlias</a>.</p>
2716
2716
  * @public
2717
2717
  */
2718
- LensAlias?: string;
2718
+ LensAlias?: string | undefined;
2719
2719
  /**
2720
2720
  * <p>The ARN for the lens.</p>
2721
2721
  * @public
2722
2722
  */
2723
- LensArn?: string;
2723
+ LensArn?: string | undefined;
2724
2724
  /**
2725
2725
  * <p>The Base64-encoded string representation of a lens review report.</p>
2726
2726
  * <p>This data can be used to create a PDF file.</p>
@@ -2728,7 +2728,7 @@ export interface LensReviewReport {
2728
2728
  * when <code>PDF</code> format is requested.</p>
2729
2729
  * @public
2730
2730
  */
2731
- Base64String?: string;
2731
+ Base64String?: string | undefined;
2732
2732
  }
2733
2733
  /**
2734
2734
  * <p>Output of a get lens review report call.</p>
@@ -2739,18 +2739,18 @@ export interface GetLensReviewReportOutput {
2739
2739
  * <p>The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.</p>
2740
2740
  * @public
2741
2741
  */
2742
- WorkloadId?: string;
2742
+ WorkloadId?: string | undefined;
2743
2743
  /**
2744
2744
  * <p>The milestone number.</p>
2745
2745
  * <p>A workload can have a maximum of 100 milestones.</p>
2746
2746
  * @public
2747
2747
  */
2748
- MilestoneNumber?: number;
2748
+ MilestoneNumber?: number | undefined;
2749
2749
  /**
2750
2750
  * <p>A report of a lens review.</p>
2751
2751
  * @public
2752
2752
  */
2753
- LensReviewReport?: LensReviewReport;
2753
+ LensReviewReport?: LensReviewReport | undefined;
2754
2754
  }
2755
2755
  /**
2756
2756
  * @public
@@ -2772,12 +2772,12 @@ export interface GetLensVersionDifferenceInput {
2772
2772
  * <p>The base version of the lens.</p>
2773
2773
  * @public
2774
2774
  */
2775
- BaseLensVersion?: string;
2775
+ BaseLensVersion?: string | undefined;
2776
2776
  /**
2777
2777
  * <p>The lens version to target a difference for.</p>
2778
2778
  * @public
2779
2779
  */
2780
- TargetLensVersion?: string;
2780
+ TargetLensVersion?: string | undefined;
2781
2781
  }
2782
2782
  /**
2783
2783
  * <p>A question difference return object.</p>
@@ -2788,17 +2788,17 @@ export interface QuestionDifference {
2788
2788
  * <p>The ID of the question.</p>
2789
2789
  * @public
2790
2790
  */
2791
- QuestionId?: string;
2791
+ QuestionId?: string | undefined;
2792
2792
  /**
2793
2793
  * <p>The title of the question.</p>
2794
2794
  * @public
2795
2795
  */
2796
- QuestionTitle?: string;
2796
+ QuestionTitle?: string | undefined;
2797
2797
  /**
2798
2798
  * <p>Indicates the type of change to the question.</p>
2799
2799
  * @public
2800
2800
  */
2801
- DifferenceStatus?: DifferenceStatus;
2801
+ DifferenceStatus?: DifferenceStatus | undefined;
2802
2802
  }
2803
2803
  /**
2804
2804
  * <p>A pillar difference return object.</p>
@@ -2810,22 +2810,22 @@ export interface PillarDifference {
2810
2810
  * <p>A pillar is identified by its <a>PillarReviewSummary$PillarId</a>.</p>
2811
2811
  * @public
2812
2812
  */
2813
- PillarId?: string;
2813
+ PillarId?: string | undefined;
2814
2814
  /**
2815
2815
  * <p>The name of the pillar.</p>
2816
2816
  * @public
2817
2817
  */
2818
- PillarName?: string;
2818
+ PillarName?: string | undefined;
2819
2819
  /**
2820
2820
  * <p>Indicates the type of change to the pillar.</p>
2821
2821
  * @public
2822
2822
  */
2823
- DifferenceStatus?: DifferenceStatus;
2823
+ DifferenceStatus?: DifferenceStatus | undefined;
2824
2824
  /**
2825
2825
  * <p>List of question differences.</p>
2826
2826
  * @public
2827
2827
  */
2828
- QuestionDifferences?: QuestionDifference[];
2828
+ QuestionDifferences?: QuestionDifference[] | undefined;
2829
2829
  }
2830
2830
  /**
2831
2831
  * <p>The differences between the base and latest versions of the lens.</p>
@@ -2836,7 +2836,7 @@ export interface VersionDifferences {
2836
2836
  * <p>The differences between the base and latest versions of the lens.</p>
2837
2837
  * @public
2838
2838
  */
2839
- PillarDifferences?: PillarDifference[];
2839
+ PillarDifferences?: PillarDifference[] | undefined;
2840
2840
  }
2841
2841
  /**
2842
2842
  * @public
@@ -2853,32 +2853,32 @@ export interface GetLensVersionDifferenceOutput {
2853
2853
  * <p>Each lens is identified by its <a>LensSummary$LensAlias</a>.</p>
2854
2854
  * @public
2855
2855
  */
2856
- LensAlias?: string;
2856
+ LensAlias?: string | undefined;
2857
2857
  /**
2858
2858
  * <p>The ARN for the lens.</p>
2859
2859
  * @public
2860
2860
  */
2861
- LensArn?: string;
2861
+ LensArn?: string | undefined;
2862
2862
  /**
2863
2863
  * <p>The base version of the lens.</p>
2864
2864
  * @public
2865
2865
  */
2866
- BaseLensVersion?: string;
2866
+ BaseLensVersion?: string | undefined;
2867
2867
  /**
2868
2868
  * <p>The target lens version for the lens.</p>
2869
2869
  * @public
2870
2870
  */
2871
- TargetLensVersion?: string;
2871
+ TargetLensVersion?: string | undefined;
2872
2872
  /**
2873
2873
  * <p>The latest version of the lens.</p>
2874
2874
  * @public
2875
2875
  */
2876
- LatestLensVersion?: string;
2876
+ LatestLensVersion?: string | undefined;
2877
2877
  /**
2878
2878
  * <p>The differences between the base and latest versions of the lens.</p>
2879
2879
  * @public
2880
2880
  */
2881
- VersionDifferences?: VersionDifferences;
2881
+ VersionDifferences?: VersionDifferences | undefined;
2882
2882
  }
2883
2883
  /**
2884
2884
  * <p>Input to get a milestone.</p>
@@ -2921,22 +2921,22 @@ export interface WorkloadJiraConfigurationOutput {
2921
2921
  * <p>Workload-level: Jira issue management status.</p>
2922
2922
  * @public
2923
2923
  */
2924
- IssueManagementStatus?: WorkloadIssueManagementStatus;
2924
+ IssueManagementStatus?: WorkloadIssueManagementStatus | undefined;
2925
2925
  /**
2926
2926
  * <p>Workload-level: Jira issue management type.</p>
2927
2927
  * @public
2928
2928
  */
2929
- IssueManagementType?: IssueManagementType;
2929
+ IssueManagementType?: IssueManagementType | undefined;
2930
2930
  /**
2931
2931
  * <p>Workload-level: Jira project key to sync workloads to.</p>
2932
2932
  * @public
2933
2933
  */
2934
- JiraProjectKey?: string;
2934
+ JiraProjectKey?: string | undefined;
2935
2935
  /**
2936
2936
  * <p>Workload-level: Status message on configuration of the Jira integration.</p>
2937
2937
  * @public
2938
2938
  */
2939
- StatusMessage?: string;
2939
+ StatusMessage?: string | undefined;
2940
2940
  }
2941
2941
  /**
2942
2942
  * <p>A workload return object.</p>
@@ -2947,66 +2947,66 @@ export interface Workload {
2947
2947
  * <p>The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.</p>
2948
2948
  * @public
2949
2949
  */
2950
- WorkloadId?: string;
2950
+ WorkloadId?: string | undefined;
2951
2951
  /**
2952
2952
  * <p>The ARN for the workload.</p>
2953
2953
  * @public
2954
2954
  */
2955
- WorkloadArn?: string;
2955
+ WorkloadArn?: string | undefined;
2956
2956
  /**
2957
2957
  * <p>The name of the workload.</p>
2958
2958
  * <p>The name must be unique within an account within an Amazon Web Services Region. Spaces and capitalization
2959
2959
  * are ignored when checking for uniqueness.</p>
2960
2960
  * @public
2961
2961
  */
2962
- WorkloadName?: string;
2962
+ WorkloadName?: string | undefined;
2963
2963
  /**
2964
2964
  * <p>The description for the workload.</p>
2965
2965
  * @public
2966
2966
  */
2967
- Description?: string;
2967
+ Description?: string | undefined;
2968
2968
  /**
2969
2969
  * <p>The environment for the workload.</p>
2970
2970
  * @public
2971
2971
  */
2972
- Environment?: WorkloadEnvironment;
2972
+ Environment?: WorkloadEnvironment | undefined;
2973
2973
  /**
2974
2974
  * <p>The date and time recorded.</p>
2975
2975
  * @public
2976
2976
  */
2977
- UpdatedAt?: Date;
2977
+ UpdatedAt?: Date | undefined;
2978
2978
  /**
2979
2979
  * <p>The list of Amazon Web Services account IDs associated with the workload.</p>
2980
2980
  * @public
2981
2981
  */
2982
- AccountIds?: string[];
2982
+ AccountIds?: string[] | undefined;
2983
2983
  /**
2984
2984
  * <p>The list of Amazon Web Services Regions associated with the workload, for example,
2985
2985
  * <code>us-east-2</code>, or <code>ca-central-1</code>.</p>
2986
2986
  * @public
2987
2987
  */
2988
- AwsRegions?: string[];
2988
+ AwsRegions?: string[] | undefined;
2989
2989
  /**
2990
2990
  * <p> The list of non-Amazon Web Services Regions associated with the workload.</p>
2991
2991
  * @public
2992
2992
  */
2993
- NonAwsRegions?: string[];
2993
+ NonAwsRegions?: string[] | undefined;
2994
2994
  /**
2995
2995
  * <p>The URL of the architectural design for the workload.</p>
2996
2996
  * @public
2997
2997
  */
2998
- ArchitecturalDesign?: string;
2998
+ ArchitecturalDesign?: string | undefined;
2999
2999
  /**
3000
3000
  * <p>The review owner of the workload. The name, email address, or identifier for the
3001
3001
  * primary group or individual that owns the workload review process.</p>
3002
3002
  * @public
3003
3003
  */
3004
- ReviewOwner?: string;
3004
+ ReviewOwner?: string | undefined;
3005
3005
  /**
3006
3006
  * <p>The date and time recorded.</p>
3007
3007
  * @public
3008
3008
  */
3009
- ReviewRestrictionDate?: Date;
3009
+ ReviewRestrictionDate?: Date | undefined;
3010
3010
  /**
3011
3011
  * <p>Flag indicating whether the workload owner has acknowledged that the <i>Review
3012
3012
  * owner</i> field is required.</p>
@@ -3015,7 +3015,7 @@ export interface Workload {
3015
3015
  * added.</p>
3016
3016
  * @public
3017
3017
  */
3018
- IsReviewOwnerUpdateAcknowledged?: boolean;
3018
+ IsReviewOwnerUpdateAcknowledged?: boolean | undefined;
3019
3019
  /**
3020
3020
  * <p>The industry type for the workload.</p>
3021
3021
  * <p>If specified, must be one of the following:</p>
@@ -3158,81 +3158,81 @@ export interface Workload {
3158
3158
  * </ul>
3159
3159
  * @public
3160
3160
  */
3161
- IndustryType?: string;
3161
+ IndustryType?: string | undefined;
3162
3162
  /**
3163
3163
  * <p>The industry for the workload.</p>
3164
3164
  * @public
3165
3165
  */
3166
- Industry?: string;
3166
+ Industry?: string | undefined;
3167
3167
  /**
3168
3168
  * <p>The notes associated with the workload.</p>
3169
3169
  * <p>For a review template, these are the notes that will be associated with the workload when the template is applied.</p>
3170
3170
  * @public
3171
3171
  */
3172
- Notes?: string;
3172
+ Notes?: string | undefined;
3173
3173
  /**
3174
3174
  * <p>The improvement status for a workload.</p>
3175
3175
  * @public
3176
3176
  */
3177
- ImprovementStatus?: WorkloadImprovementStatus;
3177
+ ImprovementStatus?: WorkloadImprovementStatus | undefined;
3178
3178
  /**
3179
3179
  * <p>A map from risk names to the count of how many questions have that rating.</p>
3180
3180
  * @public
3181
3181
  */
3182
- RiskCounts?: Partial<Record<Risk, number>>;
3182
+ RiskCounts?: Partial<Record<Risk, number>> | undefined;
3183
3183
  /**
3184
3184
  * <p>The priorities of the pillars, which are used to order items in the improvement plan.
3185
3185
  * Each pillar is represented by its <a>PillarReviewSummary$PillarId</a>.</p>
3186
3186
  * @public
3187
3187
  */
3188
- PillarPriorities?: string[];
3188
+ PillarPriorities?: string[] | undefined;
3189
3189
  /**
3190
3190
  * <p>The list of lenses associated with the workload. Each lens is identified by its <a>LensSummary$LensAlias</a>.</p>
3191
3191
  * <p>If a review template that specifies lenses is applied to the workload, those lenses are applied
3192
3192
  * to the workload in addition to these lenses.</p>
3193
3193
  * @public
3194
3194
  */
3195
- Lenses?: string[];
3195
+ Lenses?: string[] | undefined;
3196
3196
  /**
3197
3197
  * <p>An Amazon Web Services account ID.</p>
3198
3198
  * @public
3199
3199
  */
3200
- Owner?: string;
3200
+ Owner?: string | undefined;
3201
3201
  /**
3202
3202
  * <p>The ID assigned to the share invitation.</p>
3203
3203
  * @public
3204
3204
  */
3205
- ShareInvitationId?: string;
3205
+ ShareInvitationId?: string | undefined;
3206
3206
  /**
3207
3207
  * <p>The tags associated with the workload.</p>
3208
3208
  * @public
3209
3209
  */
3210
- Tags?: Record<string, string>;
3210
+ Tags?: Record<string, string> | undefined;
3211
3211
  /**
3212
3212
  * <p>Discovery configuration associated to the workload.</p>
3213
3213
  * @public
3214
3214
  */
3215
- DiscoveryConfig?: WorkloadDiscoveryConfig;
3215
+ DiscoveryConfig?: WorkloadDiscoveryConfig | undefined;
3216
3216
  /**
3217
3217
  * <p>List of AppRegistry application ARNs associated to the workload.</p>
3218
3218
  * @public
3219
3219
  */
3220
- Applications?: string[];
3220
+ Applications?: string[] | undefined;
3221
3221
  /**
3222
3222
  * <p>Profile associated with a workload.</p>
3223
3223
  * @public
3224
3224
  */
3225
- Profiles?: WorkloadProfile[];
3225
+ Profiles?: WorkloadProfile[] | undefined;
3226
3226
  /**
3227
3227
  * <p>A map from risk names to the count of how many questions have that rating.</p>
3228
3228
  * @public
3229
3229
  */
3230
- PrioritizedRiskCounts?: Partial<Record<Risk, number>>;
3230
+ PrioritizedRiskCounts?: Partial<Record<Risk, number>> | undefined;
3231
3231
  /**
3232
3232
  * <p>Jira configuration for a specific workload.</p>
3233
3233
  * @public
3234
3234
  */
3235
- JiraConfiguration?: WorkloadJiraConfigurationOutput;
3235
+ JiraConfiguration?: WorkloadJiraConfigurationOutput | undefined;
3236
3236
  }
3237
3237
  /**
3238
3238
  * <p>A milestone return object.</p>
@@ -3244,23 +3244,23 @@ export interface Milestone {
3244
3244
  * <p>A workload can have a maximum of 100 milestones.</p>
3245
3245
  * @public
3246
3246
  */
3247
- MilestoneNumber?: number;
3247
+ MilestoneNumber?: number | undefined;
3248
3248
  /**
3249
3249
  * <p>The name of the milestone in a workload.</p>
3250
3250
  * <p>Milestone names must be unique within a workload.</p>
3251
3251
  * @public
3252
3252
  */
3253
- MilestoneName?: string;
3253
+ MilestoneName?: string | undefined;
3254
3254
  /**
3255
3255
  * <p>The date and time recorded.</p>
3256
3256
  * @public
3257
3257
  */
3258
- RecordedAt?: Date;
3258
+ RecordedAt?: Date | undefined;
3259
3259
  /**
3260
3260
  * <p>A workload return object.</p>
3261
3261
  * @public
3262
3262
  */
3263
- Workload?: Workload;
3263
+ Workload?: Workload | undefined;
3264
3264
  }
3265
3265
  /**
3266
3266
  * <p>Output of a get milestone call.</p>
@@ -3271,12 +3271,12 @@ export interface GetMilestoneOutput {
3271
3271
  * <p>The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.</p>
3272
3272
  * @public
3273
3273
  */
3274
- WorkloadId?: string;
3274
+ WorkloadId?: string | undefined;
3275
3275
  /**
3276
3276
  * <p>A milestone return object.</p>
3277
3277
  * @public
3278
3278
  */
3279
- Milestone?: Milestone;
3279
+ Milestone?: Milestone | undefined;
3280
3280
  }
3281
3281
  /**
3282
3282
  * @public
@@ -3291,7 +3291,7 @@ export interface GetProfileInput {
3291
3291
  * <p>The profile version.</p>
3292
3292
  * @public
3293
3293
  */
3294
- ProfileVersion?: string;
3294
+ ProfileVersion?: string | undefined;
3295
3295
  }
3296
3296
  /**
3297
3297
  * <p>The profile choice.</p>
@@ -3302,17 +3302,17 @@ export interface ProfileChoice {
3302
3302
  * <p>The ID of a choice.</p>
3303
3303
  * @public
3304
3304
  */
3305
- ChoiceId?: string;
3305
+ ChoiceId?: string | undefined;
3306
3306
  /**
3307
3307
  * <p>The title of a choice.</p>
3308
3308
  * @public
3309
3309
  */
3310
- ChoiceTitle?: string;
3310
+ ChoiceTitle?: string | undefined;
3311
3311
  /**
3312
3312
  * <p>The description of a choice.</p>
3313
3313
  * @public
3314
3314
  */
3315
- ChoiceDescription?: string;
3315
+ ChoiceDescription?: string | undefined;
3316
3316
  }
3317
3317
  /**
3318
3318
  * <p>A profile question.</p>
@@ -3323,37 +3323,37 @@ export interface ProfileQuestion {
3323
3323
  * <p>The ID of the question.</p>
3324
3324
  * @public
3325
3325
  */
3326
- QuestionId?: string;
3326
+ QuestionId?: string | undefined;
3327
3327
  /**
3328
3328
  * <p>The title of the question.</p>
3329
3329
  * @public
3330
3330
  */
3331
- QuestionTitle?: string;
3331
+ QuestionTitle?: string | undefined;
3332
3332
  /**
3333
3333
  * <p>The description of the question.</p>
3334
3334
  * @public
3335
3335
  */
3336
- QuestionDescription?: string;
3336
+ QuestionDescription?: string | undefined;
3337
3337
  /**
3338
3338
  * <p>The question choices.</p>
3339
3339
  * @public
3340
3340
  */
3341
- QuestionChoices?: ProfileChoice[];
3341
+ QuestionChoices?: ProfileChoice[] | undefined;
3342
3342
  /**
3343
3343
  * <p>The selected choices.</p>
3344
3344
  * @public
3345
3345
  */
3346
- SelectedChoiceIds?: string[];
3346
+ SelectedChoiceIds?: string[] | undefined;
3347
3347
  /**
3348
3348
  * <p>The minimum number of selected choices.</p>
3349
3349
  * @public
3350
3350
  */
3351
- MinSelectedChoices?: number;
3351
+ MinSelectedChoices?: number | undefined;
3352
3352
  /**
3353
3353
  * <p>The maximum number of selected choices.</p>
3354
3354
  * @public
3355
3355
  */
3356
- MaxSelectedChoices?: number;
3356
+ MaxSelectedChoices?: number | undefined;
3357
3357
  }
3358
3358
  /**
3359
3359
  * <p>A profile.</p>
@@ -3364,52 +3364,52 @@ export interface Profile {
3364
3364
  * <p>The profile ARN.</p>
3365
3365
  * @public
3366
3366
  */
3367
- ProfileArn?: string;
3367
+ ProfileArn?: string | undefined;
3368
3368
  /**
3369
3369
  * <p>The profile version.</p>
3370
3370
  * @public
3371
3371
  */
3372
- ProfileVersion?: string;
3372
+ ProfileVersion?: string | undefined;
3373
3373
  /**
3374
3374
  * <p>The profile name.</p>
3375
3375
  * @public
3376
3376
  */
3377
- ProfileName?: string;
3377
+ ProfileName?: string | undefined;
3378
3378
  /**
3379
3379
  * <p>The profile description.</p>
3380
3380
  * @public
3381
3381
  */
3382
- ProfileDescription?: string;
3382
+ ProfileDescription?: string | undefined;
3383
3383
  /**
3384
3384
  * <p>Profile questions.</p>
3385
3385
  * @public
3386
3386
  */
3387
- ProfileQuestions?: ProfileQuestion[];
3387
+ ProfileQuestions?: ProfileQuestion[] | undefined;
3388
3388
  /**
3389
3389
  * <p>An Amazon Web Services account ID.</p>
3390
3390
  * @public
3391
3391
  */
3392
- Owner?: string;
3392
+ Owner?: string | undefined;
3393
3393
  /**
3394
3394
  * <p>The date and time recorded.</p>
3395
3395
  * @public
3396
3396
  */
3397
- CreatedAt?: Date;
3397
+ CreatedAt?: Date | undefined;
3398
3398
  /**
3399
3399
  * <p>The date and time recorded.</p>
3400
3400
  * @public
3401
3401
  */
3402
- UpdatedAt?: Date;
3402
+ UpdatedAt?: Date | undefined;
3403
3403
  /**
3404
3404
  * <p>The ID assigned to the share invitation.</p>
3405
3405
  * @public
3406
3406
  */
3407
- ShareInvitationId?: string;
3407
+ ShareInvitationId?: string | undefined;
3408
3408
  /**
3409
3409
  * <p>The tags assigned to the profile.</p>
3410
3410
  * @public
3411
3411
  */
3412
- Tags?: Record<string, string>;
3412
+ Tags?: Record<string, string> | undefined;
3413
3413
  }
3414
3414
  /**
3415
3415
  * @public
@@ -3419,7 +3419,7 @@ export interface GetProfileOutput {
3419
3419
  * <p>The profile.</p>
3420
3420
  * @public
3421
3421
  */
3422
- Profile?: Profile;
3422
+ Profile?: Profile | undefined;
3423
3423
  }
3424
3424
  /**
3425
3425
  * @public
@@ -3435,17 +3435,17 @@ export interface ProfileTemplateChoice {
3435
3435
  * <p>The ID of a choice.</p>
3436
3436
  * @public
3437
3437
  */
3438
- ChoiceId?: string;
3438
+ ChoiceId?: string | undefined;
3439
3439
  /**
3440
3440
  * <p>The title of a choice.</p>
3441
3441
  * @public
3442
3442
  */
3443
- ChoiceTitle?: string;
3443
+ ChoiceTitle?: string | undefined;
3444
3444
  /**
3445
3445
  * <p>The description of a choice.</p>
3446
3446
  * @public
3447
3447
  */
3448
- ChoiceDescription?: string;
3448
+ ChoiceDescription?: string | undefined;
3449
3449
  }
3450
3450
  /**
3451
3451
  * <p>A profile template question.</p>
@@ -3456,32 +3456,32 @@ export interface ProfileTemplateQuestion {
3456
3456
  * <p>The ID of the question.</p>
3457
3457
  * @public
3458
3458
  */
3459
- QuestionId?: string;
3459
+ QuestionId?: string | undefined;
3460
3460
  /**
3461
3461
  * <p>The title of the question.</p>
3462
3462
  * @public
3463
3463
  */
3464
- QuestionTitle?: string;
3464
+ QuestionTitle?: string | undefined;
3465
3465
  /**
3466
3466
  * <p>The description of the question.</p>
3467
3467
  * @public
3468
3468
  */
3469
- QuestionDescription?: string;
3469
+ QuestionDescription?: string | undefined;
3470
3470
  /**
3471
3471
  * <p>The question choices.</p>
3472
3472
  * @public
3473
3473
  */
3474
- QuestionChoices?: ProfileTemplateChoice[];
3474
+ QuestionChoices?: ProfileTemplateChoice[] | undefined;
3475
3475
  /**
3476
3476
  * <p>The minimum number of choices selected.</p>
3477
3477
  * @public
3478
3478
  */
3479
- MinSelectedChoices?: number;
3479
+ MinSelectedChoices?: number | undefined;
3480
3480
  /**
3481
3481
  * <p>The maximum number of choices selected.</p>
3482
3482
  * @public
3483
3483
  */
3484
- MaxSelectedChoices?: number;
3484
+ MaxSelectedChoices?: number | undefined;
3485
3485
  }
3486
3486
  /**
3487
3487
  * <p>The profile template.</p>
@@ -3492,22 +3492,22 @@ export interface ProfileTemplate {
3492
3492
  * <p>The name of the profile template.</p>
3493
3493
  * @public
3494
3494
  */
3495
- TemplateName?: string;
3495
+ TemplateName?: string | undefined;
3496
3496
  /**
3497
3497
  * <p>Profile template questions.</p>
3498
3498
  * @public
3499
3499
  */
3500
- TemplateQuestions?: ProfileTemplateQuestion[];
3500
+ TemplateQuestions?: ProfileTemplateQuestion[] | undefined;
3501
3501
  /**
3502
3502
  * <p>The date and time recorded.</p>
3503
3503
  * @public
3504
3504
  */
3505
- CreatedAt?: Date;
3505
+ CreatedAt?: Date | undefined;
3506
3506
  /**
3507
3507
  * <p>The date and time recorded.</p>
3508
3508
  * @public
3509
3509
  */
3510
- UpdatedAt?: Date;
3510
+ UpdatedAt?: Date | undefined;
3511
3511
  }
3512
3512
  /**
3513
3513
  * @public
@@ -3517,7 +3517,7 @@ export interface GetProfileTemplateOutput {
3517
3517
  * <p>The profile template.</p>
3518
3518
  * @public
3519
3519
  */
3520
- ProfileTemplate?: ProfileTemplate;
3520
+ ProfileTemplate?: ProfileTemplate | undefined;
3521
3521
  }
3522
3522
  /**
3523
3523
  * @public
@@ -3562,58 +3562,58 @@ export interface ReviewTemplate {
3562
3562
  * <p>The review template description.</p>
3563
3563
  * @public
3564
3564
  */
3565
- Description?: string;
3565
+ Description?: string | undefined;
3566
3566
  /**
3567
3567
  * <p>The lenses applied to the review template.</p>
3568
3568
  * @public
3569
3569
  */
3570
- Lenses?: string[];
3570
+ Lenses?: string[] | undefined;
3571
3571
  /**
3572
3572
  * <p>The notes associated with the workload.</p>
3573
3573
  * <p>For a review template, these are the notes that will be associated with the workload when the template is applied.</p>
3574
3574
  * @public
3575
3575
  */
3576
- Notes?: string;
3576
+ Notes?: string | undefined;
3577
3577
  /**
3578
3578
  * <p>A count of how many total questions are answered and unanswered in the review template.</p>
3579
3579
  * @public
3580
3580
  */
3581
- QuestionCounts?: Partial<Record<Question, number>>;
3581
+ QuestionCounts?: Partial<Record<Question, number>> | undefined;
3582
3582
  /**
3583
3583
  * <p>An Amazon Web Services account ID.</p>
3584
3584
  * @public
3585
3585
  */
3586
- Owner?: string;
3586
+ Owner?: string | undefined;
3587
3587
  /**
3588
3588
  * <p>The date and time recorded.</p>
3589
3589
  * @public
3590
3590
  */
3591
- UpdatedAt?: Date;
3591
+ UpdatedAt?: Date | undefined;
3592
3592
  /**
3593
3593
  * <p>The review template ARN.</p>
3594
3594
  * @public
3595
3595
  */
3596
- TemplateArn?: string;
3596
+ TemplateArn?: string | undefined;
3597
3597
  /**
3598
3598
  * <p>The name of the review template.</p>
3599
3599
  * @public
3600
3600
  */
3601
- TemplateName?: string;
3601
+ TemplateName?: string | undefined;
3602
3602
  /**
3603
3603
  * <p>The tags assigned to the review template.</p>
3604
3604
  * @public
3605
3605
  */
3606
- Tags?: Record<string, string>;
3606
+ Tags?: Record<string, string> | undefined;
3607
3607
  /**
3608
3608
  * <p>The latest status of a review template.</p>
3609
3609
  * @public
3610
3610
  */
3611
- UpdateStatus?: ReviewTemplateUpdateStatus;
3611
+ UpdateStatus?: ReviewTemplateUpdateStatus | undefined;
3612
3612
  /**
3613
3613
  * <p>The ID assigned to the template share invitation.</p>
3614
3614
  * @public
3615
3615
  */
3616
- ShareInvitationId?: string;
3616
+ ShareInvitationId?: string | undefined;
3617
3617
  }
3618
3618
  /**
3619
3619
  * @public
@@ -3623,7 +3623,7 @@ export interface GetReviewTemplateOutput {
3623
3623
  * <p>The review template.</p>
3624
3624
  * @public
3625
3625
  */
3626
- ReviewTemplate?: ReviewTemplate;
3626
+ ReviewTemplate?: ReviewTemplate | undefined;
3627
3627
  }
3628
3628
  /**
3629
3629
  * @public
@@ -3673,30 +3673,30 @@ export interface ReviewTemplateAnswer {
3673
3673
  * <p>The ID of the question.</p>
3674
3674
  * @public
3675
3675
  */
3676
- QuestionId?: string;
3676
+ QuestionId?: string | undefined;
3677
3677
  /**
3678
3678
  * <p>The ID used to identify a pillar, for example, <code>security</code>.</p>
3679
3679
  * <p>A pillar is identified by its <a>PillarReviewSummary$PillarId</a>.</p>
3680
3680
  * @public
3681
3681
  */
3682
- PillarId?: string;
3682
+ PillarId?: string | undefined;
3683
3683
  /**
3684
3684
  * <p>The title of the question.</p>
3685
3685
  * @public
3686
3686
  */
3687
- QuestionTitle?: string;
3687
+ QuestionTitle?: string | undefined;
3688
3688
  /**
3689
3689
  * <p>The description of the question.</p>
3690
3690
  * @public
3691
3691
  */
3692
- QuestionDescription?: string;
3692
+ QuestionDescription?: string | undefined;
3693
3693
  /**
3694
3694
  * <p>The improvement plan URL for a question in an Amazon Web Services official lenses.</p>
3695
3695
  * <p>This value is only available if the question has been answered.</p>
3696
3696
  * <p>This value does not apply to custom lenses.</p>
3697
3697
  * @public
3698
3698
  */
3699
- ImprovementPlanUrl?: string;
3699
+ ImprovementPlanUrl?: string | undefined;
3700
3700
  /**
3701
3701
  * <p>The helpful resource URL.</p>
3702
3702
  * <p>For Amazon Web Services official lenses, this is the helpful resource URL for a question or choice.</p>
@@ -3704,7 +3704,7 @@ export interface ReviewTemplateAnswer {
3704
3704
  * if <code>HelpfulResourceDisplayText</code> was specified for the question.</p>
3705
3705
  * @public
3706
3706
  */
3707
- HelpfulResourceUrl?: string;
3707
+ HelpfulResourceUrl?: string | undefined;
3708
3708
  /**
3709
3709
  * <p>The helpful resource text to be displayed for a custom lens.</p>
3710
3710
  * <note>
@@ -3712,44 +3712,44 @@ export interface ReviewTemplateAnswer {
3712
3712
  * </note>
3713
3713
  * @public
3714
3714
  */
3715
- HelpfulResourceDisplayText?: string;
3715
+ HelpfulResourceDisplayText?: string | undefined;
3716
3716
  /**
3717
3717
  * <p>List of choices available for a question.</p>
3718
3718
  * @public
3719
3719
  */
3720
- Choices?: Choice[];
3720
+ Choices?: Choice[] | undefined;
3721
3721
  /**
3722
3722
  * <p>List of selected choice IDs in a question answer.</p>
3723
3723
  * <p>The values entered replace the previously selected choices.</p>
3724
3724
  * @public
3725
3725
  */
3726
- SelectedChoices?: string[];
3726
+ SelectedChoices?: string[] | undefined;
3727
3727
  /**
3728
3728
  * <p>A list of selected choices to a question in your review template.</p>
3729
3729
  * @public
3730
3730
  */
3731
- ChoiceAnswers?: ChoiceAnswer[];
3731
+ ChoiceAnswers?: ChoiceAnswer[] | undefined;
3732
3732
  /**
3733
3733
  * <p>Defines whether this question is applicable to a lens review.</p>
3734
3734
  * @public
3735
3735
  */
3736
- IsApplicable?: boolean;
3736
+ IsApplicable?: boolean | undefined;
3737
3737
  /**
3738
3738
  * <p>The status of whether or not this question has been answered.</p>
3739
3739
  * @public
3740
3740
  */
3741
- AnswerStatus?: ReviewTemplateAnswerStatus;
3741
+ AnswerStatus?: ReviewTemplateAnswerStatus | undefined;
3742
3742
  /**
3743
3743
  * <p>The notes associated with the workload.</p>
3744
3744
  * <p>For a review template, these are the notes that will be associated with the workload when the template is applied.</p>
3745
3745
  * @public
3746
3746
  */
3747
- Notes?: string;
3747
+ Notes?: string | undefined;
3748
3748
  /**
3749
3749
  * <p>The reason why the question is not applicable to your review template.</p>
3750
3750
  * @public
3751
3751
  */
3752
- Reason?: AnswerReason;
3752
+ Reason?: AnswerReason | undefined;
3753
3753
  }
3754
3754
  /**
3755
3755
  * @public
@@ -3759,7 +3759,7 @@ export interface GetReviewTemplateAnswerOutput {
3759
3759
  * <p>The review template ARN.</p>
3760
3760
  * @public
3761
3761
  */
3762
- TemplateArn?: string;
3762
+ TemplateArn?: string | undefined;
3763
3763
  /**
3764
3764
  * <p>The alias of the lens.</p>
3765
3765
  * <p>For Amazon Web Services official lenses, this is either the lens alias, such as
@@ -3771,12 +3771,12 @@ export interface GetReviewTemplateAnswerOutput {
3771
3771
  * <p>Each lens is identified by its <a>LensSummary$LensAlias</a>.</p>
3772
3772
  * @public
3773
3773
  */
3774
- LensAlias?: string;
3774
+ LensAlias?: string | undefined;
3775
3775
  /**
3776
3776
  * <p>An answer of the question.</p>
3777
3777
  * @public
3778
3778
  */
3779
- Answer?: ReviewTemplateAnswer;
3779
+ Answer?: ReviewTemplateAnswer | undefined;
3780
3780
  }
3781
3781
  /**
3782
3782
  * @public
@@ -3810,23 +3810,23 @@ export interface ReviewTemplatePillarReviewSummary {
3810
3810
  * <p>A pillar is identified by its <a>PillarReviewSummary$PillarId</a>.</p>
3811
3811
  * @public
3812
3812
  */
3813
- PillarId?: string;
3813
+ PillarId?: string | undefined;
3814
3814
  /**
3815
3815
  * <p>The name of the pillar.</p>
3816
3816
  * @public
3817
3817
  */
3818
- PillarName?: string;
3818
+ PillarName?: string | undefined;
3819
3819
  /**
3820
3820
  * <p>The notes associated with the workload.</p>
3821
3821
  * <p>For a review template, these are the notes that will be associated with the workload when the template is applied.</p>
3822
3822
  * @public
3823
3823
  */
3824
- Notes?: string;
3824
+ Notes?: string | undefined;
3825
3825
  /**
3826
3826
  * <p>A count of how many questions are answered and unanswered in the requested pillar of the lens review.</p>
3827
3827
  * @public
3828
3828
  */
3829
- QuestionCounts?: Partial<Record<Question, number>>;
3829
+ QuestionCounts?: Partial<Record<Question, number>> | undefined;
3830
3830
  }
3831
3831
  /**
3832
3832
  * <p>The lens review of a review template.</p>
@@ -3844,53 +3844,53 @@ export interface ReviewTemplateLensReview {
3844
3844
  * <p>Each lens is identified by its <a>LensSummary$LensAlias</a>.</p>
3845
3845
  * @public
3846
3846
  */
3847
- LensAlias?: string;
3847
+ LensAlias?: string | undefined;
3848
3848
  /**
3849
3849
  * <p>The lens ARN.</p>
3850
3850
  * @public
3851
3851
  */
3852
- LensArn?: string;
3852
+ LensArn?: string | undefined;
3853
3853
  /**
3854
3854
  * <p>The version of the lens.</p>
3855
3855
  * @public
3856
3856
  */
3857
- LensVersion?: string;
3857
+ LensVersion?: string | undefined;
3858
3858
  /**
3859
3859
  * <p>The full name of the lens.</p>
3860
3860
  * @public
3861
3861
  */
3862
- LensName?: string;
3862
+ LensName?: string | undefined;
3863
3863
  /**
3864
3864
  * <p>The status of the lens.</p>
3865
3865
  * @public
3866
3866
  */
3867
- LensStatus?: LensStatus;
3867
+ LensStatus?: LensStatus | undefined;
3868
3868
  /**
3869
3869
  * <p>Pillar review summaries of a lens review.</p>
3870
3870
  * @public
3871
3871
  */
3872
- PillarReviewSummaries?: ReviewTemplatePillarReviewSummary[];
3872
+ PillarReviewSummaries?: ReviewTemplatePillarReviewSummary[] | undefined;
3873
3873
  /**
3874
3874
  * <p>The date and time recorded.</p>
3875
3875
  * @public
3876
3876
  */
3877
- UpdatedAt?: Date;
3877
+ UpdatedAt?: Date | undefined;
3878
3878
  /**
3879
3879
  * <p>The notes associated with the workload.</p>
3880
3880
  * <p>For a review template, these are the notes that will be associated with the workload when the template is applied.</p>
3881
3881
  * @public
3882
3882
  */
3883
- Notes?: string;
3883
+ Notes?: string | undefined;
3884
3884
  /**
3885
3885
  * <p>A count of how many questions are answered and unanswered in the lens review.</p>
3886
3886
  * @public
3887
3887
  */
3888
- QuestionCounts?: Partial<Record<Question, number>>;
3888
+ QuestionCounts?: Partial<Record<Question, number>> | undefined;
3889
3889
  /**
3890
3890
  * <p>The token to use to retrieve the next set of results.</p>
3891
3891
  * @public
3892
3892
  */
3893
- NextToken?: string;
3893
+ NextToken?: string | undefined;
3894
3894
  }
3895
3895
  /**
3896
3896
  * @public
@@ -3900,12 +3900,12 @@ export interface GetReviewTemplateLensReviewOutput {
3900
3900
  * <p>The review template ARN.</p>
3901
3901
  * @public
3902
3902
  */
3903
- TemplateArn?: string;
3903
+ TemplateArn?: string | undefined;
3904
3904
  /**
3905
3905
  * <p>A lens review of a question.</p>
3906
3906
  * @public
3907
3907
  */
3908
- LensReview?: ReviewTemplateLensReview;
3908
+ LensReview?: ReviewTemplateLensReview | undefined;
3909
3909
  }
3910
3910
  /**
3911
3911
  * <p>Input to get a workload.</p>
@@ -3927,7 +3927,7 @@ export interface GetWorkloadOutput {
3927
3927
  * <p>A workload return object.</p>
3928
3928
  * @public
3929
3929
  */
3930
- Workload?: Workload;
3930
+ Workload?: Workload | undefined;
3931
3931
  }
3932
3932
  /**
3933
3933
  * @public
@@ -3944,7 +3944,7 @@ export interface ImportLensInput {
3944
3944
  * <p>Each lens is identified by its <a>LensSummary$LensAlias</a>.</p>
3945
3945
  * @public
3946
3946
  */
3947
- LensAlias?: string;
3947
+ LensAlias?: string | undefined;
3948
3948
  /**
3949
3949
  * <p>The JSON representation of a lens.</p>
3950
3950
  * @public
@@ -3963,12 +3963,12 @@ export interface ImportLensInput {
3963
3963
  * </important>
3964
3964
  * @public
3965
3965
  */
3966
- ClientRequestToken?: string;
3966
+ ClientRequestToken?: string | undefined;
3967
3967
  /**
3968
3968
  * <p>Tags to associate to a lens.</p>
3969
3969
  * @public
3970
3970
  */
3971
- Tags?: Record<string, string>;
3971
+ Tags?: Record<string, string> | undefined;
3972
3972
  }
3973
3973
  /**
3974
3974
  * @public
@@ -3991,12 +3991,12 @@ export interface ImportLensOutput {
3991
3991
  * <p>The ARN for the lens that was created or updated.</p>
3992
3992
  * @public
3993
3993
  */
3994
- LensArn?: string;
3994
+ LensArn?: string | undefined;
3995
3995
  /**
3996
3996
  * <p>The status of the imported lens.</p>
3997
3997
  * @public
3998
3998
  */
3999
- Status?: ImportLensStatus;
3999
+ Status?: ImportLensStatus | undefined;
4000
4000
  }
4001
4001
  /**
4002
4002
  * <p>An improvement summary of a lens review in a workload.</p>
@@ -4007,40 +4007,40 @@ export interface ImprovementSummary {
4007
4007
  * <p>The ID of the question.</p>
4008
4008
  * @public
4009
4009
  */
4010
- QuestionId?: string;
4010
+ QuestionId?: string | undefined;
4011
4011
  /**
4012
4012
  * <p>The ID used to identify a pillar, for example, <code>security</code>.</p>
4013
4013
  * <p>A pillar is identified by its <a>PillarReviewSummary$PillarId</a>.</p>
4014
4014
  * @public
4015
4015
  */
4016
- PillarId?: string;
4016
+ PillarId?: string | undefined;
4017
4017
  /**
4018
4018
  * <p>The title of the question.</p>
4019
4019
  * @public
4020
4020
  */
4021
- QuestionTitle?: string;
4021
+ QuestionTitle?: string | undefined;
4022
4022
  /**
4023
4023
  * <p>The risk for a given workload, lens review, pillar, or question.</p>
4024
4024
  * @public
4025
4025
  */
4026
- Risk?: Risk;
4026
+ Risk?: Risk | undefined;
4027
4027
  /**
4028
4028
  * <p>The improvement plan URL for a question in an Amazon Web Services official lenses.</p>
4029
4029
  * <p>This value is only available if the question has been answered.</p>
4030
4030
  * <p>This value does not apply to custom lenses.</p>
4031
4031
  * @public
4032
4032
  */
4033
- ImprovementPlanUrl?: string;
4033
+ ImprovementPlanUrl?: string | undefined;
4034
4034
  /**
4035
4035
  * <p>The improvement plan details.</p>
4036
4036
  * @public
4037
4037
  */
4038
- ImprovementPlans?: ChoiceImprovementPlan[];
4038
+ ImprovementPlans?: ChoiceImprovementPlan[] | undefined;
4039
4039
  /**
4040
4040
  * <p>Configuration of the Jira integration.</p>
4041
4041
  * @public
4042
4042
  */
4043
- JiraConfiguration?: JiraConfiguration;
4043
+ JiraConfiguration?: JiraConfiguration | undefined;
4044
4044
  }
4045
4045
  /**
4046
4046
  * @public
@@ -4069,47 +4069,47 @@ export interface LensReviewSummary {
4069
4069
  * <p>Each lens is identified by its <a>LensSummary$LensAlias</a>.</p>
4070
4070
  * @public
4071
4071
  */
4072
- LensAlias?: string;
4072
+ LensAlias?: string | undefined;
4073
4073
  /**
4074
4074
  * <p>The ARN for the lens.</p>
4075
4075
  * @public
4076
4076
  */
4077
- LensArn?: string;
4077
+ LensArn?: string | undefined;
4078
4078
  /**
4079
4079
  * <p>The version of the lens.</p>
4080
4080
  * @public
4081
4081
  */
4082
- LensVersion?: string;
4082
+ LensVersion?: string | undefined;
4083
4083
  /**
4084
4084
  * <p>The full name of the lens.</p>
4085
4085
  * @public
4086
4086
  */
4087
- LensName?: string;
4087
+ LensName?: string | undefined;
4088
4088
  /**
4089
4089
  * <p>The status of the lens.</p>
4090
4090
  * @public
4091
4091
  */
4092
- LensStatus?: LensStatus;
4092
+ LensStatus?: LensStatus | undefined;
4093
4093
  /**
4094
4094
  * <p>The date and time recorded.</p>
4095
4095
  * @public
4096
4096
  */
4097
- UpdatedAt?: Date;
4097
+ UpdatedAt?: Date | undefined;
4098
4098
  /**
4099
4099
  * <p>A map from risk names to the count of how many questions have that rating.</p>
4100
4100
  * @public
4101
4101
  */
4102
- RiskCounts?: Partial<Record<Risk, number>>;
4102
+ RiskCounts?: Partial<Record<Risk, number>> | undefined;
4103
4103
  /**
4104
4104
  * <p>The profiles associated with the workload.</p>
4105
4105
  * @public
4106
4106
  */
4107
- Profiles?: WorkloadProfile[];
4107
+ Profiles?: WorkloadProfile[] | undefined;
4108
4108
  /**
4109
4109
  * <p>A map from risk names to the count of how many questions have that rating.</p>
4110
4110
  * @public
4111
4111
  */
4112
- PrioritizedRiskCounts?: Partial<Record<Risk, number>>;
4112
+ PrioritizedRiskCounts?: Partial<Record<Risk, number>> | undefined;
4113
4113
  }
4114
4114
  /**
4115
4115
  * @public
@@ -4138,23 +4138,23 @@ export interface LensShareSummary {
4138
4138
  * <p>The ID associated with the share.</p>
4139
4139
  * @public
4140
4140
  */
4141
- ShareId?: string;
4141
+ ShareId?: string | undefined;
4142
4142
  /**
4143
4143
  * <p>The Amazon Web Services account ID, organization ID, or organizational unit (OU) ID with which
4144
4144
  * the workload, lens, profile, or review template is shared.</p>
4145
4145
  * @public
4146
4146
  */
4147
- SharedWith?: string;
4147
+ SharedWith?: string | undefined;
4148
4148
  /**
4149
4149
  * <p>The status of the share request.</p>
4150
4150
  * @public
4151
4151
  */
4152
- Status?: ShareStatus;
4152
+ Status?: ShareStatus | undefined;
4153
4153
  /**
4154
4154
  * <p>Optional message to compliment the Status field.</p>
4155
4155
  * @public
4156
4156
  */
4157
- StatusMessage?: string;
4157
+ StatusMessage?: string | undefined;
4158
4158
  }
4159
4159
  /**
4160
4160
  * @public
@@ -4178,7 +4178,7 @@ export interface LensSummary {
4178
4178
  * <p>The ARN of the lens.</p>
4179
4179
  * @public
4180
4180
  */
4181
- LensArn?: string;
4181
+ LensArn?: string | undefined;
4182
4182
  /**
4183
4183
  * <p>The alias of the lens.</p>
4184
4184
  * <p>For Amazon Web Services official lenses, this is either the lens alias, such as
@@ -4190,47 +4190,47 @@ export interface LensSummary {
4190
4190
  * <p>Each lens is identified by its <a>LensSummary$LensAlias</a>.</p>
4191
4191
  * @public
4192
4192
  */
4193
- LensAlias?: string;
4193
+ LensAlias?: string | undefined;
4194
4194
  /**
4195
4195
  * <p>The full name of the lens.</p>
4196
4196
  * @public
4197
4197
  */
4198
- LensName?: string;
4198
+ LensName?: string | undefined;
4199
4199
  /**
4200
4200
  * <p>The type of the lens.</p>
4201
4201
  * @public
4202
4202
  */
4203
- LensType?: LensType;
4203
+ LensType?: LensType | undefined;
4204
4204
  /**
4205
4205
  * <p>The description of the lens.</p>
4206
4206
  * @public
4207
4207
  */
4208
- Description?: string;
4208
+ Description?: string | undefined;
4209
4209
  /**
4210
4210
  * <p>The date and time recorded.</p>
4211
4211
  * @public
4212
4212
  */
4213
- CreatedAt?: Date;
4213
+ CreatedAt?: Date | undefined;
4214
4214
  /**
4215
4215
  * <p>The date and time recorded.</p>
4216
4216
  * @public
4217
4217
  */
4218
- UpdatedAt?: Date;
4218
+ UpdatedAt?: Date | undefined;
4219
4219
  /**
4220
4220
  * <p>The version of the lens.</p>
4221
4221
  * @public
4222
4222
  */
4223
- LensVersion?: string;
4223
+ LensVersion?: string | undefined;
4224
4224
  /**
4225
4225
  * <p>An Amazon Web Services account ID.</p>
4226
4226
  * @public
4227
4227
  */
4228
- Owner?: string;
4228
+ Owner?: string | undefined;
4229
4229
  /**
4230
4230
  * <p>The status of the lens.</p>
4231
4231
  * @public
4232
4232
  */
4233
- LensStatus?: LensStatus;
4233
+ LensStatus?: LensStatus | undefined;
4234
4234
  }
4235
4235
  /**
4236
4236
  * <p>Lens upgrade summary return object.</p>
@@ -4241,14 +4241,14 @@ export interface LensUpgradeSummary {
4241
4241
  * <p>The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.</p>
4242
4242
  * @public
4243
4243
  */
4244
- WorkloadId?: string;
4244
+ WorkloadId?: string | undefined;
4245
4245
  /**
4246
4246
  * <p>The name of the workload.</p>
4247
4247
  * <p>The name must be unique within an account within an Amazon Web Services Region. Spaces and capitalization
4248
4248
  * are ignored when checking for uniqueness.</p>
4249
4249
  * @public
4250
4250
  */
4251
- WorkloadName?: string;
4251
+ WorkloadName?: string | undefined;
4252
4252
  /**
4253
4253
  * <p>The alias of the lens.</p>
4254
4254
  * <p>For Amazon Web Services official lenses, this is either the lens alias, such as
@@ -4260,35 +4260,35 @@ export interface LensUpgradeSummary {
4260
4260
  * <p>Each lens is identified by its <a>LensSummary$LensAlias</a>.</p>
4261
4261
  * @public
4262
4262
  */
4263
- LensAlias?: string;
4263
+ LensAlias?: string | undefined;
4264
4264
  /**
4265
4265
  * <p>The ARN for the lens.</p>
4266
4266
  * @public
4267
4267
  */
4268
- LensArn?: string;
4268
+ LensArn?: string | undefined;
4269
4269
  /**
4270
4270
  * <p>The current version of the lens.</p>
4271
4271
  * @public
4272
4272
  */
4273
- CurrentLensVersion?: string;
4273
+ CurrentLensVersion?: string | undefined;
4274
4274
  /**
4275
4275
  * <p>The latest version of the lens.</p>
4276
4276
  * @public
4277
4277
  */
4278
- LatestLensVersion?: string;
4278
+ LatestLensVersion?: string | undefined;
4279
4279
  /**
4280
4280
  * <p>
4281
4281
  * <code>ResourceArn</code> of the lens being upgraded</p>
4282
4282
  * @public
4283
4283
  */
4284
- ResourceArn?: string;
4284
+ ResourceArn?: string | undefined;
4285
4285
  /**
4286
4286
  * <p>The name of the workload.</p>
4287
4287
  * <p>The name must be unique within an account within an Amazon Web Services Region. Spaces and capitalization
4288
4288
  * are ignored when checking for uniqueness.</p>
4289
4289
  * @public
4290
4290
  */
4291
- ResourceName?: string;
4291
+ ResourceName?: string | undefined;
4292
4292
  }
4293
4293
  /**
4294
4294
  * @public
@@ -4329,28 +4329,28 @@ export interface ListAnswersInput {
4329
4329
  * <p>A pillar is identified by its <a>PillarReviewSummary$PillarId</a>.</p>
4330
4330
  * @public
4331
4331
  */
4332
- PillarId?: string;
4332
+ PillarId?: string | undefined;
4333
4333
  /**
4334
4334
  * <p>The milestone number.</p>
4335
4335
  * <p>A workload can have a maximum of 100 milestones.</p>
4336
4336
  * @public
4337
4337
  */
4338
- MilestoneNumber?: number;
4338
+ MilestoneNumber?: number | undefined;
4339
4339
  /**
4340
4340
  * <p>The token to use to retrieve the next set of results.</p>
4341
4341
  * @public
4342
4342
  */
4343
- NextToken?: string;
4343
+ NextToken?: string | undefined;
4344
4344
  /**
4345
4345
  * <p>The maximum number of results to return for this request.</p>
4346
4346
  * @public
4347
4347
  */
4348
- MaxResults?: number;
4348
+ MaxResults?: number | undefined;
4349
4349
  /**
4350
4350
  * <p>The priority of the question.</p>
4351
4351
  * @public
4352
4352
  */
4353
- QuestionPriority?: QuestionPriority;
4353
+ QuestionPriority?: QuestionPriority | undefined;
4354
4354
  }
4355
4355
  /**
4356
4356
  * <p>Output of a list answers call.</p>
@@ -4361,13 +4361,13 @@ export interface ListAnswersOutput {
4361
4361
  * <p>The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.</p>
4362
4362
  * @public
4363
4363
  */
4364
- WorkloadId?: string;
4364
+ WorkloadId?: string | undefined;
4365
4365
  /**
4366
4366
  * <p>The milestone number.</p>
4367
4367
  * <p>A workload can have a maximum of 100 milestones.</p>
4368
4368
  * @public
4369
4369
  */
4370
- MilestoneNumber?: number;
4370
+ MilestoneNumber?: number | undefined;
4371
4371
  /**
4372
4372
  * <p>The alias of the lens.</p>
4373
4373
  * <p>For Amazon Web Services official lenses, this is either the lens alias, such as
@@ -4379,22 +4379,22 @@ export interface ListAnswersOutput {
4379
4379
  * <p>Each lens is identified by its <a>LensSummary$LensAlias</a>.</p>
4380
4380
  * @public
4381
4381
  */
4382
- LensAlias?: string;
4382
+ LensAlias?: string | undefined;
4383
4383
  /**
4384
4384
  * <p>The ARN for the lens.</p>
4385
4385
  * @public
4386
4386
  */
4387
- LensArn?: string;
4387
+ LensArn?: string | undefined;
4388
4388
  /**
4389
4389
  * <p>List of answer summaries of lens review in a workload.</p>
4390
4390
  * @public
4391
4391
  */
4392
- AnswerSummaries?: AnswerSummary[];
4392
+ AnswerSummaries?: AnswerSummary[] | undefined;
4393
4393
  /**
4394
4394
  * <p>The token to use to retrieve the next set of results.</p>
4395
4395
  * @public
4396
4396
  */
4397
- NextToken?: string;
4397
+ NextToken?: string | undefined;
4398
4398
  }
4399
4399
  /**
4400
4400
  * @public
@@ -4409,12 +4409,12 @@ export interface ListCheckDetailsInput {
4409
4409
  * <p>The token to use to retrieve the next set of results.</p>
4410
4410
  * @public
4411
4411
  */
4412
- NextToken?: string;
4412
+ NextToken?: string | undefined;
4413
4413
  /**
4414
4414
  * <p>The maximum number of results to return for this request.</p>
4415
4415
  * @public
4416
4416
  */
4417
- MaxResults?: number;
4417
+ MaxResults?: number | undefined;
4418
4418
  /**
4419
4419
  * <p>Well-Architected Lens ARN.</p>
4420
4420
  * @public
@@ -4445,12 +4445,12 @@ export interface ListCheckDetailsOutput {
4445
4445
  * <p>The details about the Trusted Advisor checks related to the Well-Architected best practice.</p>
4446
4446
  * @public
4447
4447
  */
4448
- CheckDetails?: CheckDetail[];
4448
+ CheckDetails?: CheckDetail[] | undefined;
4449
4449
  /**
4450
4450
  * <p>The token to use to retrieve the next set of results.</p>
4451
4451
  * @public
4452
4452
  */
4453
- NextToken?: string;
4453
+ NextToken?: string | undefined;
4454
4454
  }
4455
4455
  /**
4456
4456
  * @public
@@ -4465,12 +4465,12 @@ export interface ListCheckSummariesInput {
4465
4465
  * <p>The token to use to retrieve the next set of results.</p>
4466
4466
  * @public
4467
4467
  */
4468
- NextToken?: string;
4468
+ NextToken?: string | undefined;
4469
4469
  /**
4470
4470
  * <p>The maximum number of results to return for this request.</p>
4471
4471
  * @public
4472
4472
  */
4473
- MaxResults?: number;
4473
+ MaxResults?: number | undefined;
4474
4474
  /**
4475
4475
  * <p>Well-Architected Lens ARN.</p>
4476
4476
  * @public
@@ -4501,12 +4501,12 @@ export interface ListCheckSummariesOutput {
4501
4501
  * <p>List of Trusted Advisor summaries related to the Well-Architected best practice.</p>
4502
4502
  * @public
4503
4503
  */
4504
- CheckSummaries?: CheckSummary[];
4504
+ CheckSummaries?: CheckSummary[] | undefined;
4505
4505
  /**
4506
4506
  * <p>The token to use to retrieve the next set of results.</p>
4507
4507
  * @public
4508
4508
  */
4509
- NextToken?: string;
4509
+ NextToken?: string | undefined;
4510
4510
  }
4511
4511
  /**
4512
4512
  * <p>Input to list lenses.</p>
@@ -4517,27 +4517,27 @@ export interface ListLensesInput {
4517
4517
  * <p>The token to use to retrieve the next set of results.</p>
4518
4518
  * @public
4519
4519
  */
4520
- NextToken?: string;
4520
+ NextToken?: string | undefined;
4521
4521
  /**
4522
4522
  * <p>The maximum number of results to return for this request.</p>
4523
4523
  * @public
4524
4524
  */
4525
- MaxResults?: number;
4525
+ MaxResults?: number | undefined;
4526
4526
  /**
4527
4527
  * <p>The type of lenses to be returned.</p>
4528
4528
  * @public
4529
4529
  */
4530
- LensType?: LensType;
4530
+ LensType?: LensType | undefined;
4531
4531
  /**
4532
4532
  * <p>The status of lenses to be returned.</p>
4533
4533
  * @public
4534
4534
  */
4535
- LensStatus?: LensStatusType;
4535
+ LensStatus?: LensStatusType | undefined;
4536
4536
  /**
4537
4537
  * <p>The full name of the lens.</p>
4538
4538
  * @public
4539
4539
  */
4540
- LensName?: string;
4540
+ LensName?: string | undefined;
4541
4541
  }
4542
4542
  /**
4543
4543
  * <p>Output of a list lenses call.</p>
@@ -4548,12 +4548,12 @@ export interface ListLensesOutput {
4548
4548
  * <p>List of lens summaries of available lenses.</p>
4549
4549
  * @public
4550
4550
  */
4551
- LensSummaries?: LensSummary[];
4551
+ LensSummaries?: LensSummary[] | undefined;
4552
4552
  /**
4553
4553
  * <p>The token to use to retrieve the next set of results.</p>
4554
4554
  * @public
4555
4555
  */
4556
- NextToken?: string;
4556
+ NextToken?: string | undefined;
4557
4557
  }
4558
4558
  /**
4559
4559
  * <p>Input to list lens review improvements.</p>
@@ -4582,28 +4582,28 @@ export interface ListLensReviewImprovementsInput {
4582
4582
  * <p>A pillar is identified by its <a>PillarReviewSummary$PillarId</a>.</p>
4583
4583
  * @public
4584
4584
  */
4585
- PillarId?: string;
4585
+ PillarId?: string | undefined;
4586
4586
  /**
4587
4587
  * <p>The milestone number.</p>
4588
4588
  * <p>A workload can have a maximum of 100 milestones.</p>
4589
4589
  * @public
4590
4590
  */
4591
- MilestoneNumber?: number;
4591
+ MilestoneNumber?: number | undefined;
4592
4592
  /**
4593
4593
  * <p>The token to use to retrieve the next set of results.</p>
4594
4594
  * @public
4595
4595
  */
4596
- NextToken?: string;
4596
+ NextToken?: string | undefined;
4597
4597
  /**
4598
4598
  * <p>The maximum number of results to return for this request.</p>
4599
4599
  * @public
4600
4600
  */
4601
- MaxResults?: number;
4601
+ MaxResults?: number | undefined;
4602
4602
  /**
4603
4603
  * <p>The priority of the question.</p>
4604
4604
  * @public
4605
4605
  */
4606
- QuestionPriority?: QuestionPriority;
4606
+ QuestionPriority?: QuestionPriority | undefined;
4607
4607
  }
4608
4608
  /**
4609
4609
  * <p>Output of a list lens review improvements call.</p>
@@ -4614,13 +4614,13 @@ export interface ListLensReviewImprovementsOutput {
4614
4614
  * <p>The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.</p>
4615
4615
  * @public
4616
4616
  */
4617
- WorkloadId?: string;
4617
+ WorkloadId?: string | undefined;
4618
4618
  /**
4619
4619
  * <p>The milestone number.</p>
4620
4620
  * <p>A workload can have a maximum of 100 milestones.</p>
4621
4621
  * @public
4622
4622
  */
4623
- MilestoneNumber?: number;
4623
+ MilestoneNumber?: number | undefined;
4624
4624
  /**
4625
4625
  * <p>The alias of the lens.</p>
4626
4626
  * <p>For Amazon Web Services official lenses, this is either the lens alias, such as
@@ -4632,22 +4632,22 @@ export interface ListLensReviewImprovementsOutput {
4632
4632
  * <p>Each lens is identified by its <a>LensSummary$LensAlias</a>.</p>
4633
4633
  * @public
4634
4634
  */
4635
- LensAlias?: string;
4635
+ LensAlias?: string | undefined;
4636
4636
  /**
4637
4637
  * <p>The ARN for the lens.</p>
4638
4638
  * @public
4639
4639
  */
4640
- LensArn?: string;
4640
+ LensArn?: string | undefined;
4641
4641
  /**
4642
4642
  * <p>List of improvement summaries of lens review in a workload.</p>
4643
4643
  * @public
4644
4644
  */
4645
- ImprovementSummaries?: ImprovementSummary[];
4645
+ ImprovementSummaries?: ImprovementSummary[] | undefined;
4646
4646
  /**
4647
4647
  * <p>The token to use to retrieve the next set of results.</p>
4648
4648
  * @public
4649
4649
  */
4650
- NextToken?: string;
4650
+ NextToken?: string | undefined;
4651
4651
  }
4652
4652
  /**
4653
4653
  * <p>Input to list lens reviews.</p>
@@ -4664,17 +4664,17 @@ export interface ListLensReviewsInput {
4664
4664
  * <p>A workload can have a maximum of 100 milestones.</p>
4665
4665
  * @public
4666
4666
  */
4667
- MilestoneNumber?: number;
4667
+ MilestoneNumber?: number | undefined;
4668
4668
  /**
4669
4669
  * <p>The token to use to retrieve the next set of results.</p>
4670
4670
  * @public
4671
4671
  */
4672
- NextToken?: string;
4672
+ NextToken?: string | undefined;
4673
4673
  /**
4674
4674
  * <p>The maximum number of results to return for this request.</p>
4675
4675
  * @public
4676
4676
  */
4677
- MaxResults?: number;
4677
+ MaxResults?: number | undefined;
4678
4678
  }
4679
4679
  /**
4680
4680
  * <p>Output of a list lens reviews call.</p>
@@ -4685,23 +4685,23 @@ export interface ListLensReviewsOutput {
4685
4685
  * <p>The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.</p>
4686
4686
  * @public
4687
4687
  */
4688
- WorkloadId?: string;
4688
+ WorkloadId?: string | undefined;
4689
4689
  /**
4690
4690
  * <p>The milestone number.</p>
4691
4691
  * <p>A workload can have a maximum of 100 milestones.</p>
4692
4692
  * @public
4693
4693
  */
4694
- MilestoneNumber?: number;
4694
+ MilestoneNumber?: number | undefined;
4695
4695
  /**
4696
4696
  * <p>List of lens summaries of lens reviews of a workload.</p>
4697
4697
  * @public
4698
4698
  */
4699
- LensReviewSummaries?: LensReviewSummary[];
4699
+ LensReviewSummaries?: LensReviewSummary[] | undefined;
4700
4700
  /**
4701
4701
  * <p>The token to use to retrieve the next set of results.</p>
4702
4702
  * @public
4703
4703
  */
4704
- NextToken?: string;
4704
+ NextToken?: string | undefined;
4705
4705
  }
4706
4706
  /**
4707
4707
  * @public
@@ -4723,22 +4723,22 @@ export interface ListLensSharesInput {
4723
4723
  * <p>The Amazon Web Services account ID, organization ID, or organizational unit (OU) ID with which the lens is shared.</p>
4724
4724
  * @public
4725
4725
  */
4726
- SharedWithPrefix?: string;
4726
+ SharedWithPrefix?: string | undefined;
4727
4727
  /**
4728
4728
  * <p>The token to use to retrieve the next set of results.</p>
4729
4729
  * @public
4730
4730
  */
4731
- NextToken?: string;
4731
+ NextToken?: string | undefined;
4732
4732
  /**
4733
4733
  * <p>The maximum number of results to return for this request.</p>
4734
4734
  * @public
4735
4735
  */
4736
- MaxResults?: number;
4736
+ MaxResults?: number | undefined;
4737
4737
  /**
4738
4738
  * <p>The status of the share request.</p>
4739
4739
  * @public
4740
4740
  */
4741
- Status?: ShareStatus;
4741
+ Status?: ShareStatus | undefined;
4742
4742
  }
4743
4743
  /**
4744
4744
  * @public
@@ -4748,12 +4748,12 @@ export interface ListLensSharesOutput {
4748
4748
  * <p>A list of lens share summaries.</p>
4749
4749
  * @public
4750
4750
  */
4751
- LensShareSummaries?: LensShareSummary[];
4751
+ LensShareSummaries?: LensShareSummary[] | undefined;
4752
4752
  /**
4753
4753
  * <p>The token to use to retrieve the next set of results.</p>
4754
4754
  * @public
4755
4755
  */
4756
- NextToken?: string;
4756
+ NextToken?: string | undefined;
4757
4757
  }
4758
4758
  /**
4759
4759
  * <p>Input to list all milestones for a workload.</p>
@@ -4769,12 +4769,12 @@ export interface ListMilestonesInput {
4769
4769
  * <p>The token to use to retrieve the next set of results.</p>
4770
4770
  * @public
4771
4771
  */
4772
- NextToken?: string;
4772
+ NextToken?: string | undefined;
4773
4773
  /**
4774
4774
  * <p>The maximum number of results to return for this request.</p>
4775
4775
  * @public
4776
4776
  */
4777
- MaxResults?: number;
4777
+ MaxResults?: number | undefined;
4778
4778
  }
4779
4779
  /**
4780
4780
  * <p>A workload summary return object.</p>
@@ -4785,56 +4785,56 @@ export interface WorkloadSummary {
4785
4785
  * <p>The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.</p>
4786
4786
  * @public
4787
4787
  */
4788
- WorkloadId?: string;
4788
+ WorkloadId?: string | undefined;
4789
4789
  /**
4790
4790
  * <p>The ARN for the workload.</p>
4791
4791
  * @public
4792
4792
  */
4793
- WorkloadArn?: string;
4793
+ WorkloadArn?: string | undefined;
4794
4794
  /**
4795
4795
  * <p>The name of the workload.</p>
4796
4796
  * <p>The name must be unique within an account within an Amazon Web Services Region. Spaces and capitalization
4797
4797
  * are ignored when checking for uniqueness.</p>
4798
4798
  * @public
4799
4799
  */
4800
- WorkloadName?: string;
4800
+ WorkloadName?: string | undefined;
4801
4801
  /**
4802
4802
  * <p>An Amazon Web Services account ID.</p>
4803
4803
  * @public
4804
4804
  */
4805
- Owner?: string;
4805
+ Owner?: string | undefined;
4806
4806
  /**
4807
4807
  * <p>The date and time recorded.</p>
4808
4808
  * @public
4809
4809
  */
4810
- UpdatedAt?: Date;
4810
+ UpdatedAt?: Date | undefined;
4811
4811
  /**
4812
4812
  * <p>The list of lenses associated with the workload. Each lens is identified by its <a>LensSummary$LensAlias</a>.</p>
4813
4813
  * <p>If a review template that specifies lenses is applied to the workload, those lenses are applied
4814
4814
  * to the workload in addition to these lenses.</p>
4815
4815
  * @public
4816
4816
  */
4817
- Lenses?: string[];
4817
+ Lenses?: string[] | undefined;
4818
4818
  /**
4819
4819
  * <p>A map from risk names to the count of how many questions have that rating.</p>
4820
4820
  * @public
4821
4821
  */
4822
- RiskCounts?: Partial<Record<Risk, number>>;
4822
+ RiskCounts?: Partial<Record<Risk, number>> | undefined;
4823
4823
  /**
4824
4824
  * <p>The improvement status for a workload.</p>
4825
4825
  * @public
4826
4826
  */
4827
- ImprovementStatus?: WorkloadImprovementStatus;
4827
+ ImprovementStatus?: WorkloadImprovementStatus | undefined;
4828
4828
  /**
4829
4829
  * <p>Profile associated with a workload.</p>
4830
4830
  * @public
4831
4831
  */
4832
- Profiles?: WorkloadProfile[];
4832
+ Profiles?: WorkloadProfile[] | undefined;
4833
4833
  /**
4834
4834
  * <p>A map from risk names to the count of how many questions have that rating.</p>
4835
4835
  * @public
4836
4836
  */
4837
- PrioritizedRiskCounts?: Partial<Record<Risk, number>>;
4837
+ PrioritizedRiskCounts?: Partial<Record<Risk, number>> | undefined;
4838
4838
  }
4839
4839
  /**
4840
4840
  * <p>A milestone summary return object.</p>
@@ -4846,23 +4846,23 @@ export interface MilestoneSummary {
4846
4846
  * <p>A workload can have a maximum of 100 milestones.</p>
4847
4847
  * @public
4848
4848
  */
4849
- MilestoneNumber?: number;
4849
+ MilestoneNumber?: number | undefined;
4850
4850
  /**
4851
4851
  * <p>The name of the milestone in a workload.</p>
4852
4852
  * <p>Milestone names must be unique within a workload.</p>
4853
4853
  * @public
4854
4854
  */
4855
- MilestoneName?: string;
4855
+ MilestoneName?: string | undefined;
4856
4856
  /**
4857
4857
  * <p>The date and time recorded.</p>
4858
4858
  * @public
4859
4859
  */
4860
- RecordedAt?: Date;
4860
+ RecordedAt?: Date | undefined;
4861
4861
  /**
4862
4862
  * <p>A workload summary return object.</p>
4863
4863
  * @public
4864
4864
  */
4865
- WorkloadSummary?: WorkloadSummary;
4865
+ WorkloadSummary?: WorkloadSummary | undefined;
4866
4866
  }
4867
4867
  /**
4868
4868
  * <p>Output of a list milestones call.</p>
@@ -4873,17 +4873,17 @@ export interface ListMilestonesOutput {
4873
4873
  * <p>The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.</p>
4874
4874
  * @public
4875
4875
  */
4876
- WorkloadId?: string;
4876
+ WorkloadId?: string | undefined;
4877
4877
  /**
4878
4878
  * <p>A list of milestone summaries.</p>
4879
4879
  * @public
4880
4880
  */
4881
- MilestoneSummaries?: MilestoneSummary[];
4881
+ MilestoneSummaries?: MilestoneSummary[] | undefined;
4882
4882
  /**
4883
4883
  * <p>The token to use to retrieve the next set of results.</p>
4884
4884
  * @public
4885
4885
  */
4886
- NextToken?: string;
4886
+ NextToken?: string | undefined;
4887
4887
  }
4888
4888
  /**
4889
4889
  * @public
@@ -4893,17 +4893,17 @@ export interface ListNotificationsInput {
4893
4893
  * <p>The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.</p>
4894
4894
  * @public
4895
4895
  */
4896
- WorkloadId?: string;
4896
+ WorkloadId?: string | undefined;
4897
4897
  /**
4898
4898
  * <p>The token to use to retrieve the next set of results.</p>
4899
4899
  * @public
4900
4900
  */
4901
- NextToken?: string;
4901
+ NextToken?: string | undefined;
4902
4902
  /**
4903
4903
  * <p>The maximum number of results to return for this request.</p>
4904
4904
  * @public
4905
4905
  */
4906
- MaxResults?: number;
4906
+ MaxResults?: number | undefined;
4907
4907
  /**
4908
4908
  * <p>The ARN for the related resource for the notification.</p>
4909
4909
  * <note>
@@ -4911,7 +4911,7 @@ export interface ListNotificationsInput {
4911
4911
  * </note>
4912
4912
  * @public
4913
4913
  */
4914
- ResourceArn?: string;
4914
+ ResourceArn?: string | undefined;
4915
4915
  }
4916
4916
  /**
4917
4917
  * @public
@@ -4934,12 +4934,12 @@ export interface NotificationSummary {
4934
4934
  * <p>The type of notification.</p>
4935
4935
  * @public
4936
4936
  */
4937
- Type?: NotificationType;
4937
+ Type?: NotificationType | undefined;
4938
4938
  /**
4939
4939
  * <p>Summary of lens upgrade.</p>
4940
4940
  * @public
4941
4941
  */
4942
- LensUpgradeSummary?: LensUpgradeSummary;
4942
+ LensUpgradeSummary?: LensUpgradeSummary | undefined;
4943
4943
  }
4944
4944
  /**
4945
4945
  * @public
@@ -4949,12 +4949,12 @@ export interface ListNotificationsOutput {
4949
4949
  * <p>List of lens notification summaries in a workload.</p>
4950
4950
  * @public
4951
4951
  */
4952
- NotificationSummaries?: NotificationSummary[];
4952
+ NotificationSummaries?: NotificationSummary[] | undefined;
4953
4953
  /**
4954
4954
  * <p>The token to use to retrieve the next set of results.</p>
4955
4955
  * @public
4956
4956
  */
4957
- NextToken?: string;
4957
+ NextToken?: string | undefined;
4958
4958
  }
4959
4959
  /**
4960
4960
  * @public
@@ -4964,17 +4964,17 @@ export interface ListProfileNotificationsInput {
4964
4964
  * <p>The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.</p>
4965
4965
  * @public
4966
4966
  */
4967
- WorkloadId?: string;
4967
+ WorkloadId?: string | undefined;
4968
4968
  /**
4969
4969
  * <p>The token to use to retrieve the next set of results.</p>
4970
4970
  * @public
4971
4971
  */
4972
- NextToken?: string;
4972
+ NextToken?: string | undefined;
4973
4973
  /**
4974
4974
  * <p>The maximum number of results to return for this request.</p>
4975
4975
  * @public
4976
4976
  */
4977
- MaxResults?: number;
4977
+ MaxResults?: number | undefined;
4978
4978
  }
4979
4979
  /**
4980
4980
  * @public
@@ -4997,39 +4997,39 @@ export interface ProfileNotificationSummary {
4997
4997
  * <p>The current profile version.</p>
4998
4998
  * @public
4999
4999
  */
5000
- CurrentProfileVersion?: string;
5000
+ CurrentProfileVersion?: string | undefined;
5001
5001
  /**
5002
5002
  * <p>The latest profile version.</p>
5003
5003
  * @public
5004
5004
  */
5005
- LatestProfileVersion?: string;
5005
+ LatestProfileVersion?: string | undefined;
5006
5006
  /**
5007
5007
  * <p>Type of notification.</p>
5008
5008
  * @public
5009
5009
  */
5010
- Type?: ProfileNotificationType;
5010
+ Type?: ProfileNotificationType | undefined;
5011
5011
  /**
5012
5012
  * <p>The profile ARN.</p>
5013
5013
  * @public
5014
5014
  */
5015
- ProfileArn?: string;
5015
+ ProfileArn?: string | undefined;
5016
5016
  /**
5017
5017
  * <p>The profile name.</p>
5018
5018
  * @public
5019
5019
  */
5020
- ProfileName?: string;
5020
+ ProfileName?: string | undefined;
5021
5021
  /**
5022
5022
  * <p>The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.</p>
5023
5023
  * @public
5024
5024
  */
5025
- WorkloadId?: string;
5025
+ WorkloadId?: string | undefined;
5026
5026
  /**
5027
5027
  * <p>The name of the workload.</p>
5028
5028
  * <p>The name must be unique within an account within an Amazon Web Services Region. Spaces and capitalization
5029
5029
  * are ignored when checking for uniqueness.</p>
5030
5030
  * @public
5031
5031
  */
5032
- WorkloadName?: string;
5032
+ WorkloadName?: string | undefined;
5033
5033
  }
5034
5034
  /**
5035
5035
  * @public
@@ -5039,12 +5039,12 @@ export interface ListProfileNotificationsOutput {
5039
5039
  * <p>Notification summaries.</p>
5040
5040
  * @public
5041
5041
  */
5042
- NotificationSummaries?: ProfileNotificationSummary[];
5042
+ NotificationSummaries?: ProfileNotificationSummary[] | undefined;
5043
5043
  /**
5044
5044
  * <p>The token to use to retrieve the next set of results.</p>
5045
5045
  * @public
5046
5046
  */
5047
- NextToken?: string;
5047
+ NextToken?: string | undefined;
5048
5048
  }
5049
5049
  /**
5050
5050
  * @public
@@ -5067,22 +5067,22 @@ export interface ListProfilesInput {
5067
5067
  * results.</p>
5068
5068
  * @public
5069
5069
  */
5070
- ProfileNamePrefix?: string;
5070
+ ProfileNamePrefix?: string | undefined;
5071
5071
  /**
5072
5072
  * <p>Profile owner type.</p>
5073
5073
  * @public
5074
5074
  */
5075
- ProfileOwnerType?: ProfileOwnerType;
5075
+ ProfileOwnerType?: ProfileOwnerType | undefined;
5076
5076
  /**
5077
5077
  * <p>The token to use to retrieve the next set of results.</p>
5078
5078
  * @public
5079
5079
  */
5080
- NextToken?: string;
5080
+ NextToken?: string | undefined;
5081
5081
  /**
5082
5082
  * <p>The maximum number of results to return for this request.</p>
5083
5083
  * @public
5084
5084
  */
5085
- MaxResults?: number;
5085
+ MaxResults?: number | undefined;
5086
5086
  }
5087
5087
  /**
5088
5088
  * <p>Summary of a profile.</p>
@@ -5093,37 +5093,37 @@ export interface ProfileSummary {
5093
5093
  * <p>The profile ARN.</p>
5094
5094
  * @public
5095
5095
  */
5096
- ProfileArn?: string;
5096
+ ProfileArn?: string | undefined;
5097
5097
  /**
5098
5098
  * <p>The profile version.</p>
5099
5099
  * @public
5100
5100
  */
5101
- ProfileVersion?: string;
5101
+ ProfileVersion?: string | undefined;
5102
5102
  /**
5103
5103
  * <p>The profile name.</p>
5104
5104
  * @public
5105
5105
  */
5106
- ProfileName?: string;
5106
+ ProfileName?: string | undefined;
5107
5107
  /**
5108
5108
  * <p>The profile description.</p>
5109
5109
  * @public
5110
5110
  */
5111
- ProfileDescription?: string;
5111
+ ProfileDescription?: string | undefined;
5112
5112
  /**
5113
5113
  * <p>An Amazon Web Services account ID.</p>
5114
5114
  * @public
5115
5115
  */
5116
- Owner?: string;
5116
+ Owner?: string | undefined;
5117
5117
  /**
5118
5118
  * <p>The date and time recorded.</p>
5119
5119
  * @public
5120
5120
  */
5121
- CreatedAt?: Date;
5121
+ CreatedAt?: Date | undefined;
5122
5122
  /**
5123
5123
  * <p>The date and time recorded.</p>
5124
5124
  * @public
5125
5125
  */
5126
- UpdatedAt?: Date;
5126
+ UpdatedAt?: Date | undefined;
5127
5127
  }
5128
5128
  /**
5129
5129
  * @public
@@ -5133,12 +5133,12 @@ export interface ListProfilesOutput {
5133
5133
  * <p>Profile summaries.</p>
5134
5134
  * @public
5135
5135
  */
5136
- ProfileSummaries?: ProfileSummary[];
5136
+ ProfileSummaries?: ProfileSummary[] | undefined;
5137
5137
  /**
5138
5138
  * <p>The token to use to retrieve the next set of results.</p>
5139
5139
  * @public
5140
5140
  */
5141
- NextToken?: string;
5141
+ NextToken?: string | undefined;
5142
5142
  }
5143
5143
  /**
5144
5144
  * @public
@@ -5153,22 +5153,22 @@ export interface ListProfileSharesInput {
5153
5153
  * <p>The Amazon Web Services account ID, organization ID, or organizational unit (OU) ID with which the profile is shared.</p>
5154
5154
  * @public
5155
5155
  */
5156
- SharedWithPrefix?: string;
5156
+ SharedWithPrefix?: string | undefined;
5157
5157
  /**
5158
5158
  * <p>The token to use to retrieve the next set of results.</p>
5159
5159
  * @public
5160
5160
  */
5161
- NextToken?: string;
5161
+ NextToken?: string | undefined;
5162
5162
  /**
5163
5163
  * <p>The maximum number of results to return for this request.</p>
5164
5164
  * @public
5165
5165
  */
5166
- MaxResults?: number;
5166
+ MaxResults?: number | undefined;
5167
5167
  /**
5168
5168
  * <p>The status of the share request.</p>
5169
5169
  * @public
5170
5170
  */
5171
- Status?: ShareStatus;
5171
+ Status?: ShareStatus | undefined;
5172
5172
  }
5173
5173
  /**
5174
5174
  * <p>Summary of a profile share.</p>
@@ -5179,23 +5179,23 @@ export interface ProfileShareSummary {
5179
5179
  * <p>The ID associated with the share.</p>
5180
5180
  * @public
5181
5181
  */
5182
- ShareId?: string;
5182
+ ShareId?: string | undefined;
5183
5183
  /**
5184
5184
  * <p>The Amazon Web Services account ID, organization ID, or organizational unit (OU) ID with which
5185
5185
  * the workload, lens, profile, or review template is shared.</p>
5186
5186
  * @public
5187
5187
  */
5188
- SharedWith?: string;
5188
+ SharedWith?: string | undefined;
5189
5189
  /**
5190
5190
  * <p>The status of the share request.</p>
5191
5191
  * @public
5192
5192
  */
5193
- Status?: ShareStatus;
5193
+ Status?: ShareStatus | undefined;
5194
5194
  /**
5195
5195
  * <p>Profile share invitation status message.</p>
5196
5196
  * @public
5197
5197
  */
5198
- StatusMessage?: string;
5198
+ StatusMessage?: string | undefined;
5199
5199
  }
5200
5200
  /**
5201
5201
  * @public
@@ -5205,12 +5205,12 @@ export interface ListProfileSharesOutput {
5205
5205
  * <p>Profile share summaries.</p>
5206
5206
  * @public
5207
5207
  */
5208
- ProfileShareSummaries?: ProfileShareSummary[];
5208
+ ProfileShareSummaries?: ProfileShareSummary[] | undefined;
5209
5209
  /**
5210
5210
  * <p>The token to use to retrieve the next set of results.</p>
5211
5211
  * @public
5212
5212
  */
5213
- NextToken?: string;
5213
+ NextToken?: string | undefined;
5214
5214
  }
5215
5215
  /**
5216
5216
  * @public
@@ -5238,17 +5238,17 @@ export interface ListReviewTemplateAnswersInput {
5238
5238
  * <p>A pillar is identified by its <a>PillarReviewSummary$PillarId</a>.</p>
5239
5239
  * @public
5240
5240
  */
5241
- PillarId?: string;
5241
+ PillarId?: string | undefined;
5242
5242
  /**
5243
5243
  * <p>The token to use to retrieve the next set of results.</p>
5244
5244
  * @public
5245
5245
  */
5246
- NextToken?: string;
5246
+ NextToken?: string | undefined;
5247
5247
  /**
5248
5248
  * <p>The maximum number of results to return for this request.</p>
5249
5249
  * @public
5250
5250
  */
5251
- MaxResults?: number;
5251
+ MaxResults?: number | undefined;
5252
5252
  }
5253
5253
  /**
5254
5254
  * <p>The summary of review template answers.</p>
@@ -5259,54 +5259,54 @@ export interface ReviewTemplateAnswerSummary {
5259
5259
  * <p>The ID of the question.</p>
5260
5260
  * @public
5261
5261
  */
5262
- QuestionId?: string;
5262
+ QuestionId?: string | undefined;
5263
5263
  /**
5264
5264
  * <p>The ID used to identify a pillar, for example, <code>security</code>.</p>
5265
5265
  * <p>A pillar is identified by its <a>PillarReviewSummary$PillarId</a>.</p>
5266
5266
  * @public
5267
5267
  */
5268
- PillarId?: string;
5268
+ PillarId?: string | undefined;
5269
5269
  /**
5270
5270
  * <p>The title of the question.</p>
5271
5271
  * @public
5272
5272
  */
5273
- QuestionTitle?: string;
5273
+ QuestionTitle?: string | undefined;
5274
5274
  /**
5275
5275
  * <p>List of choices available for a question.</p>
5276
5276
  * @public
5277
5277
  */
5278
- Choices?: Choice[];
5278
+ Choices?: Choice[] | undefined;
5279
5279
  /**
5280
5280
  * <p>List of selected choice IDs in a question answer.</p>
5281
5281
  * <p>The values entered replace the previously selected choices.</p>
5282
5282
  * @public
5283
5283
  */
5284
- SelectedChoices?: string[];
5284
+ SelectedChoices?: string[] | undefined;
5285
5285
  /**
5286
5286
  * <p>A list of selected choices to a question in the review template.</p>
5287
5287
  * @public
5288
5288
  */
5289
- ChoiceAnswerSummaries?: ChoiceAnswerSummary[];
5289
+ ChoiceAnswerSummaries?: ChoiceAnswerSummary[] | undefined;
5290
5290
  /**
5291
5291
  * <p>Defines whether this question is applicable to a lens review.</p>
5292
5292
  * @public
5293
5293
  */
5294
- IsApplicable?: boolean;
5294
+ IsApplicable?: boolean | undefined;
5295
5295
  /**
5296
5296
  * <p>The status of whether or not this question has been answered.</p>
5297
5297
  * @public
5298
5298
  */
5299
- AnswerStatus?: ReviewTemplateAnswerStatus;
5299
+ AnswerStatus?: ReviewTemplateAnswerStatus | undefined;
5300
5300
  /**
5301
5301
  * <p>The reason why a choice is not-applicable to a question in the review template.</p>
5302
5302
  * @public
5303
5303
  */
5304
- Reason?: AnswerReason;
5304
+ Reason?: AnswerReason | undefined;
5305
5305
  /**
5306
5306
  * <p>The type of question.</p>
5307
5307
  * @public
5308
5308
  */
5309
- QuestionType?: QuestionType;
5309
+ QuestionType?: QuestionType | undefined;
5310
5310
  }
5311
5311
  /**
5312
5312
  * @public
@@ -5316,7 +5316,7 @@ export interface ListReviewTemplateAnswersOutput {
5316
5316
  * <p>The ARN of the review template.</p>
5317
5317
  * @public
5318
5318
  */
5319
- TemplateArn?: string;
5319
+ TemplateArn?: string | undefined;
5320
5320
  /**
5321
5321
  * <p>The alias of the lens.</p>
5322
5322
  * <p>For Amazon Web Services official lenses, this is either the lens alias, such as
@@ -5328,17 +5328,17 @@ export interface ListReviewTemplateAnswersOutput {
5328
5328
  * <p>Each lens is identified by its <a>LensSummary$LensAlias</a>.</p>
5329
5329
  * @public
5330
5330
  */
5331
- LensAlias?: string;
5331
+ LensAlias?: string | undefined;
5332
5332
  /**
5333
5333
  * <p>List of answer summaries of a lens review in a review template.</p>
5334
5334
  * @public
5335
5335
  */
5336
- AnswerSummaries?: ReviewTemplateAnswerSummary[];
5336
+ AnswerSummaries?: ReviewTemplateAnswerSummary[] | undefined;
5337
5337
  /**
5338
5338
  * <p>The token to use to retrieve the next set of results.</p>
5339
5339
  * @public
5340
5340
  */
5341
- NextToken?: string;
5341
+ NextToken?: string | undefined;
5342
5342
  }
5343
5343
  /**
5344
5344
  * @public
@@ -5348,12 +5348,12 @@ export interface ListReviewTemplatesInput {
5348
5348
  * <p>The token to use to retrieve the next set of results.</p>
5349
5349
  * @public
5350
5350
  */
5351
- NextToken?: string;
5351
+ NextToken?: string | undefined;
5352
5352
  /**
5353
5353
  * <p>The maximum number of results to return for this request.</p>
5354
5354
  * @public
5355
5355
  */
5356
- MaxResults?: number;
5356
+ MaxResults?: number | undefined;
5357
5357
  }
5358
5358
  /**
5359
5359
  * <p>Summary of a review template.</p>
@@ -5364,37 +5364,37 @@ export interface ReviewTemplateSummary {
5364
5364
  * <p>Description of the review template.</p>
5365
5365
  * @public
5366
5366
  */
5367
- Description?: string;
5367
+ Description?: string | undefined;
5368
5368
  /**
5369
5369
  * <p>Lenses associated with the review template.</p>
5370
5370
  * @public
5371
5371
  */
5372
- Lenses?: string[];
5372
+ Lenses?: string[] | undefined;
5373
5373
  /**
5374
5374
  * <p>An Amazon Web Services account ID.</p>
5375
5375
  * @public
5376
5376
  */
5377
- Owner?: string;
5377
+ Owner?: string | undefined;
5378
5378
  /**
5379
5379
  * <p>The date and time recorded.</p>
5380
5380
  * @public
5381
5381
  */
5382
- UpdatedAt?: Date;
5382
+ UpdatedAt?: Date | undefined;
5383
5383
  /**
5384
5384
  * <p>The review template ARN.</p>
5385
5385
  * @public
5386
5386
  */
5387
- TemplateArn?: string;
5387
+ TemplateArn?: string | undefined;
5388
5388
  /**
5389
5389
  * <p>The name of the review template.</p>
5390
5390
  * @public
5391
5391
  */
5392
- TemplateName?: string;
5392
+ TemplateName?: string | undefined;
5393
5393
  /**
5394
5394
  * <p>The latest status of a review template.</p>
5395
5395
  * @public
5396
5396
  */
5397
- UpdateStatus?: ReviewTemplateUpdateStatus;
5397
+ UpdateStatus?: ReviewTemplateUpdateStatus | undefined;
5398
5398
  }
5399
5399
  /**
5400
5400
  * @public
@@ -5404,12 +5404,12 @@ export interface ListReviewTemplatesOutput {
5404
5404
  * <p>List of review templates.</p>
5405
5405
  * @public
5406
5406
  */
5407
- ReviewTemplates?: ReviewTemplateSummary[];
5407
+ ReviewTemplates?: ReviewTemplateSummary[] | undefined;
5408
5408
  /**
5409
5409
  * <p>The token to use to retrieve the next set of results.</p>
5410
5410
  * @public
5411
5411
  */
5412
- NextToken?: string;
5412
+ NextToken?: string | undefined;
5413
5413
  }
5414
5414
  /**
5415
5415
  * @public
@@ -5435,39 +5435,39 @@ export interface ListShareInvitationsInput {
5435
5435
  * results.</p>
5436
5436
  * @public
5437
5437
  */
5438
- WorkloadNamePrefix?: string;
5438
+ WorkloadNamePrefix?: string | undefined;
5439
5439
  /**
5440
5440
  * <p>An optional string added to the beginning of each lens name returned in the results.</p>
5441
5441
  * @public
5442
5442
  */
5443
- LensNamePrefix?: string;
5443
+ LensNamePrefix?: string | undefined;
5444
5444
  /**
5445
5445
  * <p>The type of share invitations to be returned.</p>
5446
5446
  * @public
5447
5447
  */
5448
- ShareResourceType?: ShareResourceType;
5448
+ ShareResourceType?: ShareResourceType | undefined;
5449
5449
  /**
5450
5450
  * <p>The token to use to retrieve the next set of results.</p>
5451
5451
  * @public
5452
5452
  */
5453
- NextToken?: string;
5453
+ NextToken?: string | undefined;
5454
5454
  /**
5455
5455
  * <p>The maximum number of results to return for this request.</p>
5456
5456
  * @public
5457
5457
  */
5458
- MaxResults?: number;
5458
+ MaxResults?: number | undefined;
5459
5459
  /**
5460
5460
  * <p>An optional string added to the beginning of each profile name returned in the
5461
5461
  * results.</p>
5462
5462
  * @public
5463
5463
  */
5464
- ProfileNamePrefix?: string;
5464
+ ProfileNamePrefix?: string | undefined;
5465
5465
  /**
5466
5466
  * <p>An optional string added to the beginning of each review template name returned in the
5467
5467
  * results.</p>
5468
5468
  * @public
5469
5469
  */
5470
- TemplateNamePrefix?: string;
5470
+ TemplateNamePrefix?: string | undefined;
5471
5471
  }
5472
5472
  /**
5473
5473
  * <p>A share invitation summary return object.</p>
@@ -5478,70 +5478,70 @@ export interface ShareInvitationSummary {
5478
5478
  * <p>The ID assigned to the share invitation.</p>
5479
5479
  * @public
5480
5480
  */
5481
- ShareInvitationId?: string;
5481
+ ShareInvitationId?: string | undefined;
5482
5482
  /**
5483
5483
  * <p>An Amazon Web Services account ID.</p>
5484
5484
  * @public
5485
5485
  */
5486
- SharedBy?: string;
5486
+ SharedBy?: string | undefined;
5487
5487
  /**
5488
5488
  * <p>The Amazon Web Services account ID, organization ID, or organizational unit (OU) ID with which
5489
5489
  * the workload, lens, profile, or review template is shared.</p>
5490
5490
  * @public
5491
5491
  */
5492
- SharedWith?: string;
5492
+ SharedWith?: string | undefined;
5493
5493
  /**
5494
5494
  * <p>Permission granted on a share request.</p>
5495
5495
  * @public
5496
5496
  */
5497
- PermissionType?: PermissionType;
5497
+ PermissionType?: PermissionType | undefined;
5498
5498
  /**
5499
5499
  * <p>The resource type of the share invitation.</p>
5500
5500
  * @public
5501
5501
  */
5502
- ShareResourceType?: ShareResourceType;
5502
+ ShareResourceType?: ShareResourceType | undefined;
5503
5503
  /**
5504
5504
  * <p>The name of the workload.</p>
5505
5505
  * <p>The name must be unique within an account within an Amazon Web Services Region. Spaces and capitalization
5506
5506
  * are ignored when checking for uniqueness.</p>
5507
5507
  * @public
5508
5508
  */
5509
- WorkloadName?: string;
5509
+ WorkloadName?: string | undefined;
5510
5510
  /**
5511
5511
  * <p>The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.</p>
5512
5512
  * @public
5513
5513
  */
5514
- WorkloadId?: string;
5514
+ WorkloadId?: string | undefined;
5515
5515
  /**
5516
5516
  * <p>The full name of the lens.</p>
5517
5517
  * @public
5518
5518
  */
5519
- LensName?: string;
5519
+ LensName?: string | undefined;
5520
5520
  /**
5521
5521
  * <p>The ARN for the lens.</p>
5522
5522
  * @public
5523
5523
  */
5524
- LensArn?: string;
5524
+ LensArn?: string | undefined;
5525
5525
  /**
5526
5526
  * <p>The profile name.</p>
5527
5527
  * @public
5528
5528
  */
5529
- ProfileName?: string;
5529
+ ProfileName?: string | undefined;
5530
5530
  /**
5531
5531
  * <p>The profile ARN.</p>
5532
5532
  * @public
5533
5533
  */
5534
- ProfileArn?: string;
5534
+ ProfileArn?: string | undefined;
5535
5535
  /**
5536
5536
  * <p>The name of the review template.</p>
5537
5537
  * @public
5538
5538
  */
5539
- TemplateName?: string;
5539
+ TemplateName?: string | undefined;
5540
5540
  /**
5541
5541
  * <p>The review template ARN.</p>
5542
5542
  * @public
5543
5543
  */
5544
- TemplateArn?: string;
5544
+ TemplateArn?: string | undefined;
5545
5545
  }
5546
5546
  /**
5547
5547
  * <p>Input for List Share Invitations</p>
@@ -5552,12 +5552,12 @@ export interface ListShareInvitationsOutput {
5552
5552
  * <p>List of share invitation summaries in a workload.</p>
5553
5553
  * @public
5554
5554
  */
5555
- ShareInvitationSummaries?: ShareInvitationSummary[];
5555
+ ShareInvitationSummaries?: ShareInvitationSummary[] | undefined;
5556
5556
  /**
5557
5557
  * <p>The token to use to retrieve the next set of results.</p>
5558
5558
  * @public
5559
5559
  */
5560
- NextToken?: string;
5560
+ NextToken?: string | undefined;
5561
5561
  }
5562
5562
  /**
5563
5563
  * @public
@@ -5577,7 +5577,7 @@ export interface ListTagsForResourceOutput {
5577
5577
  * <p>The tags for the resource.</p>
5578
5578
  * @public
5579
5579
  */
5580
- Tags?: Record<string, string>;
5580
+ Tags?: Record<string, string> | undefined;
5581
5581
  }
5582
5582
  /**
5583
5583
  * @public
@@ -5593,22 +5593,22 @@ export interface ListTemplateSharesInput {
5593
5593
  * (OU) ID with which the profile is shared.</p>
5594
5594
  * @public
5595
5595
  */
5596
- SharedWithPrefix?: string;
5596
+ SharedWithPrefix?: string | undefined;
5597
5597
  /**
5598
5598
  * <p>The token to use to retrieve the next set of results.</p>
5599
5599
  * @public
5600
5600
  */
5601
- NextToken?: string;
5601
+ NextToken?: string | undefined;
5602
5602
  /**
5603
5603
  * <p>The maximum number of results to return for this request.</p>
5604
5604
  * @public
5605
5605
  */
5606
- MaxResults?: number;
5606
+ MaxResults?: number | undefined;
5607
5607
  /**
5608
5608
  * <p>The status of the share request.</p>
5609
5609
  * @public
5610
5610
  */
5611
- Status?: ShareStatus;
5611
+ Status?: ShareStatus | undefined;
5612
5612
  }
5613
5613
  /**
5614
5614
  * <p>Summary of a review template share.</p>
@@ -5619,23 +5619,23 @@ export interface TemplateShareSummary {
5619
5619
  * <p>The ID associated with the share.</p>
5620
5620
  * @public
5621
5621
  */
5622
- ShareId?: string;
5622
+ ShareId?: string | undefined;
5623
5623
  /**
5624
5624
  * <p>The Amazon Web Services account ID, organization ID, or organizational unit (OU) ID with which
5625
5625
  * the workload, lens, profile, or review template is shared.</p>
5626
5626
  * @public
5627
5627
  */
5628
- SharedWith?: string;
5628
+ SharedWith?: string | undefined;
5629
5629
  /**
5630
5630
  * <p>The status of the share request.</p>
5631
5631
  * @public
5632
5632
  */
5633
- Status?: ShareStatus;
5633
+ Status?: ShareStatus | undefined;
5634
5634
  /**
5635
5635
  * <p>Review template share invitation status message. </p>
5636
5636
  * @public
5637
5637
  */
5638
- StatusMessage?: string;
5638
+ StatusMessage?: string | undefined;
5639
5639
  }
5640
5640
  /**
5641
5641
  * @public
@@ -5645,17 +5645,17 @@ export interface ListTemplateSharesOutput {
5645
5645
  * <p>The review template ARN.</p>
5646
5646
  * @public
5647
5647
  */
5648
- TemplateArn?: string;
5648
+ TemplateArn?: string | undefined;
5649
5649
  /**
5650
5650
  * <p>A review template share summary return object.</p>
5651
5651
  * @public
5652
5652
  */
5653
- TemplateShareSummaries?: TemplateShareSummary[];
5653
+ TemplateShareSummaries?: TemplateShareSummary[] | undefined;
5654
5654
  /**
5655
5655
  * <p>The token to use to retrieve the next set of results.</p>
5656
5656
  * @public
5657
5657
  */
5658
- NextToken?: string;
5658
+ NextToken?: string | undefined;
5659
5659
  }
5660
5660
  /**
5661
5661
  * <p>Input to list all workloads.</p>
@@ -5667,17 +5667,17 @@ export interface ListWorkloadsInput {
5667
5667
  * results.</p>
5668
5668
  * @public
5669
5669
  */
5670
- WorkloadNamePrefix?: string;
5670
+ WorkloadNamePrefix?: string | undefined;
5671
5671
  /**
5672
5672
  * <p>The token to use to retrieve the next set of results.</p>
5673
5673
  * @public
5674
5674
  */
5675
- NextToken?: string;
5675
+ NextToken?: string | undefined;
5676
5676
  /**
5677
5677
  * <p>The maximum number of results to return for this request.</p>
5678
5678
  * @public
5679
5679
  */
5680
- MaxResults?: number;
5680
+ MaxResults?: number | undefined;
5681
5681
  }
5682
5682
  /**
5683
5683
  * <p>Output of a list workloads call.</p>
@@ -5688,12 +5688,12 @@ export interface ListWorkloadsOutput {
5688
5688
  * <p>A list of workload summaries.</p>
5689
5689
  * @public
5690
5690
  */
5691
- WorkloadSummaries?: WorkloadSummary[];
5691
+ WorkloadSummaries?: WorkloadSummary[] | undefined;
5692
5692
  /**
5693
5693
  * <p>The token to use to retrieve the next set of results.</p>
5694
5694
  * @public
5695
5695
  */
5696
- NextToken?: string;
5696
+ NextToken?: string | undefined;
5697
5697
  }
5698
5698
  /**
5699
5699
  * <p>Input for List Workload Share</p>
@@ -5709,22 +5709,22 @@ export interface ListWorkloadSharesInput {
5709
5709
  * <p>The Amazon Web Services account ID, organization ID, or organizational unit (OU) ID with which the workload is shared.</p>
5710
5710
  * @public
5711
5711
  */
5712
- SharedWithPrefix?: string;
5712
+ SharedWithPrefix?: string | undefined;
5713
5713
  /**
5714
5714
  * <p>The token to use to retrieve the next set of results.</p>
5715
5715
  * @public
5716
5716
  */
5717
- NextToken?: string;
5717
+ NextToken?: string | undefined;
5718
5718
  /**
5719
5719
  * <p>The maximum number of results to return for this request.</p>
5720
5720
  * @public
5721
5721
  */
5722
- MaxResults?: number;
5722
+ MaxResults?: number | undefined;
5723
5723
  /**
5724
5724
  * <p>The status of the share request.</p>
5725
5725
  * @public
5726
5726
  */
5727
- Status?: ShareStatus;
5727
+ Status?: ShareStatus | undefined;
5728
5728
  }
5729
5729
  /**
5730
5730
  * <p>A workload share summary return object.</p>
@@ -5735,28 +5735,28 @@ export interface WorkloadShareSummary {
5735
5735
  * <p>The ID associated with the share.</p>
5736
5736
  * @public
5737
5737
  */
5738
- ShareId?: string;
5738
+ ShareId?: string | undefined;
5739
5739
  /**
5740
5740
  * <p>The Amazon Web Services account ID, organization ID, or organizational unit (OU) ID with which
5741
5741
  * the workload, lens, profile, or review template is shared.</p>
5742
5742
  * @public
5743
5743
  */
5744
- SharedWith?: string;
5744
+ SharedWith?: string | undefined;
5745
5745
  /**
5746
5746
  * <p>Permission granted on a share request.</p>
5747
5747
  * @public
5748
5748
  */
5749
- PermissionType?: PermissionType;
5749
+ PermissionType?: PermissionType | undefined;
5750
5750
  /**
5751
5751
  * <p>The status of the share request.</p>
5752
5752
  * @public
5753
5753
  */
5754
- Status?: ShareStatus;
5754
+ Status?: ShareStatus | undefined;
5755
5755
  /**
5756
5756
  * <p>Optional message to compliment the Status field.</p>
5757
5757
  * @public
5758
5758
  */
5759
- StatusMessage?: string;
5759
+ StatusMessage?: string | undefined;
5760
5760
  }
5761
5761
  /**
5762
5762
  * <p>Input for List Workload Share</p>
@@ -5767,17 +5767,17 @@ export interface ListWorkloadSharesOutput {
5767
5767
  * <p>The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.</p>
5768
5768
  * @public
5769
5769
  */
5770
- WorkloadId?: string;
5770
+ WorkloadId?: string | undefined;
5771
5771
  /**
5772
5772
  * <p>A list of workload share summaries.</p>
5773
5773
  * @public
5774
5774
  */
5775
- WorkloadShareSummaries?: WorkloadShareSummary[];
5775
+ WorkloadShareSummaries?: WorkloadShareSummary[] | undefined;
5776
5776
  /**
5777
5777
  * <p>The token to use to retrieve the next set of results.</p>
5778
5778
  * @public
5779
5779
  */
5780
- NextToken?: string;
5780
+ NextToken?: string | undefined;
5781
5781
  }
5782
5782
  /**
5783
5783
  * <p>The share invitation.</p>
@@ -5788,17 +5788,17 @@ export interface ShareInvitation {
5788
5788
  * <p>The ID assigned to the share invitation.</p>
5789
5789
  * @public
5790
5790
  */
5791
- ShareInvitationId?: string;
5791
+ ShareInvitationId?: string | undefined;
5792
5792
  /**
5793
5793
  * <p>The resource type of the share invitation.</p>
5794
5794
  * @public
5795
5795
  */
5796
- ShareResourceType?: ShareResourceType;
5796
+ ShareResourceType?: ShareResourceType | undefined;
5797
5797
  /**
5798
5798
  * <p>The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.</p>
5799
5799
  * @public
5800
5800
  */
5801
- WorkloadId?: string;
5801
+ WorkloadId?: string | undefined;
5802
5802
  /**
5803
5803
  * <p>The alias of the lens.</p>
5804
5804
  * <p>For Amazon Web Services official lenses, this is either the lens alias, such as
@@ -5810,22 +5810,22 @@ export interface ShareInvitation {
5810
5810
  * <p>Each lens is identified by its <a>LensSummary$LensAlias</a>.</p>
5811
5811
  * @public
5812
5812
  */
5813
- LensAlias?: string;
5813
+ LensAlias?: string | undefined;
5814
5814
  /**
5815
5815
  * <p>The ARN for the lens.</p>
5816
5816
  * @public
5817
5817
  */
5818
- LensArn?: string;
5818
+ LensArn?: string | undefined;
5819
5819
  /**
5820
5820
  * <p>The profile ARN.</p>
5821
5821
  * @public
5822
5822
  */
5823
- ProfileArn?: string;
5823
+ ProfileArn?: string | undefined;
5824
5824
  /**
5825
5825
  * <p>The review template ARN.</p>
5826
5826
  * @public
5827
5827
  */
5828
- TemplateArn?: string;
5828
+ TemplateArn?: string | undefined;
5829
5829
  }
5830
5830
  /**
5831
5831
  * @public
@@ -5912,29 +5912,29 @@ export interface UpdateAnswerInput {
5912
5912
  * <p>The values entered replace the previously selected choices.</p>
5913
5913
  * @public
5914
5914
  */
5915
- SelectedChoices?: string[];
5915
+ SelectedChoices?: string[] | undefined;
5916
5916
  /**
5917
5917
  * <p>A list of choices to update on a question in your workload. The String key
5918
5918
  * corresponds to the choice ID to be updated.</p>
5919
5919
  * @public
5920
5920
  */
5921
- ChoiceUpdates?: Record<string, ChoiceUpdate>;
5921
+ ChoiceUpdates?: Record<string, ChoiceUpdate> | undefined;
5922
5922
  /**
5923
5923
  * <p>The notes associated with the workload.</p>
5924
5924
  * <p>For a review template, these are the notes that will be associated with the workload when the template is applied.</p>
5925
5925
  * @public
5926
5926
  */
5927
- Notes?: string;
5927
+ Notes?: string | undefined;
5928
5928
  /**
5929
5929
  * <p>Defines whether this question is applicable to a lens review.</p>
5930
5930
  * @public
5931
5931
  */
5932
- IsApplicable?: boolean;
5932
+ IsApplicable?: boolean | undefined;
5933
5933
  /**
5934
5934
  * <p>The reason why a question is not applicable to your workload.</p>
5935
5935
  * @public
5936
5936
  */
5937
- Reason?: AnswerReason;
5937
+ Reason?: AnswerReason | undefined;
5938
5938
  }
5939
5939
  /**
5940
5940
  * <p>Output of a update answer call.</p>
@@ -5945,7 +5945,7 @@ export interface UpdateAnswerOutput {
5945
5945
  * <p>The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.</p>
5946
5946
  * @public
5947
5947
  */
5948
- WorkloadId?: string;
5948
+ WorkloadId?: string | undefined;
5949
5949
  /**
5950
5950
  * <p>The alias of the lens.</p>
5951
5951
  * <p>For Amazon Web Services official lenses, this is either the lens alias, such as
@@ -5957,17 +5957,17 @@ export interface UpdateAnswerOutput {
5957
5957
  * <p>Each lens is identified by its <a>LensSummary$LensAlias</a>.</p>
5958
5958
  * @public
5959
5959
  */
5960
- LensAlias?: string;
5960
+ LensAlias?: string | undefined;
5961
5961
  /**
5962
5962
  * <p>The ARN for the lens.</p>
5963
5963
  * @public
5964
5964
  */
5965
- LensArn?: string;
5965
+ LensArn?: string | undefined;
5966
5966
  /**
5967
5967
  * <p>An answer of the question.</p>
5968
5968
  * @public
5969
5969
  */
5970
- Answer?: Answer;
5970
+ Answer?: Answer | undefined;
5971
5971
  }
5972
5972
  /**
5973
5973
  * @public
@@ -5977,17 +5977,17 @@ export interface UpdateGlobalSettingsInput {
5977
5977
  * <p>The status of organization sharing settings.</p>
5978
5978
  * @public
5979
5979
  */
5980
- OrganizationSharingStatus?: OrganizationSharingStatus;
5980
+ OrganizationSharingStatus?: OrganizationSharingStatus | undefined;
5981
5981
  /**
5982
5982
  * <p>The status of discovery support settings.</p>
5983
5983
  * @public
5984
5984
  */
5985
- DiscoveryIntegrationStatus?: DiscoveryIntegrationStatus;
5985
+ DiscoveryIntegrationStatus?: DiscoveryIntegrationStatus | undefined;
5986
5986
  /**
5987
5987
  * <p>The status of Jira integration settings.</p>
5988
5988
  * @public
5989
5989
  */
5990
- JiraConfiguration?: AccountJiraConfigurationInput;
5990
+ JiraConfiguration?: AccountJiraConfigurationInput | undefined;
5991
5991
  }
5992
5992
  /**
5993
5993
  * @public
@@ -6011,7 +6011,7 @@ export interface UpdateIntegrationInput {
6011
6011
  * </important>
6012
6012
  * @public
6013
6013
  */
6014
- ClientRequestToken?: string;
6014
+ ClientRequestToken?: string | undefined;
6015
6015
  /**
6016
6016
  * <p>Which integrated service to update.</p>
6017
6017
  * @public
@@ -6045,18 +6045,18 @@ export interface UpdateLensReviewInput {
6045
6045
  * <p>For a review template, these are the notes that will be associated with the workload when the template is applied.</p>
6046
6046
  * @public
6047
6047
  */
6048
- LensNotes?: string;
6048
+ LensNotes?: string | undefined;
6049
6049
  /**
6050
6050
  * <p>List of pillar notes of a lens review in a workload.</p>
6051
6051
  * <p>For a review template, these are the notes that will be associated with the workload when the template is applied.</p>
6052
6052
  * @public
6053
6053
  */
6054
- PillarNotes?: Record<string, string>;
6054
+ PillarNotes?: Record<string, string> | undefined;
6055
6055
  /**
6056
6056
  * <p>Configuration of the Jira integration.</p>
6057
6057
  * @public
6058
6058
  */
6059
- JiraConfiguration?: JiraSelectedQuestionConfiguration;
6059
+ JiraConfiguration?: JiraSelectedQuestionConfiguration | undefined;
6060
6060
  }
6061
6061
  /**
6062
6062
  * <p>Output of a update lens review call.</p>
@@ -6067,12 +6067,12 @@ export interface UpdateLensReviewOutput {
6067
6067
  * <p>The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.</p>
6068
6068
  * @public
6069
6069
  */
6070
- WorkloadId?: string;
6070
+ WorkloadId?: string | undefined;
6071
6071
  /**
6072
6072
  * <p>A lens review of a question.</p>
6073
6073
  * @public
6074
6074
  */
6075
- LensReview?: LensReview;
6075
+ LensReview?: LensReview | undefined;
6076
6076
  }
6077
6077
  /**
6078
6078
  * @public
@@ -6087,12 +6087,12 @@ export interface UpdateProfileInput {
6087
6087
  * <p>The profile description.</p>
6088
6088
  * @public
6089
6089
  */
6090
- ProfileDescription?: string;
6090
+ ProfileDescription?: string | undefined;
6091
6091
  /**
6092
6092
  * <p>Profile questions.</p>
6093
6093
  * @public
6094
6094
  */
6095
- ProfileQuestions?: ProfileQuestionUpdate[];
6095
+ ProfileQuestions?: ProfileQuestionUpdate[] | undefined;
6096
6096
  }
6097
6097
  /**
6098
6098
  * @public
@@ -6102,7 +6102,7 @@ export interface UpdateProfileOutput {
6102
6102
  * <p>The profile.</p>
6103
6103
  * @public
6104
6104
  */
6105
- Profile?: Profile;
6105
+ Profile?: Profile | undefined;
6106
6106
  }
6107
6107
  /**
6108
6108
  * @public
@@ -6117,28 +6117,28 @@ export interface UpdateReviewTemplateInput {
6117
6117
  * <p>The review template name.</p>
6118
6118
  * @public
6119
6119
  */
6120
- TemplateName?: string;
6120
+ TemplateName?: string | undefined;
6121
6121
  /**
6122
6122
  * <p>The review template description.</p>
6123
6123
  * @public
6124
6124
  */
6125
- Description?: string;
6125
+ Description?: string | undefined;
6126
6126
  /**
6127
6127
  * <p>The notes associated with the workload.</p>
6128
6128
  * <p>For a review template, these are the notes that will be associated with the workload when the template is applied.</p>
6129
6129
  * @public
6130
6130
  */
6131
- Notes?: string;
6131
+ Notes?: string | undefined;
6132
6132
  /**
6133
6133
  * <p>A list of lens aliases or ARNs to apply to the review template.</p>
6134
6134
  * @public
6135
6135
  */
6136
- LensesToAssociate?: string[];
6136
+ LensesToAssociate?: string[] | undefined;
6137
6137
  /**
6138
6138
  * <p>A list of lens aliases or ARNs to unapply to the review template. The <code>wellarchitected</code> lens cannot be unapplied.</p>
6139
6139
  * @public
6140
6140
  */
6141
- LensesToDisassociate?: string[];
6141
+ LensesToDisassociate?: string[] | undefined;
6142
6142
  }
6143
6143
  /**
6144
6144
  * @public
@@ -6148,7 +6148,7 @@ export interface UpdateReviewTemplateOutput {
6148
6148
  * <p>A review template.</p>
6149
6149
  * @public
6150
6150
  */
6151
- ReviewTemplate?: ReviewTemplate;
6151
+ ReviewTemplate?: ReviewTemplate | undefined;
6152
6152
  }
6153
6153
  /**
6154
6154
  * @public
@@ -6181,28 +6181,28 @@ export interface UpdateReviewTemplateAnswerInput {
6181
6181
  * <p>The values entered replace the previously selected choices.</p>
6182
6182
  * @public
6183
6183
  */
6184
- SelectedChoices?: string[];
6184
+ SelectedChoices?: string[] | undefined;
6185
6185
  /**
6186
6186
  * <p>A list of choices to be updated.</p>
6187
6187
  * @public
6188
6188
  */
6189
- ChoiceUpdates?: Record<string, ChoiceUpdate>;
6189
+ ChoiceUpdates?: Record<string, ChoiceUpdate> | undefined;
6190
6190
  /**
6191
6191
  * <p>The notes associated with the workload.</p>
6192
6192
  * <p>For a review template, these are the notes that will be associated with the workload when the template is applied.</p>
6193
6193
  * @public
6194
6194
  */
6195
- Notes?: string;
6195
+ Notes?: string | undefined;
6196
6196
  /**
6197
6197
  * <p>Defines whether this question is applicable to a lens review.</p>
6198
6198
  * @public
6199
6199
  */
6200
- IsApplicable?: boolean;
6200
+ IsApplicable?: boolean | undefined;
6201
6201
  /**
6202
6202
  * <p>The update reason.</p>
6203
6203
  * @public
6204
6204
  */
6205
- Reason?: AnswerReason;
6205
+ Reason?: AnswerReason | undefined;
6206
6206
  }
6207
6207
  /**
6208
6208
  * @public
@@ -6212,7 +6212,7 @@ export interface UpdateReviewTemplateAnswerOutput {
6212
6212
  * <p>The review template ARN.</p>
6213
6213
  * @public
6214
6214
  */
6215
- TemplateArn?: string;
6215
+ TemplateArn?: string | undefined;
6216
6216
  /**
6217
6217
  * <p>The alias of the lens.</p>
6218
6218
  * <p>For Amazon Web Services official lenses, this is either the lens alias, such as
@@ -6224,12 +6224,12 @@ export interface UpdateReviewTemplateAnswerOutput {
6224
6224
  * <p>Each lens is identified by its <a>LensSummary$LensAlias</a>.</p>
6225
6225
  * @public
6226
6226
  */
6227
- LensAlias?: string;
6227
+ LensAlias?: string | undefined;
6228
6228
  /**
6229
6229
  * <p>An answer of the question.</p>
6230
6230
  * @public
6231
6231
  */
6232
- Answer?: ReviewTemplateAnswer;
6232
+ Answer?: ReviewTemplateAnswer | undefined;
6233
6233
  }
6234
6234
  /**
6235
6235
  * @public
@@ -6257,13 +6257,13 @@ export interface UpdateReviewTemplateLensReviewInput {
6257
6257
  * <p>For a review template, these are the notes that will be associated with the workload when the template is applied.</p>
6258
6258
  * @public
6259
6259
  */
6260
- LensNotes?: string;
6260
+ LensNotes?: string | undefined;
6261
6261
  /**
6262
6262
  * <p>List of pillar notes of a lens review in a workload.</p>
6263
6263
  * <p>For a review template, these are the notes that will be associated with the workload when the template is applied.</p>
6264
6264
  * @public
6265
6265
  */
6266
- PillarNotes?: Record<string, string>;
6266
+ PillarNotes?: Record<string, string> | undefined;
6267
6267
  }
6268
6268
  /**
6269
6269
  * @public
@@ -6273,12 +6273,12 @@ export interface UpdateReviewTemplateLensReviewOutput {
6273
6273
  * <p>The review template ARN.</p>
6274
6274
  * @public
6275
6275
  */
6276
- TemplateArn?: string;
6276
+ TemplateArn?: string | undefined;
6277
6277
  /**
6278
6278
  * <p>A lens review of a question.</p>
6279
6279
  * @public
6280
6280
  */
6281
- LensReview?: ReviewTemplateLensReview;
6281
+ LensReview?: ReviewTemplateLensReview | undefined;
6282
6282
  }
6283
6283
  /**
6284
6284
  * <p>Input for Update Share Invitation</p>
@@ -6304,7 +6304,7 @@ export interface UpdateShareInvitationOutput {
6304
6304
  * <p>The updated workload or custom lens share invitation.</p>
6305
6305
  * @public
6306
6306
  */
6307
- ShareInvitation?: ShareInvitation;
6307
+ ShareInvitation?: ShareInvitation | undefined;
6308
6308
  }
6309
6309
  /**
6310
6310
  * <p>Input to update a workload.</p>
@@ -6322,50 +6322,50 @@ export interface UpdateWorkloadInput {
6322
6322
  * are ignored when checking for uniqueness.</p>
6323
6323
  * @public
6324
6324
  */
6325
- WorkloadName?: string;
6325
+ WorkloadName?: string | undefined;
6326
6326
  /**
6327
6327
  * <p>The description for the workload.</p>
6328
6328
  * @public
6329
6329
  */
6330
- Description?: string;
6330
+ Description?: string | undefined;
6331
6331
  /**
6332
6332
  * <p>The environment for the workload.</p>
6333
6333
  * @public
6334
6334
  */
6335
- Environment?: WorkloadEnvironment;
6335
+ Environment?: WorkloadEnvironment | undefined;
6336
6336
  /**
6337
6337
  * <p>The list of Amazon Web Services account IDs associated with the workload.</p>
6338
6338
  * @public
6339
6339
  */
6340
- AccountIds?: string[];
6340
+ AccountIds?: string[] | undefined;
6341
6341
  /**
6342
6342
  * <p>The list of Amazon Web Services Regions associated with the workload, for example,
6343
6343
  * <code>us-east-2</code>, or <code>ca-central-1</code>.</p>
6344
6344
  * @public
6345
6345
  */
6346
- AwsRegions?: string[];
6346
+ AwsRegions?: string[] | undefined;
6347
6347
  /**
6348
6348
  * <p> The list of non-Amazon Web Services Regions associated with the workload.</p>
6349
6349
  * @public
6350
6350
  */
6351
- NonAwsRegions?: string[];
6351
+ NonAwsRegions?: string[] | undefined;
6352
6352
  /**
6353
6353
  * <p>The priorities of the pillars, which are used to order items in the improvement plan.
6354
6354
  * Each pillar is represented by its <a>PillarReviewSummary$PillarId</a>.</p>
6355
6355
  * @public
6356
6356
  */
6357
- PillarPriorities?: string[];
6357
+ PillarPriorities?: string[] | undefined;
6358
6358
  /**
6359
6359
  * <p>The URL of the architectural design for the workload.</p>
6360
6360
  * @public
6361
6361
  */
6362
- ArchitecturalDesign?: string;
6362
+ ArchitecturalDesign?: string | undefined;
6363
6363
  /**
6364
6364
  * <p>The review owner of the workload. The name, email address, or identifier for the
6365
6365
  * primary group or individual that owns the workload review process.</p>
6366
6366
  * @public
6367
6367
  */
6368
- ReviewOwner?: string;
6368
+ ReviewOwner?: string | undefined;
6369
6369
  /**
6370
6370
  * <p>Flag indicating whether the workload owner has acknowledged that the <i>Review
6371
6371
  * owner</i> field is required.</p>
@@ -6374,7 +6374,7 @@ export interface UpdateWorkloadInput {
6374
6374
  * added.</p>
6375
6375
  * @public
6376
6376
  */
6377
- IsReviewOwnerUpdateAcknowledged?: boolean;
6377
+ IsReviewOwnerUpdateAcknowledged?: boolean | undefined;
6378
6378
  /**
6379
6379
  * <p>The industry type for the workload.</p>
6380
6380
  * <p>If specified, must be one of the following:</p>
@@ -6517,38 +6517,38 @@ export interface UpdateWorkloadInput {
6517
6517
  * </ul>
6518
6518
  * @public
6519
6519
  */
6520
- IndustryType?: string;
6520
+ IndustryType?: string | undefined;
6521
6521
  /**
6522
6522
  * <p>The industry for the workload.</p>
6523
6523
  * @public
6524
6524
  */
6525
- Industry?: string;
6525
+ Industry?: string | undefined;
6526
6526
  /**
6527
6527
  * <p>The notes associated with the workload.</p>
6528
6528
  * <p>For a review template, these are the notes that will be associated with the workload when the template is applied.</p>
6529
6529
  * @public
6530
6530
  */
6531
- Notes?: string;
6531
+ Notes?: string | undefined;
6532
6532
  /**
6533
6533
  * <p>The improvement status for a workload.</p>
6534
6534
  * @public
6535
6535
  */
6536
- ImprovementStatus?: WorkloadImprovementStatus;
6536
+ ImprovementStatus?: WorkloadImprovementStatus | undefined;
6537
6537
  /**
6538
6538
  * <p>Well-Architected discovery configuration settings to associate to the workload.</p>
6539
6539
  * @public
6540
6540
  */
6541
- DiscoveryConfig?: WorkloadDiscoveryConfig;
6541
+ DiscoveryConfig?: WorkloadDiscoveryConfig | undefined;
6542
6542
  /**
6543
6543
  * <p>List of AppRegistry application ARNs to associate to the workload.</p>
6544
6544
  * @public
6545
6545
  */
6546
- Applications?: string[];
6546
+ Applications?: string[] | undefined;
6547
6547
  /**
6548
6548
  * <p>Configuration of the Jira integration.</p>
6549
6549
  * @public
6550
6550
  */
6551
- JiraConfiguration?: WorkloadJiraConfigurationInput;
6551
+ JiraConfiguration?: WorkloadJiraConfigurationInput | undefined;
6552
6552
  }
6553
6553
  /**
6554
6554
  * <p>Output of an update workload call.</p>
@@ -6559,7 +6559,7 @@ export interface UpdateWorkloadOutput {
6559
6559
  * <p>A workload return object.</p>
6560
6560
  * @public
6561
6561
  */
6562
- Workload?: Workload;
6562
+ Workload?: Workload | undefined;
6563
6563
  }
6564
6564
  /**
6565
6565
  * <p>Input for Update Workload Share</p>
@@ -6591,40 +6591,40 @@ export interface WorkloadShare {
6591
6591
  * <p>The ID associated with the share.</p>
6592
6592
  * @public
6593
6593
  */
6594
- ShareId?: string;
6594
+ ShareId?: string | undefined;
6595
6595
  /**
6596
6596
  * <p>An Amazon Web Services account ID.</p>
6597
6597
  * @public
6598
6598
  */
6599
- SharedBy?: string;
6599
+ SharedBy?: string | undefined;
6600
6600
  /**
6601
6601
  * <p>The Amazon Web Services account ID, organization ID, or organizational unit (OU) ID with which
6602
6602
  * the workload, lens, profile, or review template is shared.</p>
6603
6603
  * @public
6604
6604
  */
6605
- SharedWith?: string;
6605
+ SharedWith?: string | undefined;
6606
6606
  /**
6607
6607
  * <p>Permission granted on a share request.</p>
6608
6608
  * @public
6609
6609
  */
6610
- PermissionType?: PermissionType;
6610
+ PermissionType?: PermissionType | undefined;
6611
6611
  /**
6612
6612
  * <p>The status of the share request.</p>
6613
6613
  * @public
6614
6614
  */
6615
- Status?: ShareStatus;
6615
+ Status?: ShareStatus | undefined;
6616
6616
  /**
6617
6617
  * <p>The name of the workload.</p>
6618
6618
  * <p>The name must be unique within an account within an Amazon Web Services Region. Spaces and capitalization
6619
6619
  * are ignored when checking for uniqueness.</p>
6620
6620
  * @public
6621
6621
  */
6622
- WorkloadName?: string;
6622
+ WorkloadName?: string | undefined;
6623
6623
  /**
6624
6624
  * <p>The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.</p>
6625
6625
  * @public
6626
6626
  */
6627
- WorkloadId?: string;
6627
+ WorkloadId?: string | undefined;
6628
6628
  }
6629
6629
  /**
6630
6630
  * <p>Input for Update Workload Share</p>
@@ -6635,12 +6635,12 @@ export interface UpdateWorkloadShareOutput {
6635
6635
  * <p>The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.</p>
6636
6636
  * @public
6637
6637
  */
6638
- WorkloadId?: string;
6638
+ WorkloadId?: string | undefined;
6639
6639
  /**
6640
6640
  * <p>A workload share return object.</p>
6641
6641
  * @public
6642
6642
  */
6643
- WorkloadShare?: WorkloadShare;
6643
+ WorkloadShare?: WorkloadShare | undefined;
6644
6644
  }
6645
6645
  /**
6646
6646
  * @public
@@ -6682,7 +6682,7 @@ export interface UpgradeLensReviewInput {
6682
6682
  * </important>
6683
6683
  * @public
6684
6684
  */
6685
- ClientRequestToken?: string;
6685
+ ClientRequestToken?: string | undefined;
6686
6686
  }
6687
6687
  /**
6688
6688
  * @public
@@ -6703,7 +6703,7 @@ export interface UpgradeProfileVersionInput {
6703
6703
  * <p>Milestone names must be unique within a workload.</p>
6704
6704
  * @public
6705
6705
  */
6706
- MilestoneName?: string;
6706
+ MilestoneName?: string | undefined;
6707
6707
  /**
6708
6708
  * <p>A unique case-sensitive string used to ensure that this request is idempotent
6709
6709
  * (executes only once).</p>
@@ -6717,7 +6717,7 @@ export interface UpgradeProfileVersionInput {
6717
6717
  * </important>
6718
6718
  * @public
6719
6719
  */
6720
- ClientRequestToken?: string;
6720
+ ClientRequestToken?: string | undefined;
6721
6721
  }
6722
6722
  /**
6723
6723
  * @public
@@ -6753,5 +6753,5 @@ export interface UpgradeReviewTemplateLensReviewInput {
6753
6753
  * </important>
6754
6754
  * @public
6755
6755
  */
6756
- ClientRequestToken?: string;
6756
+ ClientRequestToken?: string | undefined;
6757
6757
  }