@aws-sdk/client-auditmanager 3.687.0 → 3.692.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -54,17 +54,17 @@ export interface AWSAccount {
54
54
  * <p> The identifier for the Amazon Web Services account. </p>
55
55
  * @public
56
56
  */
57
- id?: string;
57
+ id?: string | undefined;
58
58
  /**
59
59
  * <p> The email address that's associated with the Amazon Web Services account. </p>
60
60
  * @public
61
61
  */
62
- emailAddress?: string;
62
+ emailAddress?: string | undefined;
63
63
  /**
64
64
  * <p> The name of the Amazon Web Services account. </p>
65
65
  * @public
66
66
  */
67
- name?: string;
67
+ name?: string | undefined;
68
68
  }
69
69
  /**
70
70
  * <p> A comment that's posted by a user on a control. This includes the author's name, the
@@ -76,17 +76,17 @@ export interface ControlComment {
76
76
  * <p> The name of the user who authored the comment. </p>
77
77
  * @public
78
78
  */
79
- authorName?: string;
79
+ authorName?: string | undefined;
80
80
  /**
81
81
  * <p> The body text of a control comment. </p>
82
82
  * @public
83
83
  */
84
- commentBody?: string;
84
+ commentBody?: string | undefined;
85
85
  /**
86
86
  * <p> The time when the comment was posted. </p>
87
87
  * @public
88
88
  */
89
- postedDate?: Date;
89
+ postedDate?: Date | undefined;
90
90
  }
91
91
  /**
92
92
  * @public
@@ -124,47 +124,47 @@ export interface AssessmentControl {
124
124
  * <p> The identifier for the control. </p>
125
125
  * @public
126
126
  */
127
- id?: string;
127
+ id?: string | undefined;
128
128
  /**
129
129
  * <p> The name of the control. </p>
130
130
  * @public
131
131
  */
132
- name?: string;
132
+ name?: string | undefined;
133
133
  /**
134
134
  * <p> The description of the control. </p>
135
135
  * @public
136
136
  */
137
- description?: string;
137
+ description?: string | undefined;
138
138
  /**
139
139
  * <p> The status of the control. </p>
140
140
  * @public
141
141
  */
142
- status?: ControlStatus;
142
+ status?: ControlStatus | undefined;
143
143
  /**
144
144
  * <p> The response of the control. </p>
145
145
  * @public
146
146
  */
147
- response?: ControlResponse;
147
+ response?: ControlResponse | undefined;
148
148
  /**
149
149
  * <p> The list of comments that's attached to the control. </p>
150
150
  * @public
151
151
  */
152
- comments?: ControlComment[];
152
+ comments?: ControlComment[] | undefined;
153
153
  /**
154
154
  * <p> The list of data sources for the evidence. </p>
155
155
  * @public
156
156
  */
157
- evidenceSources?: string[];
157
+ evidenceSources?: string[] | undefined;
158
158
  /**
159
159
  * <p> The amount of evidence that's collected for the control. </p>
160
160
  * @public
161
161
  */
162
- evidenceCount?: number;
162
+ evidenceCount?: number | undefined;
163
163
  /**
164
164
  * <p> The amount of evidence in the assessment report. </p>
165
165
  * @public
166
166
  */
167
- assessmentReportEvidenceCount?: number;
167
+ assessmentReportEvidenceCount?: number | undefined;
168
168
  }
169
169
  /**
170
170
  * @public
@@ -200,27 +200,27 @@ export interface Delegation {
200
200
  * <p> The unique identifier for the delegation. </p>
201
201
  * @public
202
202
  */
203
- id?: string;
203
+ id?: string | undefined;
204
204
  /**
205
205
  * <p> The name of the assessment that's associated with the delegation. </p>
206
206
  * @public
207
207
  */
208
- assessmentName?: string;
208
+ assessmentName?: string | undefined;
209
209
  /**
210
210
  * <p> The identifier for the assessment that's associated with the delegation. </p>
211
211
  * @public
212
212
  */
213
- assessmentId?: string;
213
+ assessmentId?: string | undefined;
214
214
  /**
215
215
  * <p> The status of the delegation. </p>
216
216
  * @public
217
217
  */
218
- status?: DelegationStatus;
218
+ status?: DelegationStatus | undefined;
219
219
  /**
220
220
  * <p> The Amazon Resource Name (ARN) of the IAM role. </p>
221
221
  * @public
222
222
  */
223
- roleArn?: string;
223
+ roleArn?: string | undefined;
224
224
  /**
225
225
  * <p> The type of customer persona. </p>
226
226
  * <note>
@@ -233,32 +233,32 @@ export interface Delegation {
233
233
  * </note>
234
234
  * @public
235
235
  */
236
- roleType?: RoleType;
236
+ roleType?: RoleType | undefined;
237
237
  /**
238
238
  * <p> Specifies when the delegation was created. </p>
239
239
  * @public
240
240
  */
241
- creationTime?: Date;
241
+ creationTime?: Date | undefined;
242
242
  /**
243
243
  * <p> Specifies when the delegation was last updated. </p>
244
244
  * @public
245
245
  */
246
- lastUpdated?: Date;
246
+ lastUpdated?: Date | undefined;
247
247
  /**
248
248
  * <p> The identifier for the control set that's associated with the delegation. </p>
249
249
  * @public
250
250
  */
251
- controlSetId?: string;
251
+ controlSetId?: string | undefined;
252
252
  /**
253
253
  * <p> The comment that's related to the delegation. </p>
254
254
  * @public
255
255
  */
256
- comment?: string;
256
+ comment?: string | undefined;
257
257
  /**
258
258
  * <p> The user or role that created the delegation. </p>
259
259
  * @public
260
260
  */
261
- createdBy?: string;
261
+ createdBy?: string | undefined;
262
262
  }
263
263
  /**
264
264
  * <p> The wrapper that contains the Audit Manager role information of the current user.
@@ -308,44 +308,44 @@ export interface AssessmentControlSet {
308
308
  * plain string format. </p>
309
309
  * @public
310
310
  */
311
- id?: string;
311
+ id?: string | undefined;
312
312
  /**
313
313
  * <p> The description for the control set. </p>
314
314
  * @public
315
315
  */
316
- description?: string;
316
+ description?: string | undefined;
317
317
  /**
318
318
  * <p> The current status of the control set. </p>
319
319
  * @public
320
320
  */
321
- status?: ControlSetStatus;
321
+ status?: ControlSetStatus | undefined;
322
322
  /**
323
323
  * <p> The roles that are associated with the control set. </p>
324
324
  * @public
325
325
  */
326
- roles?: Role[];
326
+ roles?: Role[] | undefined;
327
327
  /**
328
328
  * <p> The list of controls that's contained with the control set. </p>
329
329
  * @public
330
330
  */
331
- controls?: AssessmentControl[];
331
+ controls?: AssessmentControl[] | undefined;
332
332
  /**
333
333
  * <p> The delegations that are associated with the control set. </p>
334
334
  * @public
335
335
  */
336
- delegations?: Delegation[];
336
+ delegations?: Delegation[] | undefined;
337
337
  /**
338
338
  * <p> The total number of evidence objects that are retrieved automatically for the control
339
339
  * set. </p>
340
340
  * @public
341
341
  */
342
- systemEvidenceCount?: number;
342
+ systemEvidenceCount?: number | undefined;
343
343
  /**
344
344
  * <p> The total number of evidence objects that are uploaded manually to the control set.
345
345
  * </p>
346
346
  * @public
347
347
  */
348
- manualEvidenceCount?: number;
348
+ manualEvidenceCount?: number | undefined;
349
349
  }
350
350
  /**
351
351
  * <p> The metadata of a framework, such as the name, ID, or description. </p>
@@ -356,23 +356,23 @@ export interface FrameworkMetadata {
356
356
  * <p> The name of the framework. </p>
357
357
  * @public
358
358
  */
359
- name?: string;
359
+ name?: string | undefined;
360
360
  /**
361
361
  * <p> The description of the framework. </p>
362
362
  * @public
363
363
  */
364
- description?: string;
364
+ description?: string | undefined;
365
365
  /**
366
366
  * <p> The logo that's associated with the framework. </p>
367
367
  * @public
368
368
  */
369
- logo?: string;
369
+ logo?: string | undefined;
370
370
  /**
371
371
  * <p> The compliance standard that's associated with the framework. For example, this could
372
372
  * be PCI DSS or HIPAA. </p>
373
373
  * @public
374
374
  */
375
- complianceType?: string;
375
+ complianceType?: string | undefined;
376
376
  }
377
377
  /**
378
378
  * <p> The file used to structure and automate Audit Manager assessments for a given
@@ -384,22 +384,22 @@ export interface AssessmentFramework {
384
384
  * <p> The unique identifier for the framework. </p>
385
385
  * @public
386
386
  */
387
- id?: string;
387
+ id?: string | undefined;
388
388
  /**
389
389
  * <p> The Amazon Resource Name (ARN) of the framework. </p>
390
390
  * @public
391
391
  */
392
- arn?: string;
392
+ arn?: string | undefined;
393
393
  /**
394
394
  * <p> The metadata of a framework, such as the name, ID, or description. </p>
395
395
  * @public
396
396
  */
397
- metadata?: FrameworkMetadata;
397
+ metadata?: FrameworkMetadata | undefined;
398
398
  /**
399
399
  * <p> The control sets that are associated with the framework. </p>
400
400
  * @public
401
401
  */
402
- controlSets?: AssessmentControlSet[];
402
+ controlSets?: AssessmentControlSet[] | undefined;
403
403
  }
404
404
  /**
405
405
  * @public
@@ -422,12 +422,12 @@ export interface AssessmentReportsDestination {
422
422
  * <p> The destination type, such as Amazon S3. </p>
423
423
  * @public
424
424
  */
425
- destinationType?: AssessmentReportDestinationType;
425
+ destinationType?: AssessmentReportDestinationType | undefined;
426
426
  /**
427
427
  * <p> The destination bucket where Audit Manager stores assessment reports. </p>
428
428
  * @public
429
429
  */
430
- destination?: string;
430
+ destination?: string | undefined;
431
431
  }
432
432
  /**
433
433
  * <p> An Amazon Web Service such as Amazon S3 or CloudTrail.
@@ -453,7 +453,7 @@ export interface AWSService {
453
453
  * <p> The name of the Amazon Web Service. </p>
454
454
  * @public
455
455
  */
456
- serviceName?: string;
456
+ serviceName?: string | undefined;
457
457
  }
458
458
  /**
459
459
  * <p> The wrapper that contains the Amazon Web Services accounts that are in
@@ -476,7 +476,7 @@ export interface Scope {
476
476
  * </p>
477
477
  * @public
478
478
  */
479
- awsAccounts?: AWSAccount[];
479
+ awsAccounts?: AWSAccount[] | undefined;
480
480
  /**
481
481
  * @deprecated
482
482
  *
@@ -489,7 +489,7 @@ export interface Scope {
489
489
  * </important>
490
490
  * @public
491
491
  */
492
- awsServices?: AWSService[];
492
+ awsServices?: AWSService[] | undefined;
493
493
  }
494
494
  /**
495
495
  * @public
@@ -512,59 +512,59 @@ export interface AssessmentMetadata {
512
512
  * <p> The name of the assessment. </p>
513
513
  * @public
514
514
  */
515
- name?: string;
515
+ name?: string | undefined;
516
516
  /**
517
517
  * <p> The unique identifier for the assessment. </p>
518
518
  * @public
519
519
  */
520
- id?: string;
520
+ id?: string | undefined;
521
521
  /**
522
522
  * <p> The description of the assessment. </p>
523
523
  * @public
524
524
  */
525
- description?: string;
525
+ description?: string | undefined;
526
526
  /**
527
527
  * <p> The name of the compliance standard that's related to the assessment, such as PCI-DSS.
528
528
  * </p>
529
529
  * @public
530
530
  */
531
- complianceType?: string;
531
+ complianceType?: string | undefined;
532
532
  /**
533
533
  * <p> The overall status of the assessment. </p>
534
534
  * @public
535
535
  */
536
- status?: AssessmentStatus;
536
+ status?: AssessmentStatus | undefined;
537
537
  /**
538
538
  * <p> The destination that evidence reports are stored in for the assessment. </p>
539
539
  * @public
540
540
  */
541
- assessmentReportsDestination?: AssessmentReportsDestination;
541
+ assessmentReportsDestination?: AssessmentReportsDestination | undefined;
542
542
  /**
543
543
  * <p> The wrapper of Amazon Web Services accounts and services that are in scope for the
544
544
  * assessment. </p>
545
545
  * @public
546
546
  */
547
- scope?: Scope;
547
+ scope?: Scope | undefined;
548
548
  /**
549
549
  * <p> The roles that are associated with the assessment. </p>
550
550
  * @public
551
551
  */
552
- roles?: Role[];
552
+ roles?: Role[] | undefined;
553
553
  /**
554
554
  * <p> The delegations that are associated with the assessment. </p>
555
555
  * @public
556
556
  */
557
- delegations?: Delegation[];
557
+ delegations?: Delegation[] | undefined;
558
558
  /**
559
559
  * <p> Specifies when the assessment was created. </p>
560
560
  * @public
561
561
  */
562
- creationTime?: Date;
562
+ creationTime?: Date | undefined;
563
563
  /**
564
564
  * <p> The time of the most recent update. </p>
565
565
  * @public
566
566
  */
567
- lastUpdated?: Date;
567
+ lastUpdated?: Date | undefined;
568
568
  }
569
569
  /**
570
570
  * <p> An entity that defines the scope of audit evidence collected by Audit Manager.
@@ -576,27 +576,27 @@ export interface Assessment {
576
576
  * <p> The Amazon Resource Name (ARN) of the assessment. </p>
577
577
  * @public
578
578
  */
579
- arn?: string;
579
+ arn?: string | undefined;
580
580
  /**
581
581
  * <p> The Amazon Web Services account that's associated with the assessment. </p>
582
582
  * @public
583
583
  */
584
- awsAccount?: AWSAccount;
584
+ awsAccount?: AWSAccount | undefined;
585
585
  /**
586
586
  * <p> The metadata for the assessment. </p>
587
587
  * @public
588
588
  */
589
- metadata?: AssessmentMetadata;
589
+ metadata?: AssessmentMetadata | undefined;
590
590
  /**
591
591
  * <p> The framework that the assessment was created from. </p>
592
592
  * @public
593
593
  */
594
- framework?: AssessmentFramework;
594
+ framework?: AssessmentFramework | undefined;
595
595
  /**
596
596
  * <p> The tags that are associated with the assessment. </p>
597
597
  * @public
598
598
  */
599
- tags?: Record<string, string>;
599
+ tags?: Record<string, string> | undefined;
600
600
  }
601
601
  /**
602
602
  * <p> The folder where Audit Manager stores evidence for an assessment. </p>
@@ -607,99 +607,99 @@ export interface AssessmentEvidenceFolder {
607
607
  * <p> The name of the evidence folder. </p>
608
608
  * @public
609
609
  */
610
- name?: string;
610
+ name?: string | undefined;
611
611
  /**
612
612
  * <p> The date when the first evidence was added to the evidence folder. </p>
613
613
  * @public
614
614
  */
615
- date?: Date;
615
+ date?: Date | undefined;
616
616
  /**
617
617
  * <p> The identifier for the assessment. </p>
618
618
  * @public
619
619
  */
620
- assessmentId?: string;
620
+ assessmentId?: string | undefined;
621
621
  /**
622
622
  * <p> The identifier for the control set. </p>
623
623
  * @public
624
624
  */
625
- controlSetId?: string;
625
+ controlSetId?: string | undefined;
626
626
  /**
627
627
  * <p> The unique identifier for the control. </p>
628
628
  * @public
629
629
  */
630
- controlId?: string;
630
+ controlId?: string | undefined;
631
631
  /**
632
632
  * <p> The identifier for the folder that the evidence is stored in. </p>
633
633
  * @public
634
634
  */
635
- id?: string;
635
+ id?: string | undefined;
636
636
  /**
637
637
  * <p> The Amazon Web Service that the evidence was collected from. </p>
638
638
  * @public
639
639
  */
640
- dataSource?: string;
640
+ dataSource?: string | undefined;
641
641
  /**
642
642
  * <p> The name of the user who created the evidence folder. </p>
643
643
  * @public
644
644
  */
645
- author?: string;
645
+ author?: string | undefined;
646
646
  /**
647
647
  * <p> The total amount of evidence in the evidence folder. </p>
648
648
  * @public
649
649
  */
650
- totalEvidence?: number;
650
+ totalEvidence?: number | undefined;
651
651
  /**
652
652
  * <p> The total count of evidence that's included in the assessment report. </p>
653
653
  * @public
654
654
  */
655
- assessmentReportSelectionCount?: number;
655
+ assessmentReportSelectionCount?: number | undefined;
656
656
  /**
657
657
  * <p> The name of the control. </p>
658
658
  * @public
659
659
  */
660
- controlName?: string;
660
+ controlName?: string | undefined;
661
661
  /**
662
662
  * <p> The amount of evidence that's included in the evidence folder. </p>
663
663
  * @public
664
664
  */
665
- evidenceResourcesIncludedCount?: number;
665
+ evidenceResourcesIncludedCount?: number | undefined;
666
666
  /**
667
667
  * <p> The number of evidence that falls under the configuration data category. This evidence
668
668
  * is collected from configuration snapshots of other Amazon Web Services such as
669
669
  * Amazon EC2, Amazon S3, or IAM. </p>
670
670
  * @public
671
671
  */
672
- evidenceByTypeConfigurationDataCount?: number;
672
+ evidenceByTypeConfigurationDataCount?: number | undefined;
673
673
  /**
674
674
  * <p> The number of evidence that falls under the manual category. This evidence is imported
675
675
  * manually. </p>
676
676
  * @public
677
677
  */
678
- evidenceByTypeManualCount?: number;
678
+ evidenceByTypeManualCount?: number | undefined;
679
679
  /**
680
680
  * <p> The number of evidence that falls under the compliance check category. This evidence is
681
681
  * collected from Config or Security Hub. </p>
682
682
  * @public
683
683
  */
684
- evidenceByTypeComplianceCheckCount?: number;
684
+ evidenceByTypeComplianceCheckCount?: number | undefined;
685
685
  /**
686
686
  * <p> The total number of issues that were reported directly from Security Hub,
687
687
  * Config, or both. </p>
688
688
  * @public
689
689
  */
690
- evidenceByTypeComplianceCheckIssuesCount?: number;
690
+ evidenceByTypeComplianceCheckIssuesCount?: number | undefined;
691
691
  /**
692
692
  * <p> The number of evidence that falls under the user activity category. This evidence is
693
693
  * collected from CloudTrail logs. </p>
694
694
  * @public
695
695
  */
696
- evidenceByTypeUserActivityCount?: number;
696
+ evidenceByTypeUserActivityCount?: number | undefined;
697
697
  /**
698
698
  * <p> The total number of Amazon Web Services resources that were assessed to generate the
699
699
  * evidence. </p>
700
700
  * @public
701
701
  */
702
- evidenceAwsServiceSourceCount?: number;
702
+ evidenceAwsServiceSourceCount?: number | undefined;
703
703
  }
704
704
  /**
705
705
  * @public
@@ -722,58 +722,58 @@ export interface AssessmentFrameworkMetadata {
722
722
  * <p> The Amazon Resource Name (ARN) of the framework. </p>
723
723
  * @public
724
724
  */
725
- arn?: string;
725
+ arn?: string | undefined;
726
726
  /**
727
727
  * <p> The unique identifier for the framework. </p>
728
728
  * @public
729
729
  */
730
- id?: string;
730
+ id?: string | undefined;
731
731
  /**
732
732
  * <p> The framework type, such as a standard framework or a custom framework. </p>
733
733
  * @public
734
734
  */
735
- type?: FrameworkType;
735
+ type?: FrameworkType | undefined;
736
736
  /**
737
737
  * <p> The name of the framework. </p>
738
738
  * @public
739
739
  */
740
- name?: string;
740
+ name?: string | undefined;
741
741
  /**
742
742
  * <p> The description of the framework. </p>
743
743
  * @public
744
744
  */
745
- description?: string;
745
+ description?: string | undefined;
746
746
  /**
747
747
  * <p> The logo that's associated with the framework. </p>
748
748
  * @public
749
749
  */
750
- logo?: string;
750
+ logo?: string | undefined;
751
751
  /**
752
752
  * <p> The compliance type that the new custom framework supports, such as CIS or HIPAA.
753
753
  * </p>
754
754
  * @public
755
755
  */
756
- complianceType?: string;
756
+ complianceType?: string | undefined;
757
757
  /**
758
758
  * <p> The number of controls that are associated with the framework. </p>
759
759
  * @public
760
760
  */
761
- controlsCount?: number;
761
+ controlsCount?: number | undefined;
762
762
  /**
763
763
  * <p> The number of control sets that are associated with the framework. </p>
764
764
  * @public
765
765
  */
766
- controlSetsCount?: number;
766
+ controlSetsCount?: number | undefined;
767
767
  /**
768
768
  * <p> The time when the framework was created. </p>
769
769
  * @public
770
770
  */
771
- createdAt?: Date;
771
+ createdAt?: Date | undefined;
772
772
  /**
773
773
  * <p> The time when the framework was most recently updated. </p>
774
774
  * @public
775
775
  */
776
- lastUpdatedAt?: Date;
776
+ lastUpdatedAt?: Date | undefined;
777
777
  }
778
778
  /**
779
779
  * @public
@@ -802,78 +802,78 @@ export interface AssessmentFrameworkShareRequest {
802
802
  * <p> The unique identifier for the share request. </p>
803
803
  * @public
804
804
  */
805
- id?: string;
805
+ id?: string | undefined;
806
806
  /**
807
807
  * <p>The unique identifier for the shared custom framework. </p>
808
808
  * @public
809
809
  */
810
- frameworkId?: string;
810
+ frameworkId?: string | undefined;
811
811
  /**
812
812
  * <p> The name of the custom framework that the share request is for. </p>
813
813
  * @public
814
814
  */
815
- frameworkName?: string;
815
+ frameworkName?: string | undefined;
816
816
  /**
817
817
  * <p>The description of the shared custom framework.</p>
818
818
  * @public
819
819
  */
820
- frameworkDescription?: string;
820
+ frameworkDescription?: string | undefined;
821
821
  /**
822
822
  * <p> The status of the share request. </p>
823
823
  * @public
824
824
  */
825
- status?: ShareRequestStatus;
825
+ status?: ShareRequestStatus | undefined;
826
826
  /**
827
827
  * <p> The Amazon Web Services account of the sender. </p>
828
828
  * @public
829
829
  */
830
- sourceAccount?: string;
830
+ sourceAccount?: string | undefined;
831
831
  /**
832
832
  * <p> The Amazon Web Services account of the recipient. </p>
833
833
  * @public
834
834
  */
835
- destinationAccount?: string;
835
+ destinationAccount?: string | undefined;
836
836
  /**
837
837
  * <p> The Amazon Web Services Region of the recipient. </p>
838
838
  * @public
839
839
  */
840
- destinationRegion?: string;
840
+ destinationRegion?: string | undefined;
841
841
  /**
842
842
  * <p> The time when the share request expires. </p>
843
843
  * @public
844
844
  */
845
- expirationTime?: Date;
845
+ expirationTime?: Date | undefined;
846
846
  /**
847
847
  * <p> The time when the share request was created. </p>
848
848
  * @public
849
849
  */
850
- creationTime?: Date;
850
+ creationTime?: Date | undefined;
851
851
  /**
852
852
  * <p> Specifies when the share request was last updated. </p>
853
853
  * @public
854
854
  */
855
- lastUpdated?: Date;
855
+ lastUpdated?: Date | undefined;
856
856
  /**
857
857
  * <p> An optional comment from the sender about the share request. </p>
858
858
  * @public
859
859
  */
860
- comment?: string;
860
+ comment?: string | undefined;
861
861
  /**
862
862
  * <p>The number of standard controls that are part of the shared custom framework. </p>
863
863
  * @public
864
864
  */
865
- standardControlsCount?: number;
865
+ standardControlsCount?: number | undefined;
866
866
  /**
867
867
  * <p>The number of custom controls that are part of the shared custom framework.</p>
868
868
  * @public
869
869
  */
870
- customControlsCount?: number;
870
+ customControlsCount?: number | undefined;
871
871
  /**
872
872
  * <p>The compliance type that the shared custom framework supports, such as CIS or
873
873
  * HIPAA.</p>
874
874
  * @public
875
875
  */
876
- complianceType?: string;
876
+ complianceType?: string | undefined;
877
877
  }
878
878
  /**
879
879
  * <p> A metadata object that's associated with an assessment in Audit Manager.
@@ -885,43 +885,43 @@ export interface AssessmentMetadataItem {
885
885
  * <p> The name of the assessment. </p>
886
886
  * @public
887
887
  */
888
- name?: string;
888
+ name?: string | undefined;
889
889
  /**
890
890
  * <p> The unique identifier for the assessment. </p>
891
891
  * @public
892
892
  */
893
- id?: string;
893
+ id?: string | undefined;
894
894
  /**
895
895
  * <p> The name of the compliance standard that's related to the assessment, such as PCI-DSS.
896
896
  * </p>
897
897
  * @public
898
898
  */
899
- complianceType?: string;
899
+ complianceType?: string | undefined;
900
900
  /**
901
901
  * <p> The current status of the assessment. </p>
902
902
  * @public
903
903
  */
904
- status?: AssessmentStatus;
904
+ status?: AssessmentStatus | undefined;
905
905
  /**
906
906
  * <p> The roles that are associated with the assessment. </p>
907
907
  * @public
908
908
  */
909
- roles?: Role[];
909
+ roles?: Role[] | undefined;
910
910
  /**
911
911
  * <p> The delegations that are associated with the assessment. </p>
912
912
  * @public
913
913
  */
914
- delegations?: Delegation[];
914
+ delegations?: Delegation[] | undefined;
915
915
  /**
916
916
  * <p> Specifies when the assessment was created. </p>
917
917
  * @public
918
918
  */
919
- creationTime?: Date;
919
+ creationTime?: Date | undefined;
920
920
  /**
921
921
  * <p> The time of the most recent update. </p>
922
922
  * @public
923
923
  */
924
- lastUpdated?: Date;
924
+ lastUpdated?: Date | undefined;
925
925
  }
926
926
  /**
927
927
  * @public
@@ -948,47 +948,47 @@ export interface AssessmentReport {
948
948
  * <p> The unique identifier for the assessment report. </p>
949
949
  * @public
950
950
  */
951
- id?: string;
951
+ id?: string | undefined;
952
952
  /**
953
953
  * <p> The name that's given to the assessment report. </p>
954
954
  * @public
955
955
  */
956
- name?: string;
956
+ name?: string | undefined;
957
957
  /**
958
958
  * <p> The description of the specified assessment report. </p>
959
959
  * @public
960
960
  */
961
- description?: string;
961
+ description?: string | undefined;
962
962
  /**
963
963
  * <p> The identifier for the specified Amazon Web Services account. </p>
964
964
  * @public
965
965
  */
966
- awsAccountId?: string;
966
+ awsAccountId?: string | undefined;
967
967
  /**
968
968
  * <p> The identifier for the specified assessment. </p>
969
969
  * @public
970
970
  */
971
- assessmentId?: string;
971
+ assessmentId?: string | undefined;
972
972
  /**
973
973
  * <p> The name of the associated assessment. </p>
974
974
  * @public
975
975
  */
976
- assessmentName?: string;
976
+ assessmentName?: string | undefined;
977
977
  /**
978
978
  * <p> The name of the user who created the assessment report. </p>
979
979
  * @public
980
980
  */
981
- author?: string;
981
+ author?: string | undefined;
982
982
  /**
983
983
  * <p> The current status of the specified assessment report. </p>
984
984
  * @public
985
985
  */
986
- status?: AssessmentReportStatus;
986
+ status?: AssessmentReportStatus | undefined;
987
987
  /**
988
988
  * <p> Specifies when the assessment report was created. </p>
989
989
  * @public
990
990
  */
991
- creationTime?: Date;
991
+ creationTime?: Date | undefined;
992
992
  }
993
993
  /**
994
994
  * <p> An error entity for assessment report evidence errors. This is used to provide more
@@ -1000,17 +1000,17 @@ export interface AssessmentReportEvidenceError {
1000
1000
  * <p> The identifier for the evidence. </p>
1001
1001
  * @public
1002
1002
  */
1003
- evidenceId?: string;
1003
+ evidenceId?: string | undefined;
1004
1004
  /**
1005
1005
  * <p> The error code that was returned. </p>
1006
1006
  * @public
1007
1007
  */
1008
- errorCode?: string;
1008
+ errorCode?: string | undefined;
1009
1009
  /**
1010
1010
  * <p> The error message that was returned. </p>
1011
1011
  * @public
1012
1012
  */
1013
- errorMessage?: string;
1013
+ errorMessage?: string | undefined;
1014
1014
  }
1015
1015
  /**
1016
1016
  * <p> The metadata objects that are associated with the specified assessment report. </p>
@@ -1021,42 +1021,42 @@ export interface AssessmentReportMetadata {
1021
1021
  * <p> The unique identifier for the assessment report. </p>
1022
1022
  * @public
1023
1023
  */
1024
- id?: string;
1024
+ id?: string | undefined;
1025
1025
  /**
1026
1026
  * <p> The name of the assessment report. </p>
1027
1027
  * @public
1028
1028
  */
1029
- name?: string;
1029
+ name?: string | undefined;
1030
1030
  /**
1031
1031
  * <p> The description of the assessment report. </p>
1032
1032
  * @public
1033
1033
  */
1034
- description?: string;
1034
+ description?: string | undefined;
1035
1035
  /**
1036
1036
  * <p> The unique identifier for the associated assessment. </p>
1037
1037
  * @public
1038
1038
  */
1039
- assessmentId?: string;
1039
+ assessmentId?: string | undefined;
1040
1040
  /**
1041
1041
  * <p>The name of the associated assessment. </p>
1042
1042
  * @public
1043
1043
  */
1044
- assessmentName?: string;
1044
+ assessmentName?: string | undefined;
1045
1045
  /**
1046
1046
  * <p> The name of the user who created the assessment report. </p>
1047
1047
  * @public
1048
1048
  */
1049
- author?: string;
1049
+ author?: string | undefined;
1050
1050
  /**
1051
1051
  * <p> The current status of the assessment report. </p>
1052
1052
  * @public
1053
1053
  */
1054
- status?: AssessmentReportStatus;
1054
+ status?: AssessmentReportStatus | undefined;
1055
1055
  /**
1056
1056
  * <p> Specifies when the assessment report was created. </p>
1057
1057
  * @public
1058
1058
  */
1059
- creationTime?: Date;
1059
+ creationTime?: Date | undefined;
1060
1060
  }
1061
1061
  /**
1062
1062
  * @public
@@ -1154,12 +1154,12 @@ export declare class ValidationException extends __BaseException {
1154
1154
  * <p> The reason the request failed validation. </p>
1155
1155
  * @public
1156
1156
  */
1157
- reason?: ValidationExceptionReason;
1157
+ reason?: ValidationExceptionReason | undefined;
1158
1158
  /**
1159
1159
  * <p> The fields that caused the error, if applicable. </p>
1160
1160
  * @public
1161
1161
  */
1162
- fields?: ValidationExceptionField[];
1162
+ fields?: ValidationExceptionField[] | undefined;
1163
1163
  /**
1164
1164
  * @internal
1165
1165
  */
@@ -1193,13 +1193,13 @@ export interface BatchAssociateAssessmentReportEvidenceResponse {
1193
1193
  * <p> The list of evidence identifiers. </p>
1194
1194
  * @public
1195
1195
  */
1196
- evidenceIds?: string[];
1196
+ evidenceIds?: string[] | undefined;
1197
1197
  /**
1198
1198
  * <p> A list of errors that the <code>BatchAssociateAssessmentReportEvidence</code> API
1199
1199
  * returned. </p>
1200
1200
  * @public
1201
1201
  */
1202
- errors?: AssessmentReportEvidenceError[];
1202
+ errors?: AssessmentReportEvidenceError[] | undefined;
1203
1203
  }
1204
1204
  /**
1205
1205
  * <p> A collection of attributes that's used to create a delegation for an assessment in
@@ -1211,17 +1211,17 @@ export interface CreateDelegationRequest {
1211
1211
  * <p> A comment that's related to the delegation request. </p>
1212
1212
  * @public
1213
1213
  */
1214
- comment?: string;
1214
+ comment?: string | undefined;
1215
1215
  /**
1216
1216
  * <p> The unique identifier for the control set. </p>
1217
1217
  * @public
1218
1218
  */
1219
- controlSetId?: string;
1219
+ controlSetId?: string | undefined;
1220
1220
  /**
1221
1221
  * <p> The Amazon Resource Name (ARN) of the IAM role. </p>
1222
1222
  * @public
1223
1223
  */
1224
- roleArn?: string;
1224
+ roleArn?: string | undefined;
1225
1225
  /**
1226
1226
  * <p> The type of customer persona. </p>
1227
1227
  * <note>
@@ -1234,7 +1234,7 @@ export interface CreateDelegationRequest {
1234
1234
  * </note>
1235
1235
  * @public
1236
1236
  */
1237
- roleType?: RoleType;
1237
+ roleType?: RoleType | undefined;
1238
1238
  }
1239
1239
  /**
1240
1240
  * @public
@@ -1261,19 +1261,19 @@ export interface BatchCreateDelegationByAssessmentError {
1261
1261
  * <p> The API request to batch create delegations in Audit Manager. </p>
1262
1262
  * @public
1263
1263
  */
1264
- createDelegationRequest?: CreateDelegationRequest;
1264
+ createDelegationRequest?: CreateDelegationRequest | undefined;
1265
1265
  /**
1266
1266
  * <p> The error code that the <code>BatchCreateDelegationByAssessment</code> API returned.
1267
1267
  * </p>
1268
1268
  * @public
1269
1269
  */
1270
- errorCode?: string;
1270
+ errorCode?: string | undefined;
1271
1271
  /**
1272
1272
  * <p> The error message that the <code>BatchCreateDelegationByAssessment</code> API returned.
1273
1273
  * </p>
1274
1274
  * @public
1275
1275
  */
1276
- errorMessage?: string;
1276
+ errorMessage?: string | undefined;
1277
1277
  }
1278
1278
  /**
1279
1279
  * @public
@@ -1283,13 +1283,13 @@ export interface BatchCreateDelegationByAssessmentResponse {
1283
1283
  * <p> The delegations that are associated with the assessment. </p>
1284
1284
  * @public
1285
1285
  */
1286
- delegations?: Delegation[];
1286
+ delegations?: Delegation[] | undefined;
1287
1287
  /**
1288
1288
  * <p> A list of errors that the <code>BatchCreateDelegationByAssessment</code> API returned.
1289
1289
  * </p>
1290
1290
  * @public
1291
1291
  */
1292
- errors?: BatchCreateDelegationByAssessmentError[];
1292
+ errors?: BatchCreateDelegationByAssessmentError[] | undefined;
1293
1293
  }
1294
1294
  /**
1295
1295
  * @public
@@ -1316,19 +1316,19 @@ export interface BatchDeleteDelegationByAssessmentError {
1316
1316
  * <p> The identifier for the delegation. </p>
1317
1317
  * @public
1318
1318
  */
1319
- delegationId?: string;
1319
+ delegationId?: string | undefined;
1320
1320
  /**
1321
1321
  * <p> The error code that the <code>BatchDeleteDelegationByAssessment</code> API returned.
1322
1322
  * </p>
1323
1323
  * @public
1324
1324
  */
1325
- errorCode?: string;
1325
+ errorCode?: string | undefined;
1326
1326
  /**
1327
1327
  * <p> The error message that the <code>BatchDeleteDelegationByAssessment</code> API returned.
1328
1328
  * </p>
1329
1329
  * @public
1330
1330
  */
1331
- errorMessage?: string;
1331
+ errorMessage?: string | undefined;
1332
1332
  }
1333
1333
  /**
1334
1334
  * @public
@@ -1339,7 +1339,7 @@ export interface BatchDeleteDelegationByAssessmentResponse {
1339
1339
  * </p>
1340
1340
  * @public
1341
1341
  */
1342
- errors?: BatchDeleteDelegationByAssessmentError[];
1342
+ errors?: BatchDeleteDelegationByAssessmentError[] | undefined;
1343
1343
  }
1344
1344
  /**
1345
1345
  * @public
@@ -1369,13 +1369,13 @@ export interface BatchDisassociateAssessmentReportEvidenceResponse {
1369
1369
  * <p> The identifier for the evidence. </p>
1370
1370
  * @public
1371
1371
  */
1372
- evidenceIds?: string[];
1372
+ evidenceIds?: string[] | undefined;
1373
1373
  /**
1374
1374
  * <p> A list of errors that the <code>BatchDisassociateAssessmentReportEvidence</code> API
1375
1375
  * returned. </p>
1376
1376
  * @public
1377
1377
  */
1378
- errors?: AssessmentReportEvidenceError[];
1378
+ errors?: AssessmentReportEvidenceError[] | undefined;
1379
1379
  }
1380
1380
  /**
1381
1381
  * <p> Evidence that's manually added to a control in Audit Manager.
@@ -1388,12 +1388,12 @@ export interface ManualEvidence {
1388
1388
  * <p>The S3 URL of the object that's imported as manual evidence. </p>
1389
1389
  * @public
1390
1390
  */
1391
- s3ResourcePath?: string;
1391
+ s3ResourcePath?: string | undefined;
1392
1392
  /**
1393
1393
  * <p>The plain text response that's entered and saved as manual evidence.</p>
1394
1394
  * @public
1395
1395
  */
1396
- textResponse?: string;
1396
+ textResponse?: string | undefined;
1397
1397
  /**
1398
1398
  * <p>The name of the file that's uploaded as manual evidence. This name is populated using
1399
1399
  * the <code>evidenceFileName</code> value from the <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_GetEvidenceFileUploadUrl.html">
@@ -1401,7 +1401,7 @@ export interface ManualEvidence {
1401
1401
  * </a> API response.</p>
1402
1402
  * @public
1403
1403
  */
1404
- evidenceFileName?: string;
1404
+ evidenceFileName?: string | undefined;
1405
1405
  }
1406
1406
  /**
1407
1407
  * @public
@@ -1438,19 +1438,19 @@ export interface BatchImportEvidenceToAssessmentControlError {
1438
1438
  * <p> Manual evidence that can't be collected automatically by Audit Manager. </p>
1439
1439
  * @public
1440
1440
  */
1441
- manualEvidence?: ManualEvidence;
1441
+ manualEvidence?: ManualEvidence | undefined;
1442
1442
  /**
1443
1443
  * <p> The error code that the <code>BatchImportEvidenceToAssessmentControl</code> API
1444
1444
  * returned. </p>
1445
1445
  * @public
1446
1446
  */
1447
- errorCode?: string;
1447
+ errorCode?: string | undefined;
1448
1448
  /**
1449
1449
  * <p> The error message that the <code>BatchImportEvidenceToAssessmentControl</code> API
1450
1450
  * returned. </p>
1451
1451
  * @public
1452
1452
  */
1453
- errorMessage?: string;
1453
+ errorMessage?: string | undefined;
1454
1454
  }
1455
1455
  /**
1456
1456
  * @public
@@ -1461,7 +1461,7 @@ export interface BatchImportEvidenceToAssessmentControlResponse {
1461
1461
  * returned. </p>
1462
1462
  * @public
1463
1463
  */
1464
- errors?: BatchImportEvidenceToAssessmentControlError[];
1464
+ errors?: BatchImportEvidenceToAssessmentControlError[] | undefined;
1465
1465
  }
1466
1466
  /**
1467
1467
  * <p>The request was denied due to request throttling.</p>
@@ -1488,7 +1488,7 @@ export interface CreateAssessmentRequest {
1488
1488
  * <p> The optional description of the assessment to be created. </p>
1489
1489
  * @public
1490
1490
  */
1491
- description?: string;
1491
+ description?: string | undefined;
1492
1492
  /**
1493
1493
  * <p> The assessment report storage destination for the assessment that's being created.
1494
1494
  * </p>
@@ -1525,7 +1525,7 @@ export interface CreateAssessmentRequest {
1525
1525
  * <p> The tags that are associated with the assessment. </p>
1526
1526
  * @public
1527
1527
  */
1528
- tags?: Record<string, string>;
1528
+ tags?: Record<string, string> | undefined;
1529
1529
  }
1530
1530
  /**
1531
1531
  * @public
@@ -1536,7 +1536,7 @@ export interface CreateAssessmentResponse {
1536
1536
  * An Audit Manager assessment is an implementation of an Audit Manager framework. </p>
1537
1537
  * @public
1538
1538
  */
1539
- assessment?: Assessment;
1539
+ assessment?: Assessment | undefined;
1540
1540
  }
1541
1541
  /**
1542
1542
  * <p>You've reached your account quota for this resource type. To perform the requested
@@ -1580,7 +1580,7 @@ export interface CreateAssessmentFrameworkControlSet {
1580
1580
  * </p>
1581
1581
  * @public
1582
1582
  */
1583
- controls?: CreateAssessmentFrameworkControl[];
1583
+ controls?: CreateAssessmentFrameworkControl[] | undefined;
1584
1584
  }
1585
1585
  /**
1586
1586
  * @public
@@ -1595,13 +1595,13 @@ export interface CreateAssessmentFrameworkRequest {
1595
1595
  * <p> An optional description for the new custom framework. </p>
1596
1596
  * @public
1597
1597
  */
1598
- description?: string;
1598
+ description?: string | undefined;
1599
1599
  /**
1600
1600
  * <p> The compliance type that the new custom framework supports, such as CIS or HIPAA.
1601
1601
  * </p>
1602
1602
  * @public
1603
1603
  */
1604
- complianceType?: string;
1604
+ complianceType?: string | undefined;
1605
1605
  /**
1606
1606
  * <p> The control sets that are associated with the framework. </p>
1607
1607
  * @public
@@ -1611,7 +1611,7 @@ export interface CreateAssessmentFrameworkRequest {
1611
1611
  * <p> The tags that are associated with the framework. </p>
1612
1612
  * @public
1613
1613
  */
1614
- tags?: Record<string, string>;
1614
+ tags?: Record<string, string> | undefined;
1615
1615
  }
1616
1616
  /**
1617
1617
  * @public
@@ -1707,7 +1707,7 @@ export interface SourceKeyword {
1707
1707
  * </ul>
1708
1708
  * @public
1709
1709
  */
1710
- keywordInputType?: KeywordInputType;
1710
+ keywordInputType?: KeywordInputType | undefined;
1711
1711
  /**
1712
1712
  * <p> The value of the keyword that's used when mapping a control data source. For example,
1713
1713
  * this can be a CloudTrail event name, a rule name for Config, a
@@ -1817,7 +1817,7 @@ export interface SourceKeyword {
1817
1817
  * </important>
1818
1818
  * @public
1819
1819
  */
1820
- keywordValue?: string;
1820
+ keywordValue?: string | undefined;
1821
1821
  }
1822
1822
  /**
1823
1823
  * @public
@@ -1858,17 +1858,17 @@ export interface ControlMappingSource {
1858
1858
  * <p> The unique identifier for the source. </p>
1859
1859
  * @public
1860
1860
  */
1861
- sourceId?: string;
1861
+ sourceId?: string | undefined;
1862
1862
  /**
1863
1863
  * <p> The name of the source. </p>
1864
1864
  * @public
1865
1865
  */
1866
- sourceName?: string;
1866
+ sourceName?: string | undefined;
1867
1867
  /**
1868
1868
  * <p> The description of the source. </p>
1869
1869
  * @public
1870
1870
  */
1871
- sourceDescription?: string;
1871
+ sourceDescription?: string | undefined;
1872
1872
  /**
1873
1873
  * <p>The setup option for the data source. This option reflects if the evidence collection
1874
1874
  * method is automated or manual. If you don’t provide a value for
@@ -1876,7 +1876,7 @@ export interface ControlMappingSource {
1876
1876
  * the correct value based on the <code>sourceType</code> that you specify.</p>
1877
1877
  * @public
1878
1878
  */
1879
- sourceSetUpOption?: SourceSetUpOption;
1879
+ sourceSetUpOption?: SourceSetUpOption | undefined;
1880
1880
  /**
1881
1881
  * <p> Specifies which type of data source is used to collect evidence. </p>
1882
1882
  * <ul>
@@ -1893,7 +1893,7 @@ export interface ControlMappingSource {
1893
1893
  * </ul>
1894
1894
  * @public
1895
1895
  */
1896
- sourceType?: SourceType;
1896
+ sourceType?: SourceType | undefined;
1897
1897
  /**
1898
1898
  * <p>A keyword that relates to the control data source.</p>
1899
1899
  * <p>For manual evidence, this keyword indicates if the manual evidence is a file or
@@ -1928,17 +1928,17 @@ export interface ControlMappingSource {
1928
1928
  * </ul>
1929
1929
  * @public
1930
1930
  */
1931
- sourceKeyword?: SourceKeyword;
1931
+ sourceKeyword?: SourceKeyword | undefined;
1932
1932
  /**
1933
1933
  * <p>Specifies how often evidence is collected from the control mapping source. </p>
1934
1934
  * @public
1935
1935
  */
1936
- sourceFrequency?: SourceFrequency;
1936
+ sourceFrequency?: SourceFrequency | undefined;
1937
1937
  /**
1938
1938
  * <p> The instructions for troubleshooting the control. </p>
1939
1939
  * @public
1940
1940
  */
1941
- troubleshootingText?: string;
1941
+ troubleshootingText?: string | undefined;
1942
1942
  }
1943
1943
  /**
1944
1944
  * @public
@@ -1974,79 +1974,79 @@ export interface Control {
1974
1974
  * <p> The Amazon Resource Name (ARN) of the control. </p>
1975
1975
  * @public
1976
1976
  */
1977
- arn?: string;
1977
+ arn?: string | undefined;
1978
1978
  /**
1979
1979
  * <p> The unique identifier for the control. </p>
1980
1980
  * @public
1981
1981
  */
1982
- id?: string;
1982
+ id?: string | undefined;
1983
1983
  /**
1984
1984
  * <p> Specifies whether the control is a standard control or a custom control.</p>
1985
1985
  * @public
1986
1986
  */
1987
- type?: ControlType;
1987
+ type?: ControlType | undefined;
1988
1988
  /**
1989
1989
  * <p> The name of the control. </p>
1990
1990
  * @public
1991
1991
  */
1992
- name?: string;
1992
+ name?: string | undefined;
1993
1993
  /**
1994
1994
  * <p> The description of the control. </p>
1995
1995
  * @public
1996
1996
  */
1997
- description?: string;
1997
+ description?: string | undefined;
1998
1998
  /**
1999
1999
  * <p> The steps that you should follow to determine if the control has been satisfied.
2000
2000
  * </p>
2001
2001
  * @public
2002
2002
  */
2003
- testingInformation?: string;
2003
+ testingInformation?: string | undefined;
2004
2004
  /**
2005
2005
  * <p> The title of the action plan for remediating the control. </p>
2006
2006
  * @public
2007
2007
  */
2008
- actionPlanTitle?: string;
2008
+ actionPlanTitle?: string | undefined;
2009
2009
  /**
2010
2010
  * <p> The recommended actions to carry out if the control isn't fulfilled. </p>
2011
2011
  * @public
2012
2012
  */
2013
- actionPlanInstructions?: string;
2013
+ actionPlanInstructions?: string | undefined;
2014
2014
  /**
2015
2015
  * <p> The data source types that determine where Audit Manager collects evidence from for
2016
2016
  * the control. </p>
2017
2017
  * @public
2018
2018
  */
2019
- controlSources?: string;
2019
+ controlSources?: string | undefined;
2020
2020
  /**
2021
2021
  * <p> The data mapping sources for the control. </p>
2022
2022
  * @public
2023
2023
  */
2024
- controlMappingSources?: ControlMappingSource[];
2024
+ controlMappingSources?: ControlMappingSource[] | undefined;
2025
2025
  /**
2026
2026
  * <p> The time when the control was created. </p>
2027
2027
  * @public
2028
2028
  */
2029
- createdAt?: Date;
2029
+ createdAt?: Date | undefined;
2030
2030
  /**
2031
2031
  * <p> The time when the control was most recently updated. </p>
2032
2032
  * @public
2033
2033
  */
2034
- lastUpdatedAt?: Date;
2034
+ lastUpdatedAt?: Date | undefined;
2035
2035
  /**
2036
2036
  * <p> The user or role that created the control. </p>
2037
2037
  * @public
2038
2038
  */
2039
- createdBy?: string;
2039
+ createdBy?: string | undefined;
2040
2040
  /**
2041
2041
  * <p> The user or role that most recently updated the control. </p>
2042
2042
  * @public
2043
2043
  */
2044
- lastUpdatedBy?: string;
2044
+ lastUpdatedBy?: string | undefined;
2045
2045
  /**
2046
2046
  * <p> The tags associated with the control. </p>
2047
2047
  * @public
2048
2048
  */
2049
- tags?: Record<string, string>;
2049
+ tags?: Record<string, string> | undefined;
2050
2050
  /**
2051
2051
  * <p>The state of the control. The <code>END_OF_SUPPORT</code> state is applicable to
2052
2052
  * standard controls only. This state indicates that the standard control can still be used to
@@ -2054,7 +2054,7 @@ export interface Control {
2054
2054
  * control.</p>
2055
2055
  * @public
2056
2056
  */
2057
- state?: ControlState;
2057
+ state?: ControlState | undefined;
2058
2058
  }
2059
2059
  /**
2060
2060
  * <p> A set of controls in Audit Manager. </p>
@@ -2066,17 +2066,17 @@ export interface ControlSet {
2066
2066
  * plain string format. </p>
2067
2067
  * @public
2068
2068
  */
2069
- id?: string;
2069
+ id?: string | undefined;
2070
2070
  /**
2071
2071
  * <p> The name of the control set. </p>
2072
2072
  * @public
2073
2073
  */
2074
- name?: string;
2074
+ name?: string | undefined;
2075
2075
  /**
2076
2076
  * <p> The list of controls within the control set. </p>
2077
2077
  * @public
2078
2078
  */
2079
- controls?: Control[];
2079
+ controls?: Control[] | undefined;
2080
2080
  }
2081
2081
  /**
2082
2082
  * <p> The file that's used to structure and automate Audit Manager assessments for a
@@ -2088,72 +2088,72 @@ export interface Framework {
2088
2088
  * <p> The Amazon Resource Name (ARN) of the framework. </p>
2089
2089
  * @public
2090
2090
  */
2091
- arn?: string;
2091
+ arn?: string | undefined;
2092
2092
  /**
2093
2093
  * <p> The unique identifier for the framework. </p>
2094
2094
  * @public
2095
2095
  */
2096
- id?: string;
2096
+ id?: string | undefined;
2097
2097
  /**
2098
2098
  * <p> The name of the framework. </p>
2099
2099
  * @public
2100
2100
  */
2101
- name?: string;
2101
+ name?: string | undefined;
2102
2102
  /**
2103
2103
  * <p> Specifies whether the framework is a standard framework or a custom framework.</p>
2104
2104
  * @public
2105
2105
  */
2106
- type?: FrameworkType;
2106
+ type?: FrameworkType | undefined;
2107
2107
  /**
2108
2108
  * <p> The compliance type that the framework supports, such as CIS or HIPAA. </p>
2109
2109
  * @public
2110
2110
  */
2111
- complianceType?: string;
2111
+ complianceType?: string | undefined;
2112
2112
  /**
2113
2113
  * <p> The description of the framework. </p>
2114
2114
  * @public
2115
2115
  */
2116
- description?: string;
2116
+ description?: string | undefined;
2117
2117
  /**
2118
2118
  * <p> The logo that's associated with the framework. </p>
2119
2119
  * @public
2120
2120
  */
2121
- logo?: string;
2121
+ logo?: string | undefined;
2122
2122
  /**
2123
2123
  * <p> The control data sources where Audit Manager collects evidence from.</p>
2124
2124
  * @public
2125
2125
  */
2126
- controlSources?: string;
2126
+ controlSources?: string | undefined;
2127
2127
  /**
2128
2128
  * <p> The control sets that are associated with the framework. </p>
2129
2129
  * @public
2130
2130
  */
2131
- controlSets?: ControlSet[];
2131
+ controlSets?: ControlSet[] | undefined;
2132
2132
  /**
2133
2133
  * <p> The time when the framework was created. </p>
2134
2134
  * @public
2135
2135
  */
2136
- createdAt?: Date;
2136
+ createdAt?: Date | undefined;
2137
2137
  /**
2138
2138
  * <p> The time when the framework was most recently updated. </p>
2139
2139
  * @public
2140
2140
  */
2141
- lastUpdatedAt?: Date;
2141
+ lastUpdatedAt?: Date | undefined;
2142
2142
  /**
2143
2143
  * <p> The user or role that created the framework. </p>
2144
2144
  * @public
2145
2145
  */
2146
- createdBy?: string;
2146
+ createdBy?: string | undefined;
2147
2147
  /**
2148
2148
  * <p> The user or role that most recently updated the framework. </p>
2149
2149
  * @public
2150
2150
  */
2151
- lastUpdatedBy?: string;
2151
+ lastUpdatedBy?: string | undefined;
2152
2152
  /**
2153
2153
  * <p> The tags that are associated with the framework. </p>
2154
2154
  * @public
2155
2155
  */
2156
- tags?: Record<string, string>;
2156
+ tags?: Record<string, string> | undefined;
2157
2157
  }
2158
2158
  /**
2159
2159
  * @public
@@ -2164,7 +2164,7 @@ export interface CreateAssessmentFrameworkResponse {
2164
2164
  * returned. </p>
2165
2165
  * @public
2166
2166
  */
2167
- framework?: Framework;
2167
+ framework?: Framework | undefined;
2168
2168
  }
2169
2169
  /**
2170
2170
  * @public
@@ -2179,7 +2179,7 @@ export interface CreateAssessmentReportRequest {
2179
2179
  * <p> The description of the assessment report. </p>
2180
2180
  * @public
2181
2181
  */
2182
- description?: string;
2182
+ description?: string | undefined;
2183
2183
  /**
2184
2184
  * <p> The identifier for the assessment. </p>
2185
2185
  * @public
@@ -2198,7 +2198,7 @@ export interface CreateAssessmentReportRequest {
2198
2198
  * </p>
2199
2199
  * @public
2200
2200
  */
2201
- queryStatement?: string;
2201
+ queryStatement?: string | undefined;
2202
2202
  }
2203
2203
  /**
2204
2204
  * @public
@@ -2209,7 +2209,7 @@ export interface CreateAssessmentReportResponse {
2209
2209
  * </p>
2210
2210
  * @public
2211
2211
  */
2212
- assessmentReport?: AssessmentReport;
2212
+ assessmentReport?: AssessmentReport | undefined;
2213
2213
  }
2214
2214
  /**
2215
2215
  * <p>The mapping attributes that determine the evidence source for a given control, along
@@ -2221,13 +2221,13 @@ export interface CreateControlMappingSource {
2221
2221
  * <p> The name of the control mapping data source. </p>
2222
2222
  * @public
2223
2223
  */
2224
- sourceName?: string;
2224
+ sourceName?: string | undefined;
2225
2225
  /**
2226
2226
  * <p> The description of the data source that determines where Audit Manager collects
2227
2227
  * evidence from for the control. </p>
2228
2228
  * @public
2229
2229
  */
2230
- sourceDescription?: string;
2230
+ sourceDescription?: string | undefined;
2231
2231
  /**
2232
2232
  * <p>The setup option for the data source. This option reflects if the evidence collection
2233
2233
  * method is automated or manual. If you don’t provide a value for
@@ -2235,7 +2235,7 @@ export interface CreateControlMappingSource {
2235
2235
  * the correct value based on the <code>sourceType</code> that you specify.</p>
2236
2236
  * @public
2237
2237
  */
2238
- sourceSetUpOption?: SourceSetUpOption;
2238
+ sourceSetUpOption?: SourceSetUpOption | undefined;
2239
2239
  /**
2240
2240
  * <p> Specifies which type of data source is used to collect evidence. </p>
2241
2241
  * <ul>
@@ -2252,7 +2252,7 @@ export interface CreateControlMappingSource {
2252
2252
  * </ul>
2253
2253
  * @public
2254
2254
  */
2255
- sourceType?: SourceType;
2255
+ sourceType?: SourceType | undefined;
2256
2256
  /**
2257
2257
  * <p>A keyword that relates to the control data source.</p>
2258
2258
  * <p>For manual evidence, this keyword indicates if the manual evidence is a file or
@@ -2287,17 +2287,17 @@ export interface CreateControlMappingSource {
2287
2287
  * </ul>
2288
2288
  * @public
2289
2289
  */
2290
- sourceKeyword?: SourceKeyword;
2290
+ sourceKeyword?: SourceKeyword | undefined;
2291
2291
  /**
2292
2292
  * <p>Specifies how often evidence is collected from the control mapping source. </p>
2293
2293
  * @public
2294
2294
  */
2295
- sourceFrequency?: SourceFrequency;
2295
+ sourceFrequency?: SourceFrequency | undefined;
2296
2296
  /**
2297
2297
  * <p> The instructions for troubleshooting the control. </p>
2298
2298
  * @public
2299
2299
  */
2300
- troubleshootingText?: string;
2300
+ troubleshootingText?: string | undefined;
2301
2301
  }
2302
2302
  /**
2303
2303
  * @public
@@ -2312,22 +2312,22 @@ export interface CreateControlRequest {
2312
2312
  * <p> The description of the control. </p>
2313
2313
  * @public
2314
2314
  */
2315
- description?: string;
2315
+ description?: string | undefined;
2316
2316
  /**
2317
2317
  * <p> The steps to follow to determine if the control is satisfied. </p>
2318
2318
  * @public
2319
2319
  */
2320
- testingInformation?: string;
2320
+ testingInformation?: string | undefined;
2321
2321
  /**
2322
2322
  * <p> The title of the action plan for remediating the control. </p>
2323
2323
  * @public
2324
2324
  */
2325
- actionPlanTitle?: string;
2325
+ actionPlanTitle?: string | undefined;
2326
2326
  /**
2327
2327
  * <p> The recommended actions to carry out if the control isn't fulfilled. </p>
2328
2328
  * @public
2329
2329
  */
2330
- actionPlanInstructions?: string;
2330
+ actionPlanInstructions?: string | undefined;
2331
2331
  /**
2332
2332
  * <p> The data mapping sources for the control. </p>
2333
2333
  * @public
@@ -2337,7 +2337,7 @@ export interface CreateControlRequest {
2337
2337
  * <p> The tags that are associated with the control. </p>
2338
2338
  * @public
2339
2339
  */
2340
- tags?: Record<string, string>;
2340
+ tags?: Record<string, string> | undefined;
2341
2341
  }
2342
2342
  /**
2343
2343
  * @public
@@ -2347,7 +2347,7 @@ export interface CreateControlResponse {
2347
2347
  * <p> The new control that the <code>CreateControl</code> API returned. </p>
2348
2348
  * @public
2349
2349
  */
2350
- control?: Control;
2350
+ control?: Control | undefined;
2351
2351
  }
2352
2352
  /**
2353
2353
  * @public
@@ -2459,7 +2459,7 @@ export interface DeregisterAccountResponse {
2459
2459
  * <p> The registration status of the account. </p>
2460
2460
  * @public
2461
2461
  */
2462
- status?: AccountStatus;
2462
+ status?: AccountStatus | undefined;
2463
2463
  }
2464
2464
  /**
2465
2465
  * @public
@@ -2469,7 +2469,7 @@ export interface DeregisterOrganizationAdminAccountRequest {
2469
2469
  * <p> The identifier for the administrator account. </p>
2470
2470
  * @public
2471
2471
  */
2472
- adminAccountId?: string;
2472
+ adminAccountId?: string | undefined;
2473
2473
  }
2474
2474
  /**
2475
2475
  * @public
@@ -2509,7 +2509,7 @@ export interface GetAccountStatusResponse {
2509
2509
  * <p> The status of the Amazon Web Services account. </p>
2510
2510
  * @public
2511
2511
  */
2512
- status?: AccountStatus;
2512
+ status?: AccountStatus | undefined;
2513
2513
  }
2514
2514
  /**
2515
2515
  * @public
@@ -2530,13 +2530,13 @@ export interface GetAssessmentResponse {
2530
2530
  * An Audit Manager assessment is an implementation of an Audit Manager framework. </p>
2531
2531
  * @public
2532
2532
  */
2533
- assessment?: Assessment;
2533
+ assessment?: Assessment | undefined;
2534
2534
  /**
2535
2535
  * <p> The wrapper that contains the Audit Manager role information of the current user.
2536
2536
  * This includes the role type and IAM Amazon Resource Name (ARN). </p>
2537
2537
  * @public
2538
2538
  */
2539
- userRole?: Role;
2539
+ userRole?: Role | undefined;
2540
2540
  }
2541
2541
  /**
2542
2542
  * @public
@@ -2556,7 +2556,7 @@ export interface GetAssessmentFrameworkResponse {
2556
2556
  * <p> The framework that the <code>GetAssessmentFramework</code> API returned. </p>
2557
2557
  * @public
2558
2558
  */
2559
- framework?: Framework;
2559
+ framework?: Framework | undefined;
2560
2560
  }
2561
2561
  /**
2562
2562
  * @public
@@ -2583,12 +2583,12 @@ export interface URL {
2583
2583
  * <p> The name or word that's used as a hyperlink to the URL. </p>
2584
2584
  * @public
2585
2585
  */
2586
- hyperlinkName?: string;
2586
+ hyperlinkName?: string | undefined;
2587
2587
  /**
2588
2588
  * <p> The unique identifier for the internet resource. </p>
2589
2589
  * @public
2590
2590
  */
2591
- link?: string;
2591
+ link?: string | undefined;
2592
2592
  }
2593
2593
  /**
2594
2594
  * @public
@@ -2599,7 +2599,7 @@ export interface GetAssessmentReportUrlResponse {
2599
2599
  * resource on the internet. </p>
2600
2600
  * @public
2601
2601
  */
2602
- preSignedUrl?: URL;
2602
+ preSignedUrl?: URL | undefined;
2603
2603
  }
2604
2604
  /**
2605
2605
  * @public
@@ -2614,22 +2614,22 @@ export interface GetChangeLogsRequest {
2614
2614
  * <p> The unique identifier for the control set. </p>
2615
2615
  * @public
2616
2616
  */
2617
- controlSetId?: string;
2617
+ controlSetId?: string | undefined;
2618
2618
  /**
2619
2619
  * <p> The unique identifier for the control. </p>
2620
2620
  * @public
2621
2621
  */
2622
- controlId?: string;
2622
+ controlId?: string | undefined;
2623
2623
  /**
2624
2624
  * <p> The pagination token that's used to fetch the next set of results. </p>
2625
2625
  * @public
2626
2626
  */
2627
- nextToken?: string;
2627
+ nextToken?: string | undefined;
2628
2628
  /**
2629
2629
  * <p>Represents the maximum number of results on a page or for an API request call. </p>
2630
2630
  * @public
2631
2631
  */
2632
- maxResults?: number;
2632
+ maxResults?: number | undefined;
2633
2633
  }
2634
2634
  /**
2635
2635
  * @public
@@ -2656,28 +2656,28 @@ export interface ChangeLog {
2656
2656
  * <p> The object that was changed, such as an assessment, control, or control set. </p>
2657
2657
  * @public
2658
2658
  */
2659
- objectType?: ObjectTypeEnum;
2659
+ objectType?: ObjectTypeEnum | undefined;
2660
2660
  /**
2661
2661
  * <p> The name of the object that changed. This could be the name of an assessment, control,
2662
2662
  * or control set.</p>
2663
2663
  * @public
2664
2664
  */
2665
- objectName?: string;
2665
+ objectName?: string | undefined;
2666
2666
  /**
2667
2667
  * <p> The action that was performed. </p>
2668
2668
  * @public
2669
2669
  */
2670
- action?: ActionEnum;
2670
+ action?: ActionEnum | undefined;
2671
2671
  /**
2672
2672
  * <p> The time when the action was performed and the changelog record was created. </p>
2673
2673
  * @public
2674
2674
  */
2675
- createdAt?: Date;
2675
+ createdAt?: Date | undefined;
2676
2676
  /**
2677
2677
  * <p> The user or role that performed the action. </p>
2678
2678
  * @public
2679
2679
  */
2680
- createdBy?: string;
2680
+ createdBy?: string | undefined;
2681
2681
  }
2682
2682
  /**
2683
2683
  * @public
@@ -2687,12 +2687,12 @@ export interface GetChangeLogsResponse {
2687
2687
  * <p>The list of user activity for the control. </p>
2688
2688
  * @public
2689
2689
  */
2690
- changeLogs?: ChangeLog[];
2690
+ changeLogs?: ChangeLog[] | undefined;
2691
2691
  /**
2692
2692
  * <p>The pagination token that's used to fetch the next set of results. </p>
2693
2693
  * @public
2694
2694
  */
2695
- nextToken?: string;
2695
+ nextToken?: string | undefined;
2696
2696
  }
2697
2697
  /**
2698
2698
  * @public
@@ -2712,7 +2712,7 @@ export interface GetControlResponse {
2712
2712
  * <p> The details of the control that the <code>GetControl</code> API returned. </p>
2713
2713
  * @public
2714
2714
  */
2715
- control?: Control;
2715
+ control?: Control | undefined;
2716
2716
  }
2717
2717
  /**
2718
2718
  * @public
@@ -2722,12 +2722,12 @@ export interface GetDelegationsRequest {
2722
2722
  * <p> The pagination token that's used to fetch the next set of results. </p>
2723
2723
  * @public
2724
2724
  */
2725
- nextToken?: string;
2725
+ nextToken?: string | undefined;
2726
2726
  /**
2727
2727
  * <p> Represents the maximum number of results on a page or for an API request call. </p>
2728
2728
  * @public
2729
2729
  */
2730
- maxResults?: number;
2730
+ maxResults?: number | undefined;
2731
2731
  }
2732
2732
  /**
2733
2733
  * <p> The metadata that's associated with the delegation. </p>
@@ -2738,37 +2738,37 @@ export interface DelegationMetadata {
2738
2738
  * <p> The unique identifier for the delegation. </p>
2739
2739
  * @public
2740
2740
  */
2741
- id?: string;
2741
+ id?: string | undefined;
2742
2742
  /**
2743
2743
  * <p> The name of the associated assessment. </p>
2744
2744
  * @public
2745
2745
  */
2746
- assessmentName?: string;
2746
+ assessmentName?: string | undefined;
2747
2747
  /**
2748
2748
  * <p> The unique identifier for the assessment. </p>
2749
2749
  * @public
2750
2750
  */
2751
- assessmentId?: string;
2751
+ assessmentId?: string | undefined;
2752
2752
  /**
2753
2753
  * <p> The current status of the delegation. </p>
2754
2754
  * @public
2755
2755
  */
2756
- status?: DelegationStatus;
2756
+ status?: DelegationStatus | undefined;
2757
2757
  /**
2758
2758
  * <p> The Amazon Resource Name (ARN) of the IAM role. </p>
2759
2759
  * @public
2760
2760
  */
2761
- roleArn?: string;
2761
+ roleArn?: string | undefined;
2762
2762
  /**
2763
2763
  * <p> Specifies when the delegation was created. </p>
2764
2764
  * @public
2765
2765
  */
2766
- creationTime?: Date;
2766
+ creationTime?: Date | undefined;
2767
2767
  /**
2768
2768
  * <p> Specifies the name of the control set that was delegated for review. </p>
2769
2769
  * @public
2770
2770
  */
2771
- controlSetName?: string;
2771
+ controlSetName?: string | undefined;
2772
2772
  }
2773
2773
  /**
2774
2774
  * @public
@@ -2778,12 +2778,12 @@ export interface GetDelegationsResponse {
2778
2778
  * <p> The list of delegations that the <code>GetDelegations</code> API returned. </p>
2779
2779
  * @public
2780
2780
  */
2781
- delegations?: DelegationMetadata[];
2781
+ delegations?: DelegationMetadata[] | undefined;
2782
2782
  /**
2783
2783
  * <p> The pagination token that's used to fetch the next set of results. </p>
2784
2784
  * @public
2785
2785
  */
2786
- nextToken?: string;
2786
+ nextToken?: string | undefined;
2787
2787
  }
2788
2788
  /**
2789
2789
  * @public
@@ -2819,12 +2819,12 @@ export interface Resource {
2819
2819
  * <p> The Amazon Resource Name (ARN) for the resource. </p>
2820
2820
  * @public
2821
2821
  */
2822
- arn?: string;
2822
+ arn?: string | undefined;
2823
2823
  /**
2824
2824
  * <p> The value of the resource. </p>
2825
2825
  * @public
2826
2826
  */
2827
- value?: string;
2827
+ value?: string | undefined;
2828
2828
  /**
2829
2829
  * <p> The evaluation status for a resource that was assessed when collecting compliance check
2830
2830
  * evidence. </p>
@@ -2849,7 +2849,7 @@ export interface Resource {
2849
2849
  * </ul>
2850
2850
  * @public
2851
2851
  */
2852
- complianceCheck?: string;
2852
+ complianceCheck?: string | undefined;
2853
2853
  }
2854
2854
  /**
2855
2855
  * <p> A record that contains the information needed to demonstrate compliance with the
@@ -2862,50 +2862,50 @@ export interface Evidence {
2862
2862
  * <p> The data source where the evidence was collected from. </p>
2863
2863
  * @public
2864
2864
  */
2865
- dataSource?: string;
2865
+ dataSource?: string | undefined;
2866
2866
  /**
2867
2867
  * <p> The identifier for the Amazon Web Services account. </p>
2868
2868
  * @public
2869
2869
  */
2870
- evidenceAwsAccountId?: string;
2870
+ evidenceAwsAccountId?: string | undefined;
2871
2871
  /**
2872
2872
  * <p> The timestamp that represents when the evidence was collected. </p>
2873
2873
  * @public
2874
2874
  */
2875
- time?: Date;
2875
+ time?: Date | undefined;
2876
2876
  /**
2877
2877
  * <p> The Amazon Web Service that the evidence is collected from. </p>
2878
2878
  * @public
2879
2879
  */
2880
- eventSource?: string;
2880
+ eventSource?: string | undefined;
2881
2881
  /**
2882
2882
  * <p> The name of the evidence event. </p>
2883
2883
  * @public
2884
2884
  */
2885
- eventName?: string;
2885
+ eventName?: string | undefined;
2886
2886
  /**
2887
2887
  * <p> The type of automated evidence. </p>
2888
2888
  * @public
2889
2889
  */
2890
- evidenceByType?: string;
2890
+ evidenceByType?: string | undefined;
2891
2891
  /**
2892
2892
  * <p> The list of resources that are assessed to generate the evidence. </p>
2893
2893
  * @public
2894
2894
  */
2895
- resourcesIncluded?: Resource[];
2895
+ resourcesIncluded?: Resource[] | undefined;
2896
2896
  /**
2897
2897
  * <p> The names and values that are used by the evidence event. This includes an attribute
2898
2898
  * name (such as <code>allowUsersToChangePassword</code>) and value (such as <code>true</code>
2899
2899
  * or <code>false</code>). </p>
2900
2900
  * @public
2901
2901
  */
2902
- attributes?: Record<string, string>;
2902
+ attributes?: Record<string, string> | undefined;
2903
2903
  /**
2904
2904
  * <p> The unique identifier for the user or role that's associated with
2905
2905
  * the evidence. </p>
2906
2906
  * @public
2907
2907
  */
2908
- iamId?: string;
2908
+ iamId?: string | undefined;
2909
2909
  /**
2910
2910
  * <p>The evaluation status for automated evidence that falls under the compliance check
2911
2911
  * category.</p>
@@ -2931,33 +2931,33 @@ export interface Evidence {
2931
2931
  * </ul>
2932
2932
  * @public
2933
2933
  */
2934
- complianceCheck?: string;
2934
+ complianceCheck?: string | undefined;
2935
2935
  /**
2936
2936
  * <p> The Amazon Web Services account that the evidence is collected from, and its
2937
2937
  * organization path. </p>
2938
2938
  * @public
2939
2939
  */
2940
- awsOrganization?: string;
2940
+ awsOrganization?: string | undefined;
2941
2941
  /**
2942
2942
  * <p> The identifier for the Amazon Web Services account. </p>
2943
2943
  * @public
2944
2944
  */
2945
- awsAccountId?: string;
2945
+ awsAccountId?: string | undefined;
2946
2946
  /**
2947
2947
  * <p> The identifier for the folder that the evidence is stored in. </p>
2948
2948
  * @public
2949
2949
  */
2950
- evidenceFolderId?: string;
2950
+ evidenceFolderId?: string | undefined;
2951
2951
  /**
2952
2952
  * <p> The identifier for the evidence. </p>
2953
2953
  * @public
2954
2954
  */
2955
- id?: string;
2955
+ id?: string | undefined;
2956
2956
  /**
2957
2957
  * <p> Specifies whether the evidence is included in the assessment report. </p>
2958
2958
  * @public
2959
2959
  */
2960
- assessmentReportSelection?: string;
2960
+ assessmentReportSelection?: string | undefined;
2961
2961
  }
2962
2962
  /**
2963
2963
  * @public
@@ -2967,7 +2967,7 @@ export interface GetEvidenceResponse {
2967
2967
  * <p> The evidence that the <code>GetEvidence</code> API returned. </p>
2968
2968
  * @public
2969
2969
  */
2970
- evidence?: Evidence;
2970
+ evidence?: Evidence | undefined;
2971
2971
  }
2972
2972
  /**
2973
2973
  * @public
@@ -2992,12 +2992,12 @@ export interface GetEvidenceByEvidenceFolderRequest {
2992
2992
  * <p> The pagination token that's used to fetch the next set of results. </p>
2993
2993
  * @public
2994
2994
  */
2995
- nextToken?: string;
2995
+ nextToken?: string | undefined;
2996
2996
  /**
2997
2997
  * <p> Represents the maximum number of results on a page or for an API request call. </p>
2998
2998
  * @public
2999
2999
  */
3000
- maxResults?: number;
3000
+ maxResults?: number | undefined;
3001
3001
  }
3002
3002
  /**
3003
3003
  * @public
@@ -3008,12 +3008,12 @@ export interface GetEvidenceByEvidenceFolderResponse {
3008
3008
  * </p>
3009
3009
  * @public
3010
3010
  */
3011
- evidence?: Evidence[];
3011
+ evidence?: Evidence[] | undefined;
3012
3012
  /**
3013
3013
  * <p> The pagination token that's used to fetch the next set of results. </p>
3014
3014
  * @public
3015
3015
  */
3016
- nextToken?: string;
3016
+ nextToken?: string | undefined;
3017
3017
  }
3018
3018
  /**
3019
3019
  * @public
@@ -3035,12 +3035,12 @@ export interface GetEvidenceFileUploadUrlResponse {
3035
3035
  * for.</p>
3036
3036
  * @public
3037
3037
  */
3038
- evidenceFileName?: string;
3038
+ evidenceFileName?: string | undefined;
3039
3039
  /**
3040
3040
  * <p>The presigned URL that was generated.</p>
3041
3041
  * @public
3042
3042
  */
3043
- uploadUrl?: string;
3043
+ uploadUrl?: string | undefined;
3044
3044
  }
3045
3045
  /**
3046
3046
  * @public
@@ -3070,7 +3070,7 @@ export interface GetEvidenceFolderResponse {
3070
3070
  * <p> The folder that the evidence is stored in. </p>
3071
3071
  * @public
3072
3072
  */
3073
- evidenceFolder?: AssessmentEvidenceFolder;
3073
+ evidenceFolder?: AssessmentEvidenceFolder | undefined;
3074
3074
  }
3075
3075
  /**
3076
3076
  * @public
@@ -3085,12 +3085,12 @@ export interface GetEvidenceFoldersByAssessmentRequest {
3085
3085
  * <p> The pagination token that's used to fetch the next set of results. </p>
3086
3086
  * @public
3087
3087
  */
3088
- nextToken?: string;
3088
+ nextToken?: string | undefined;
3089
3089
  /**
3090
3090
  * <p> Represents the maximum number of results on a page or for an API request call. </p>
3091
3091
  * @public
3092
3092
  */
3093
- maxResults?: number;
3093
+ maxResults?: number | undefined;
3094
3094
  }
3095
3095
  /**
3096
3096
  * @public
@@ -3101,12 +3101,12 @@ export interface GetEvidenceFoldersByAssessmentResponse {
3101
3101
  * returned. </p>
3102
3102
  * @public
3103
3103
  */
3104
- evidenceFolders?: AssessmentEvidenceFolder[];
3104
+ evidenceFolders?: AssessmentEvidenceFolder[] | undefined;
3105
3105
  /**
3106
3106
  * <p> The pagination token that's used to fetch the next set of results. </p>
3107
3107
  * @public
3108
3108
  */
3109
- nextToken?: string;
3109
+ nextToken?: string | undefined;
3110
3110
  }
3111
3111
  /**
3112
3112
  * @public
@@ -3131,12 +3131,12 @@ export interface GetEvidenceFoldersByAssessmentControlRequest {
3131
3131
  * <p> The pagination token that's used to fetch the next set of results. </p>
3132
3132
  * @public
3133
3133
  */
3134
- nextToken?: string;
3134
+ nextToken?: string | undefined;
3135
3135
  /**
3136
3136
  * <p> Represents the maximum number of results on a page or for an API request call. </p>
3137
3137
  * @public
3138
3138
  */
3139
- maxResults?: number;
3139
+ maxResults?: number | undefined;
3140
3140
  }
3141
3141
  /**
3142
3142
  * @public
@@ -3147,12 +3147,12 @@ export interface GetEvidenceFoldersByAssessmentControlResponse {
3147
3147
  * <code>GetEvidenceFoldersByAssessmentControl</code> API returned. </p>
3148
3148
  * @public
3149
3149
  */
3150
- evidenceFolders?: AssessmentEvidenceFolder[];
3150
+ evidenceFolders?: AssessmentEvidenceFolder[] | undefined;
3151
3151
  /**
3152
3152
  * <p> The pagination token that's used to fetch the next set of results. </p>
3153
3153
  * @public
3154
3154
  */
3155
- nextToken?: string;
3155
+ nextToken?: string | undefined;
3156
3156
  }
3157
3157
  /**
3158
3158
  * @public
@@ -3195,7 +3195,7 @@ export interface Insights {
3195
3195
  * <p>The number of active assessments in Audit Manager. </p>
3196
3196
  * @public
3197
3197
  */
3198
- activeAssessmentsCount?: number;
3198
+ activeAssessmentsCount?: number | undefined;
3199
3199
  /**
3200
3200
  * <p>The number of compliance check evidence that Audit Manager classified as
3201
3201
  * non-compliant on the <code>lastUpdated</code> date. This includes evidence that was
@@ -3203,7 +3203,7 @@ export interface Insights {
3203
3203
  * from Config with a <i>Non-compliant</i> ruling. </p>
3204
3204
  * @public
3205
3205
  */
3206
- noncompliantEvidenceCount?: number;
3206
+ noncompliantEvidenceCount?: number | undefined;
3207
3207
  /**
3208
3208
  * <p>The number of compliance check evidence that Audit Manager classified as compliant
3209
3209
  * on the <code>lastUpdated</code> date. This includes evidence that was collected from
@@ -3211,7 +3211,7 @@ export interface Insights {
3211
3211
  * Config with a <i>Compliant</i> ruling. </p>
3212
3212
  * @public
3213
3213
  */
3214
- compliantEvidenceCount?: number;
3214
+ compliantEvidenceCount?: number | undefined;
3215
3215
  /**
3216
3216
  * <p>The number of evidence without a compliance check ruling. Evidence is inconclusive when
3217
3217
  * the associated control uses Security Hub or Config as a data
@@ -3224,23 +3224,23 @@ export interface Insights {
3224
3224
  * </note>
3225
3225
  * @public
3226
3226
  */
3227
- inconclusiveEvidenceCount?: number;
3227
+ inconclusiveEvidenceCount?: number | undefined;
3228
3228
  /**
3229
3229
  * <p>The number of assessment controls that collected non-compliant evidence on the
3230
3230
  * <code>lastUpdated</code> date. </p>
3231
3231
  * @public
3232
3232
  */
3233
- assessmentControlsCountByNoncompliantEvidence?: number;
3233
+ assessmentControlsCountByNoncompliantEvidence?: number | undefined;
3234
3234
  /**
3235
3235
  * <p>The total number of controls across all active assessments. </p>
3236
3236
  * @public
3237
3237
  */
3238
- totalAssessmentControlsCount?: number;
3238
+ totalAssessmentControlsCount?: number | undefined;
3239
3239
  /**
3240
3240
  * <p>The time when the cross-assessment insights were last updated. </p>
3241
3241
  * @public
3242
3242
  */
3243
- lastUpdated?: Date;
3243
+ lastUpdated?: Date | undefined;
3244
3244
  }
3245
3245
  /**
3246
3246
  * @public
@@ -3250,7 +3250,7 @@ export interface GetInsightsResponse {
3250
3250
  * <p>The analytics data that the <code>GetInsights</code> API returned. </p>
3251
3251
  * @public
3252
3252
  */
3253
- insights?: Insights;
3253
+ insights?: Insights | undefined;
3254
3254
  }
3255
3255
  /**
3256
3256
  * @public
@@ -3302,7 +3302,7 @@ export interface InsightsByAssessment {
3302
3302
  * <i>Non-compliant</i> ruling. </p>
3303
3303
  * @public
3304
3304
  */
3305
- noncompliantEvidenceCount?: number;
3305
+ noncompliantEvidenceCount?: number | undefined;
3306
3306
  /**
3307
3307
  * <p>The number of compliance check evidence that Audit Manager classified as compliant.
3308
3308
  * This includes evidence that was collected from Security Hub with a
@@ -3310,7 +3310,7 @@ export interface InsightsByAssessment {
3310
3310
  * <i>Compliant</i> ruling. </p>
3311
3311
  * @public
3312
3312
  */
3313
- compliantEvidenceCount?: number;
3313
+ compliantEvidenceCount?: number | undefined;
3314
3314
  /**
3315
3315
  * <p>The amount of evidence without a compliance check ruling. Evidence is inconclusive if
3316
3316
  * the associated control uses Security Hub or Config as a data
@@ -3324,23 +3324,23 @@ export interface InsightsByAssessment {
3324
3324
  * </note>
3325
3325
  * @public
3326
3326
  */
3327
- inconclusiveEvidenceCount?: number;
3327
+ inconclusiveEvidenceCount?: number | undefined;
3328
3328
  /**
3329
3329
  * <p>The number of assessment controls that collected non-compliant evidence on the
3330
3330
  * <code>lastUpdated</code> date. </p>
3331
3331
  * @public
3332
3332
  */
3333
- assessmentControlsCountByNoncompliantEvidence?: number;
3333
+ assessmentControlsCountByNoncompliantEvidence?: number | undefined;
3334
3334
  /**
3335
3335
  * <p>The total number of controls in the assessment. </p>
3336
3336
  * @public
3337
3337
  */
3338
- totalAssessmentControlsCount?: number;
3338
+ totalAssessmentControlsCount?: number | undefined;
3339
3339
  /**
3340
3340
  * <p>The time when the assessment insights were last updated.</p>
3341
3341
  * @public
3342
3342
  */
3343
- lastUpdated?: Date;
3343
+ lastUpdated?: Date | undefined;
3344
3344
  }
3345
3345
  /**
3346
3346
  * @public
@@ -3351,7 +3351,7 @@ export interface GetInsightsByAssessmentResponse {
3351
3351
  * returned. </p>
3352
3352
  * @public
3353
3353
  */
3354
- insights?: InsightsByAssessment;
3354
+ insights?: InsightsByAssessment | undefined;
3355
3355
  }
3356
3356
  /**
3357
3357
  * @public
@@ -3366,12 +3366,12 @@ export interface GetOrganizationAdminAccountResponse {
3366
3366
  * <p> The identifier for the administrator account. </p>
3367
3367
  * @public
3368
3368
  */
3369
- adminAccountId?: string;
3369
+ adminAccountId?: string | undefined;
3370
3370
  /**
3371
3371
  * <p> The identifier for the organization. </p>
3372
3372
  * @public
3373
3373
  */
3374
- organizationId?: string;
3374
+ organizationId?: string | undefined;
3375
3375
  }
3376
3376
  /**
3377
3377
  * @public
@@ -3387,23 +3387,23 @@ export interface ServiceMetadata {
3387
3387
  * <p> The name of the Amazon Web Service. </p>
3388
3388
  * @public
3389
3389
  */
3390
- name?: string;
3390
+ name?: string | undefined;
3391
3391
  /**
3392
3392
  * <p> The display name of the Amazon Web Service. </p>
3393
3393
  * @public
3394
3394
  */
3395
- displayName?: string;
3395
+ displayName?: string | undefined;
3396
3396
  /**
3397
3397
  * <p> The description of the Amazon Web Service. </p>
3398
3398
  * @public
3399
3399
  */
3400
- description?: string;
3400
+ description?: string | undefined;
3401
3401
  /**
3402
3402
  * <p> The category that the Amazon Web Service belongs to, such as compute, storage,
3403
3403
  * or database. </p>
3404
3404
  * @public
3405
3405
  */
3406
- category?: string;
3406
+ category?: string | undefined;
3407
3407
  }
3408
3408
  /**
3409
3409
  * @public
@@ -3413,7 +3413,7 @@ export interface GetServicesInScopeResponse {
3413
3413
  * <p> The metadata that's associated with the Amazon Web Service. </p>
3414
3414
  * @public
3415
3415
  */
3416
- serviceMetadata?: ServiceMetadata[];
3416
+ serviceMetadata?: ServiceMetadata[] | undefined;
3417
3417
  }
3418
3418
  /**
3419
3419
  * @public
@@ -3463,12 +3463,12 @@ export interface DefaultExportDestination {
3463
3463
  * <p>The destination type, such as Amazon S3.</p>
3464
3464
  * @public
3465
3465
  */
3466
- destinationType?: ExportDestinationType;
3466
+ destinationType?: ExportDestinationType | undefined;
3467
3467
  /**
3468
3468
  * <p>The destination bucket where Audit Manager stores exported files.</p>
3469
3469
  * @public
3470
3470
  */
3471
- destination?: string;
3471
+ destination?: string | undefined;
3472
3472
  }
3473
3473
  /**
3474
3474
  * @public
@@ -3518,7 +3518,7 @@ export interface DeregistrationPolicy {
3518
3518
  * </ul>
3519
3519
  * @public
3520
3520
  */
3521
- deleteResources?: DeleteResources;
3521
+ deleteResources?: DeleteResources | undefined;
3522
3522
  }
3523
3523
  /**
3524
3524
  * @public
@@ -3560,7 +3560,7 @@ export interface EvidenceFinderEnablement {
3560
3560
  * finder runs queries against.</p>
3561
3561
  * @public
3562
3562
  */
3563
- eventDataStoreArn?: string;
3563
+ eventDataStoreArn?: string | undefined;
3564
3564
  /**
3565
3565
  * <p>The current status of the evidence finder feature and the related event data store. </p>
3566
3566
  * <ul>
@@ -3592,7 +3592,7 @@ export interface EvidenceFinderEnablement {
3592
3592
  * </ul>
3593
3593
  * @public
3594
3594
  */
3595
- enablementStatus?: EvidenceFinderEnablementStatus;
3595
+ enablementStatus?: EvidenceFinderEnablementStatus | undefined;
3596
3596
  /**
3597
3597
  * <p>The current status of the evidence data backfill process. </p>
3598
3598
  * <p>The backfill starts after you enable evidence finder. During this task, Audit Manager populates an event data store with your past two years’ worth of evidence data so that
@@ -3615,12 +3615,12 @@ export interface EvidenceFinderEnablement {
3615
3615
  * </ul>
3616
3616
  * @public
3617
3617
  */
3618
- backfillStatus?: EvidenceFinderBackfillStatus;
3618
+ backfillStatus?: EvidenceFinderBackfillStatus | undefined;
3619
3619
  /**
3620
3620
  * <p>Represents any errors that occurred when enabling or disabling evidence finder. </p>
3621
3621
  * @public
3622
3622
  */
3623
- error?: string;
3623
+ error?: string | undefined;
3624
3624
  }
3625
3625
  /**
3626
3626
  * <p> The settings object that holds all supported Audit Manager settings. </p>
@@ -3631,43 +3631,43 @@ export interface Settings {
3631
3631
  * <p> Specifies whether Organizations is enabled. </p>
3632
3632
  * @public
3633
3633
  */
3634
- isAwsOrgEnabled?: boolean;
3634
+ isAwsOrgEnabled?: boolean | undefined;
3635
3635
  /**
3636
3636
  * <p> The designated Amazon Simple Notification Service (Amazon SNS) topic. </p>
3637
3637
  * @public
3638
3638
  */
3639
- snsTopic?: string;
3639
+ snsTopic?: string | undefined;
3640
3640
  /**
3641
3641
  * <p>The default S3 destination bucket for storing assessment reports.</p>
3642
3642
  * @public
3643
3643
  */
3644
- defaultAssessmentReportsDestination?: AssessmentReportsDestination;
3644
+ defaultAssessmentReportsDestination?: AssessmentReportsDestination | undefined;
3645
3645
  /**
3646
3646
  * <p> The designated default audit owners. </p>
3647
3647
  * @public
3648
3648
  */
3649
- defaultProcessOwners?: Role[];
3649
+ defaultProcessOwners?: Role[] | undefined;
3650
3650
  /**
3651
3651
  * <p> The KMS key details. </p>
3652
3652
  * @public
3653
3653
  */
3654
- kmsKey?: string;
3654
+ kmsKey?: string | undefined;
3655
3655
  /**
3656
3656
  * <p>The current evidence finder status and event data store details.</p>
3657
3657
  * @public
3658
3658
  */
3659
- evidenceFinderEnablement?: EvidenceFinderEnablement;
3659
+ evidenceFinderEnablement?: EvidenceFinderEnablement | undefined;
3660
3660
  /**
3661
3661
  * <p>The deregistration policy for your Audit Manager data. You can
3662
3662
  * use this attribute to determine how your data is handled when you deregister Audit Manager.</p>
3663
3663
  * @public
3664
3664
  */
3665
- deregistrationPolicy?: DeregistrationPolicy;
3665
+ deregistrationPolicy?: DeregistrationPolicy | undefined;
3666
3666
  /**
3667
3667
  * <p>The default S3 destination bucket for storing evidence finder exports.</p>
3668
3668
  * @public
3669
3669
  */
3670
- defaultExportDestination?: DefaultExportDestination;
3670
+ defaultExportDestination?: DefaultExportDestination | undefined;
3671
3671
  }
3672
3672
  /**
3673
3673
  * @public
@@ -3677,7 +3677,7 @@ export interface GetSettingsResponse {
3677
3677
  * <p> The settings object that holds all supported Audit Manager settings. </p>
3678
3678
  * @public
3679
3679
  */
3680
- settings?: Settings;
3680
+ settings?: Settings | undefined;
3681
3681
  }
3682
3682
  /**
3683
3683
  * @public
@@ -3703,12 +3703,12 @@ export interface ListAssessmentControlInsightsByControlDomainRequest {
3703
3703
  * <p>The pagination token that's used to fetch the next set of results. </p>
3704
3704
  * @public
3705
3705
  */
3706
- nextToken?: string;
3706
+ nextToken?: string | undefined;
3707
3707
  /**
3708
3708
  * <p>Represents the maximum number of results on a page or for an API request call. </p>
3709
3709
  * @public
3710
3710
  */
3711
- maxResults?: number;
3711
+ maxResults?: number | undefined;
3712
3712
  }
3713
3713
  /**
3714
3714
  * <p>A breakdown of the latest compliance check status for the evidence in your Audit Manager assessments. </p>
@@ -3722,7 +3722,7 @@ export interface EvidenceInsights {
3722
3722
  * <i>Non-compliant</i> ruling. </p>
3723
3723
  * @public
3724
3724
  */
3725
- noncompliantEvidenceCount?: number;
3725
+ noncompliantEvidenceCount?: number | undefined;
3726
3726
  /**
3727
3727
  * <p>The number of compliance check evidence that Audit Manager classified as compliant.
3728
3728
  * This includes evidence that was collected from Security Hub with a
@@ -3730,7 +3730,7 @@ export interface EvidenceInsights {
3730
3730
  * <i>Compliant</i> ruling. </p>
3731
3731
  * @public
3732
3732
  */
3733
- compliantEvidenceCount?: number;
3733
+ compliantEvidenceCount?: number | undefined;
3734
3734
  /**
3735
3735
  * <p>The number of evidence that a compliance check ruling isn't available for. Evidence is
3736
3736
  * inconclusive when the associated control uses Security Hub or Config as a data source but you didn't enable those services. This is also the case when a
@@ -3743,7 +3743,7 @@ export interface EvidenceInsights {
3743
3743
  * </note>
3744
3744
  * @public
3745
3745
  */
3746
- inconclusiveEvidenceCount?: number;
3746
+ inconclusiveEvidenceCount?: number | undefined;
3747
3747
  }
3748
3748
  /**
3749
3749
  * <p>A summary of the latest analytics data for a specific control in a specific active
@@ -3757,28 +3757,28 @@ export interface ControlInsightsMetadataByAssessmentItem {
3757
3757
  * <p>The name of the assessment control. </p>
3758
3758
  * @public
3759
3759
  */
3760
- name?: string;
3760
+ name?: string | undefined;
3761
3761
  /**
3762
3762
  * <p>The unique identifier for the assessment control. </p>
3763
3763
  * @public
3764
3764
  */
3765
- id?: string;
3765
+ id?: string | undefined;
3766
3766
  /**
3767
3767
  * <p>A breakdown of the compliance check status for the evidence that’s associated with the
3768
3768
  * assessment control. </p>
3769
3769
  * @public
3770
3770
  */
3771
- evidenceInsights?: EvidenceInsights;
3771
+ evidenceInsights?: EvidenceInsights | undefined;
3772
3772
  /**
3773
3773
  * <p>The name of the control set that the assessment control belongs to. </p>
3774
3774
  * @public
3775
3775
  */
3776
- controlSetName?: string;
3776
+ controlSetName?: string | undefined;
3777
3777
  /**
3778
3778
  * <p>The time when the assessment control insights were last updated. </p>
3779
3779
  * @public
3780
3780
  */
3781
- lastUpdated?: Date;
3781
+ lastUpdated?: Date | undefined;
3782
3782
  }
3783
3783
  /**
3784
3784
  * @public
@@ -3789,12 +3789,12 @@ export interface ListAssessmentControlInsightsByControlDomainResponse {
3789
3789
  * <code>ListAssessmentControlInsightsByControlDomain</code> API returned. </p>
3790
3790
  * @public
3791
3791
  */
3792
- controlInsightsByAssessment?: ControlInsightsMetadataByAssessmentItem[];
3792
+ controlInsightsByAssessment?: ControlInsightsMetadataByAssessmentItem[] | undefined;
3793
3793
  /**
3794
3794
  * <p>The pagination token that's used to fetch the next set of results. </p>
3795
3795
  * @public
3796
3796
  */
3797
- nextToken?: string;
3797
+ nextToken?: string | undefined;
3798
3798
  }
3799
3799
  /**
3800
3800
  * @public
@@ -3809,12 +3809,12 @@ export interface ListAssessmentFrameworksRequest {
3809
3809
  * <p> The pagination token that's used to fetch the next set of results. </p>
3810
3810
  * @public
3811
3811
  */
3812
- nextToken?: string;
3812
+ nextToken?: string | undefined;
3813
3813
  /**
3814
3814
  * <p> Represents the maximum number of results on a page or for an API request call. </p>
3815
3815
  * @public
3816
3816
  */
3817
- maxResults?: number;
3817
+ maxResults?: number | undefined;
3818
3818
  }
3819
3819
  /**
3820
3820
  * @public
@@ -3825,12 +3825,12 @@ export interface ListAssessmentFrameworksResponse {
3825
3825
  * framework.</p>
3826
3826
  * @public
3827
3827
  */
3828
- frameworkMetadataList?: AssessmentFrameworkMetadata[];
3828
+ frameworkMetadataList?: AssessmentFrameworkMetadata[] | undefined;
3829
3829
  /**
3830
3830
  * <p> The pagination token that's used to fetch the next set of results. </p>
3831
3831
  * @public
3832
3832
  */
3833
- nextToken?: string;
3833
+ nextToken?: string | undefined;
3834
3834
  }
3835
3835
  /**
3836
3836
  * @public
@@ -3845,12 +3845,12 @@ export interface ListAssessmentFrameworkShareRequestsRequest {
3845
3845
  * <p> The pagination token that's used to fetch the next set of results. </p>
3846
3846
  * @public
3847
3847
  */
3848
- nextToken?: string;
3848
+ nextToken?: string | undefined;
3849
3849
  /**
3850
3850
  * <p> Represents the maximum number of results on a page or for an API request call. </p>
3851
3851
  * @public
3852
3852
  */
3853
- maxResults?: number;
3853
+ maxResults?: number | undefined;
3854
3854
  }
3855
3855
  /**
3856
3856
  * @public
@@ -3861,12 +3861,12 @@ export interface ListAssessmentFrameworkShareRequestsResponse {
3861
3861
  * API returned. </p>
3862
3862
  * @public
3863
3863
  */
3864
- assessmentFrameworkShareRequests?: AssessmentFrameworkShareRequest[];
3864
+ assessmentFrameworkShareRequests?: AssessmentFrameworkShareRequest[] | undefined;
3865
3865
  /**
3866
3866
  * <p> The pagination token that's used to fetch the next set of results. </p>
3867
3867
  * @public
3868
3868
  */
3869
- nextToken?: string;
3869
+ nextToken?: string | undefined;
3870
3870
  }
3871
3871
  /**
3872
3872
  * @public
@@ -3876,12 +3876,12 @@ export interface ListAssessmentReportsRequest {
3876
3876
  * <p> The pagination token that's used to fetch the next set of results. </p>
3877
3877
  * @public
3878
3878
  */
3879
- nextToken?: string;
3879
+ nextToken?: string | undefined;
3880
3880
  /**
3881
3881
  * <p> Represents the maximum number of results on a page or for an API request call. </p>
3882
3882
  * @public
3883
3883
  */
3884
- maxResults?: number;
3884
+ maxResults?: number | undefined;
3885
3885
  }
3886
3886
  /**
3887
3887
  * @public
@@ -3892,12 +3892,12 @@ export interface ListAssessmentReportsResponse {
3892
3892
  * returned. </p>
3893
3893
  * @public
3894
3894
  */
3895
- assessmentReports?: AssessmentReportMetadata[];
3895
+ assessmentReports?: AssessmentReportMetadata[] | undefined;
3896
3896
  /**
3897
3897
  * <p> The pagination token that's used to fetch the next set of results. </p>
3898
3898
  * @public
3899
3899
  */
3900
- nextToken?: string;
3900
+ nextToken?: string | undefined;
3901
3901
  }
3902
3902
  /**
3903
3903
  * @public
@@ -3907,17 +3907,17 @@ export interface ListAssessmentsRequest {
3907
3907
  * <p> The current status of the assessment.</p>
3908
3908
  * @public
3909
3909
  */
3910
- status?: AssessmentStatus;
3910
+ status?: AssessmentStatus | undefined;
3911
3911
  /**
3912
3912
  * <p> The pagination token that's used to fetch the next set of results. </p>
3913
3913
  * @public
3914
3914
  */
3915
- nextToken?: string;
3915
+ nextToken?: string | undefined;
3916
3916
  /**
3917
3917
  * <p> Represents the maximum number of results on a page or for an API request call. </p>
3918
3918
  * @public
3919
3919
  */
3920
- maxResults?: number;
3920
+ maxResults?: number | undefined;
3921
3921
  }
3922
3922
  /**
3923
3923
  * @public
@@ -3928,12 +3928,12 @@ export interface ListAssessmentsResponse {
3928
3928
  * assessment.</p>
3929
3929
  * @public
3930
3930
  */
3931
- assessmentMetadata?: AssessmentMetadataItem[];
3931
+ assessmentMetadata?: AssessmentMetadataItem[] | undefined;
3932
3932
  /**
3933
3933
  * <p> The pagination token that's used to fetch the next set of results. </p>
3934
3934
  * @public
3935
3935
  */
3936
- nextToken?: string;
3936
+ nextToken?: string | undefined;
3937
3937
  }
3938
3938
  /**
3939
3939
  * @public
@@ -3943,12 +3943,12 @@ export interface ListControlDomainInsightsRequest {
3943
3943
  * <p>The pagination token that's used to fetch the next set of results. </p>
3944
3944
  * @public
3945
3945
  */
3946
- nextToken?: string;
3946
+ nextToken?: string | undefined;
3947
3947
  /**
3948
3948
  * <p>Represents the maximum number of results on a page or for an API request call. </p>
3949
3949
  * @public
3950
3950
  */
3951
- maxResults?: number;
3951
+ maxResults?: number | undefined;
3952
3952
  }
3953
3953
  /**
3954
3954
  * <p>A summary of the latest analytics data for a specific control domain.</p>
@@ -3961,7 +3961,7 @@ export interface ControlDomainInsights {
3961
3961
  * <p>The name of the control domain. </p>
3962
3962
  * @public
3963
3963
  */
3964
- name?: string;
3964
+ name?: string | undefined;
3965
3965
  /**
3966
3966
  * <p>The unique identifier for the control domain. Audit Manager supports the control
3967
3967
  * domains that are provided by Amazon Web Services Control Catalog. For information about how
@@ -3971,29 +3971,29 @@ export interface ControlDomainInsights {
3971
3971
  * Reference.</p>
3972
3972
  * @public
3973
3973
  */
3974
- id?: string;
3974
+ id?: string | undefined;
3975
3975
  /**
3976
3976
  * <p>The number of controls in the control domain that collected non-compliant evidence on
3977
3977
  * the <code>lastUpdated</code> date. </p>
3978
3978
  * @public
3979
3979
  */
3980
- controlsCountByNoncompliantEvidence?: number;
3980
+ controlsCountByNoncompliantEvidence?: number | undefined;
3981
3981
  /**
3982
3982
  * <p>The total number of controls in the control domain. </p>
3983
3983
  * @public
3984
3984
  */
3985
- totalControlsCount?: number;
3985
+ totalControlsCount?: number | undefined;
3986
3986
  /**
3987
3987
  * <p>A breakdown of the compliance check status for the evidence that’s associated with the
3988
3988
  * control domain. </p>
3989
3989
  * @public
3990
3990
  */
3991
- evidenceInsights?: EvidenceInsights;
3991
+ evidenceInsights?: EvidenceInsights | undefined;
3992
3992
  /**
3993
3993
  * <p>The time when the control domain insights were last updated. </p>
3994
3994
  * @public
3995
3995
  */
3996
- lastUpdated?: Date;
3996
+ lastUpdated?: Date | undefined;
3997
3997
  }
3998
3998
  /**
3999
3999
  * @public
@@ -4004,12 +4004,12 @@ export interface ListControlDomainInsightsResponse {
4004
4004
  * returned. </p>
4005
4005
  * @public
4006
4006
  */
4007
- controlDomainInsights?: ControlDomainInsights[];
4007
+ controlDomainInsights?: ControlDomainInsights[] | undefined;
4008
4008
  /**
4009
4009
  * <p>The pagination token that's used to fetch the next set of results. </p>
4010
4010
  * @public
4011
4011
  */
4012
- nextToken?: string;
4012
+ nextToken?: string | undefined;
4013
4013
  }
4014
4014
  /**
4015
4015
  * @public
@@ -4024,12 +4024,12 @@ export interface ListControlDomainInsightsByAssessmentRequest {
4024
4024
  * <p>The pagination token that's used to fetch the next set of results. </p>
4025
4025
  * @public
4026
4026
  */
4027
- nextToken?: string;
4027
+ nextToken?: string | undefined;
4028
4028
  /**
4029
4029
  * <p>Represents the maximum number of results on a page or for an API request call. </p>
4030
4030
  * @public
4031
4031
  */
4032
- maxResults?: number;
4032
+ maxResults?: number | undefined;
4033
4033
  }
4034
4034
  /**
4035
4035
  * @public
@@ -4040,12 +4040,12 @@ export interface ListControlDomainInsightsByAssessmentResponse {
4040
4040
  * <code>ListControlDomainInsightsByAssessment</code> API returned. </p>
4041
4041
  * @public
4042
4042
  */
4043
- controlDomainInsights?: ControlDomainInsights[];
4043
+ controlDomainInsights?: ControlDomainInsights[] | undefined;
4044
4044
  /**
4045
4045
  * <p>The pagination token that's used to fetch the next set of results. </p>
4046
4046
  * @public
4047
4047
  */
4048
- nextToken?: string;
4048
+ nextToken?: string | undefined;
4049
4049
  }
4050
4050
  /**
4051
4051
  * @public
@@ -4066,12 +4066,12 @@ export interface ListControlInsightsByControlDomainRequest {
4066
4066
  * <p>The pagination token that's used to fetch the next set of results. </p>
4067
4067
  * @public
4068
4068
  */
4069
- nextToken?: string;
4069
+ nextToken?: string | undefined;
4070
4070
  /**
4071
4071
  * <p>Represents the maximum number of results on a page or for an API request call. </p>
4072
4072
  * @public
4073
4073
  */
4074
- maxResults?: number;
4074
+ maxResults?: number | undefined;
4075
4075
  }
4076
4076
  /**
4077
4077
  * <p>A summary of the latest analytics data for a specific control. </p>
@@ -4085,23 +4085,23 @@ export interface ControlInsightsMetadataItem {
4085
4085
  * <p>The name of the control. </p>
4086
4086
  * @public
4087
4087
  */
4088
- name?: string;
4088
+ name?: string | undefined;
4089
4089
  /**
4090
4090
  * <p>The unique identifier for the control. </p>
4091
4091
  * @public
4092
4092
  */
4093
- id?: string;
4093
+ id?: string | undefined;
4094
4094
  /**
4095
4095
  * <p>A breakdown of the compliance check status for the evidence that’s associated with the
4096
4096
  * control. </p>
4097
4097
  * @public
4098
4098
  */
4099
- evidenceInsights?: EvidenceInsights;
4099
+ evidenceInsights?: EvidenceInsights | undefined;
4100
4100
  /**
4101
4101
  * <p>The time when the control insights were last updated. </p>
4102
4102
  * @public
4103
4103
  */
4104
- lastUpdated?: Date;
4104
+ lastUpdated?: Date | undefined;
4105
4105
  }
4106
4106
  /**
4107
4107
  * @public
@@ -4112,12 +4112,12 @@ export interface ListControlInsightsByControlDomainResponse {
4112
4112
  * returned. </p>
4113
4113
  * @public
4114
4114
  */
4115
- controlInsightsMetadata?: ControlInsightsMetadataItem[];
4115
+ controlInsightsMetadata?: ControlInsightsMetadataItem[] | undefined;
4116
4116
  /**
4117
4117
  * <p>The pagination token that's used to fetch the next set of results. </p>
4118
4118
  * @public
4119
4119
  */
4120
- nextToken?: string;
4120
+ nextToken?: string | undefined;
4121
4121
  }
4122
4122
  /**
4123
4123
  * @public
@@ -4132,12 +4132,12 @@ export interface ListControlsRequest {
4132
4132
  * <p>The pagination token that's used to fetch the next set of results. </p>
4133
4133
  * @public
4134
4134
  */
4135
- nextToken?: string;
4135
+ nextToken?: string | undefined;
4136
4136
  /**
4137
4137
  * <p>The maximum number of results on a page or for an API request call. </p>
4138
4138
  * @public
4139
4139
  */
4140
- maxResults?: number;
4140
+ maxResults?: number | undefined;
4141
4141
  /**
4142
4142
  * <p>A filter that narrows the list of controls to a specific resource from the Amazon Web Services
4143
4143
  * Control Catalog. </p>
@@ -4161,7 +4161,7 @@ export interface ListControlsRequest {
4161
4161
  * custom controls that don't belong to any control domain or control objective.</p>
4162
4162
  * @public
4163
4163
  */
4164
- controlCatalogId?: string;
4164
+ controlCatalogId?: string | undefined;
4165
4165
  }
4166
4166
  /**
4167
4167
  * <p> The metadata that's associated with the standard control or custom control. </p>
@@ -4172,33 +4172,33 @@ export interface ControlMetadata {
4172
4172
  * <p> The Amazon Resource Name (ARN) of the control. </p>
4173
4173
  * @public
4174
4174
  */
4175
- arn?: string;
4175
+ arn?: string | undefined;
4176
4176
  /**
4177
4177
  * <p> The unique identifier for the control. </p>
4178
4178
  * @public
4179
4179
  */
4180
- id?: string;
4180
+ id?: string | undefined;
4181
4181
  /**
4182
4182
  * <p> The name of the control. </p>
4183
4183
  * @public
4184
4184
  */
4185
- name?: string;
4185
+ name?: string | undefined;
4186
4186
  /**
4187
4187
  * <p> The data source that determines where Audit Manager collects evidence from for the
4188
4188
  * control. </p>
4189
4189
  * @public
4190
4190
  */
4191
- controlSources?: string;
4191
+ controlSources?: string | undefined;
4192
4192
  /**
4193
4193
  * <p> The time when the control was created. </p>
4194
4194
  * @public
4195
4195
  */
4196
- createdAt?: Date;
4196
+ createdAt?: Date | undefined;
4197
4197
  /**
4198
4198
  * <p> The time when the control was most recently updated. </p>
4199
4199
  * @public
4200
4200
  */
4201
- lastUpdatedAt?: Date;
4201
+ lastUpdatedAt?: Date | undefined;
4202
4202
  }
4203
4203
  /**
4204
4204
  * @public
@@ -4209,12 +4209,12 @@ export interface ListControlsResponse {
4209
4209
  * control.</p>
4210
4210
  * @public
4211
4211
  */
4212
- controlMetadataList?: ControlMetadata[];
4212
+ controlMetadataList?: ControlMetadata[] | undefined;
4213
4213
  /**
4214
4214
  * <p>The pagination token that's used to fetch the next set of results. </p>
4215
4215
  * @public
4216
4216
  */
4217
- nextToken?: string;
4217
+ nextToken?: string | undefined;
4218
4218
  }
4219
4219
  /**
4220
4220
  * @public
@@ -4244,12 +4244,12 @@ export interface ListKeywordsForDataSourceRequest {
4244
4244
  * <p> The pagination token that's used to fetch the next set of results. </p>
4245
4245
  * @public
4246
4246
  */
4247
- nextToken?: string;
4247
+ nextToken?: string | undefined;
4248
4248
  /**
4249
4249
  * <p> Represents the maximum number of results on a page or for an API request call. </p>
4250
4250
  * @public
4251
4251
  */
4252
- maxResults?: number;
4252
+ maxResults?: number | undefined;
4253
4253
  }
4254
4254
  /**
4255
4255
  * @public
@@ -4259,12 +4259,12 @@ export interface ListKeywordsForDataSourceResponse {
4259
4259
  * <p>The list of keywords for the control mapping source.</p>
4260
4260
  * @public
4261
4261
  */
4262
- keywords?: string[];
4262
+ keywords?: string[] | undefined;
4263
4263
  /**
4264
4264
  * <p> The pagination token that's used to fetch the next set of results. </p>
4265
4265
  * @public
4266
4266
  */
4267
- nextToken?: string;
4267
+ nextToken?: string | undefined;
4268
4268
  }
4269
4269
  /**
4270
4270
  * @public
@@ -4274,12 +4274,12 @@ export interface ListNotificationsRequest {
4274
4274
  * <p> The pagination token that's used to fetch the next set of results. </p>
4275
4275
  * @public
4276
4276
  */
4277
- nextToken?: string;
4277
+ nextToken?: string | undefined;
4278
4278
  /**
4279
4279
  * <p> Represents the maximum number of results on a page or for an API request call. </p>
4280
4280
  * @public
4281
4281
  */
4282
- maxResults?: number;
4282
+ maxResults?: number | undefined;
4283
4283
  }
4284
4284
  /**
4285
4285
  * <p> The notification that informs a user of an update in Audit Manager. For
@@ -4292,42 +4292,42 @@ export interface Notification {
4292
4292
  * <p> The unique identifier for the notification. </p>
4293
4293
  * @public
4294
4294
  */
4295
- id?: string;
4295
+ id?: string | undefined;
4296
4296
  /**
4297
4297
  * <p> The identifier for the assessment. </p>
4298
4298
  * @public
4299
4299
  */
4300
- assessmentId?: string;
4300
+ assessmentId?: string | undefined;
4301
4301
  /**
4302
4302
  * <p> The name of the related assessment. </p>
4303
4303
  * @public
4304
4304
  */
4305
- assessmentName?: string;
4305
+ assessmentName?: string | undefined;
4306
4306
  /**
4307
4307
  * <p> The identifier for the control set. </p>
4308
4308
  * @public
4309
4309
  */
4310
- controlSetId?: string;
4310
+ controlSetId?: string | undefined;
4311
4311
  /**
4312
4312
  * <p> Specifies the name of the control set that the notification is about. </p>
4313
4313
  * @public
4314
4314
  */
4315
- controlSetName?: string;
4315
+ controlSetName?: string | undefined;
4316
4316
  /**
4317
4317
  * <p> The description of the notification. </p>
4318
4318
  * @public
4319
4319
  */
4320
- description?: string;
4320
+ description?: string | undefined;
4321
4321
  /**
4322
4322
  * <p> The time when the notification was sent. </p>
4323
4323
  * @public
4324
4324
  */
4325
- eventTime?: Date;
4325
+ eventTime?: Date | undefined;
4326
4326
  /**
4327
4327
  * <p> The sender of the notification. </p>
4328
4328
  * @public
4329
4329
  */
4330
- source?: string;
4330
+ source?: string | undefined;
4331
4331
  }
4332
4332
  /**
4333
4333
  * @public
@@ -4337,12 +4337,12 @@ export interface ListNotificationsResponse {
4337
4337
  * <p> The returned list of notifications. </p>
4338
4338
  * @public
4339
4339
  */
4340
- notifications?: Notification[];
4340
+ notifications?: Notification[] | undefined;
4341
4341
  /**
4342
4342
  * <p> The pagination token that's used to fetch the next set of results. </p>
4343
4343
  * @public
4344
4344
  */
4345
- nextToken?: string;
4345
+ nextToken?: string | undefined;
4346
4346
  }
4347
4347
  /**
4348
4348
  * @public
@@ -4362,7 +4362,7 @@ export interface ListTagsForResourceResponse {
4362
4362
  * <p> The list of tags that the <code>ListTagsForResource</code> API returned. </p>
4363
4363
  * @public
4364
4364
  */
4365
- tags?: Record<string, string>;
4365
+ tags?: Record<string, string> | undefined;
4366
4366
  }
4367
4367
  /**
4368
4368
  * @public
@@ -4372,12 +4372,12 @@ export interface RegisterAccountRequest {
4372
4372
  * <p> The KMS key details. </p>
4373
4373
  * @public
4374
4374
  */
4375
- kmsKey?: string;
4375
+ kmsKey?: string | undefined;
4376
4376
  /**
4377
4377
  * <p> The delegated administrator account for Audit Manager. </p>
4378
4378
  * @public
4379
4379
  */
4380
- delegatedAdminAccount?: string;
4380
+ delegatedAdminAccount?: string | undefined;
4381
4381
  }
4382
4382
  /**
4383
4383
  * @public
@@ -4387,7 +4387,7 @@ export interface RegisterAccountResponse {
4387
4387
  * <p> The status of the account registration request. </p>
4388
4388
  * @public
4389
4389
  */
4390
- status?: AccountStatus;
4390
+ status?: AccountStatus | undefined;
4391
4391
  }
4392
4392
  /**
4393
4393
  * @public
@@ -4407,12 +4407,12 @@ export interface RegisterOrganizationAdminAccountResponse {
4407
4407
  * <p> The identifier for the delegated administrator account. </p>
4408
4408
  * @public
4409
4409
  */
4410
- adminAccountId?: string;
4410
+ adminAccountId?: string | undefined;
4411
4411
  /**
4412
4412
  * <p> The identifier for the organization. </p>
4413
4413
  * @public
4414
4414
  */
4415
- organizationId?: string;
4415
+ organizationId?: string | undefined;
4416
4416
  }
4417
4417
  /**
4418
4418
  * @public
@@ -4437,7 +4437,7 @@ export interface StartAssessmentFrameworkShareRequest {
4437
4437
  * <p> An optional comment from the sender about the share request. </p>
4438
4438
  * @public
4439
4439
  */
4440
- comment?: string;
4440
+ comment?: string | undefined;
4441
4441
  }
4442
4442
  /**
4443
4443
  * @public
@@ -4448,7 +4448,7 @@ export interface StartAssessmentFrameworkShareResponse {
4448
4448
  * </p>
4449
4449
  * @public
4450
4450
  */
4451
- assessmentFrameworkShareRequest?: AssessmentFrameworkShareRequest;
4451
+ assessmentFrameworkShareRequest?: AssessmentFrameworkShareRequest | undefined;
4452
4452
  }
4453
4453
  /**
4454
4454
  * @public
@@ -4503,12 +4503,12 @@ export interface UpdateAssessmentRequest {
4503
4503
  * <p> The name of the assessment to be updated. </p>
4504
4504
  * @public
4505
4505
  */
4506
- assessmentName?: string;
4506
+ assessmentName?: string | undefined;
4507
4507
  /**
4508
4508
  * <p> The description of the assessment. </p>
4509
4509
  * @public
4510
4510
  */
4511
- assessmentDescription?: string;
4511
+ assessmentDescription?: string | undefined;
4512
4512
  /**
4513
4513
  * <p> The scope of the assessment. </p>
4514
4514
  * @public
@@ -4519,12 +4519,12 @@ export interface UpdateAssessmentRequest {
4519
4519
  * </p>
4520
4520
  * @public
4521
4521
  */
4522
- assessmentReportsDestination?: AssessmentReportsDestination;
4522
+ assessmentReportsDestination?: AssessmentReportsDestination | undefined;
4523
4523
  /**
4524
4524
  * <p> The list of roles for the assessment. </p>
4525
4525
  * @public
4526
4526
  */
4527
- roles?: Role[];
4527
+ roles?: Role[] | undefined;
4528
4528
  }
4529
4529
  /**
4530
4530
  * @public
@@ -4535,7 +4535,7 @@ export interface UpdateAssessmentResponse {
4535
4535
  * updated assessment.</p>
4536
4536
  * @public
4537
4537
  */
4538
- assessment?: Assessment;
4538
+ assessment?: Assessment | undefined;
4539
4539
  }
4540
4540
  /**
4541
4541
  * @public
@@ -4560,12 +4560,12 @@ export interface UpdateAssessmentControlRequest {
4560
4560
  * <p> The status of the control. </p>
4561
4561
  * @public
4562
4562
  */
4563
- controlStatus?: ControlStatus;
4563
+ controlStatus?: ControlStatus | undefined;
4564
4564
  /**
4565
4565
  * <p> The comment body text for the control. </p>
4566
4566
  * @public
4567
4567
  */
4568
- commentBody?: string;
4568
+ commentBody?: string | undefined;
4569
4569
  }
4570
4570
  /**
4571
4571
  * @public
@@ -4576,7 +4576,7 @@ export interface UpdateAssessmentControlResponse {
4576
4576
  * returned. </p>
4577
4577
  * @public
4578
4578
  */
4579
- control?: AssessmentControl;
4579
+ control?: AssessmentControl | undefined;
4580
4580
  }
4581
4581
  /**
4582
4582
  * @public
@@ -4612,7 +4612,7 @@ export interface UpdateAssessmentControlSetStatusResponse {
4612
4612
  * <code>UpdateAssessmentControlSetStatus</code> API returned. </p>
4613
4613
  * @public
4614
4614
  */
4615
- controlSet?: AssessmentControlSet;
4615
+ controlSet?: AssessmentControlSet | undefined;
4616
4616
  }
4617
4617
  /**
4618
4618
  * <p> A <code>controlSet</code> entity that represents a collection of controls in Audit Manager. This doesn't contain the control set ID. </p>
@@ -4623,7 +4623,7 @@ export interface UpdateAssessmentFrameworkControlSet {
4623
4623
  * <p> The unique identifier for the control set. </p>
4624
4624
  * @public
4625
4625
  */
4626
- id?: string;
4626
+ id?: string | undefined;
4627
4627
  /**
4628
4628
  * <p> The name of the control set. </p>
4629
4629
  * @public
@@ -4653,13 +4653,13 @@ export interface UpdateAssessmentFrameworkRequest {
4653
4653
  * <p> The description of the updated framework. </p>
4654
4654
  * @public
4655
4655
  */
4656
- description?: string;
4656
+ description?: string | undefined;
4657
4657
  /**
4658
4658
  * <p> The compliance type that the new custom framework supports, such as CIS or HIPAA.
4659
4659
  * </p>
4660
4660
  * @public
4661
4661
  */
4662
- complianceType?: string;
4662
+ complianceType?: string | undefined;
4663
4663
  /**
4664
4664
  * <p> The control sets that are associated with the framework. </p>
4665
4665
  * @public
@@ -4674,7 +4674,7 @@ export interface UpdateAssessmentFrameworkResponse {
4674
4674
  * <p> The name of the framework. </p>
4675
4675
  * @public
4676
4676
  */
4677
- framework?: Framework;
4677
+ framework?: Framework | undefined;
4678
4678
  }
4679
4679
  /**
4680
4680
  * @public
@@ -4718,7 +4718,7 @@ export interface UpdateAssessmentFrameworkShareResponse {
4718
4718
  * <code>UpdateAssessmentFrameworkShare</code> operation. </p>
4719
4719
  * @public
4720
4720
  */
4721
- assessmentFrameworkShareRequest?: AssessmentFrameworkShareRequest;
4721
+ assessmentFrameworkShareRequest?: AssessmentFrameworkShareRequest | undefined;
4722
4722
  }
4723
4723
  /**
4724
4724
  * @public
@@ -4744,7 +4744,7 @@ export interface UpdateAssessmentStatusResponse {
4744
4744
  * returned. </p>
4745
4745
  * @public
4746
4746
  */
4747
- assessment?: Assessment;
4747
+ assessment?: Assessment | undefined;
4748
4748
  }
4749
4749
  /**
4750
4750
  * @public
@@ -4764,22 +4764,22 @@ export interface UpdateControlRequest {
4764
4764
  * <p> The optional description of the control. </p>
4765
4765
  * @public
4766
4766
  */
4767
- description?: string;
4767
+ description?: string | undefined;
4768
4768
  /**
4769
4769
  * <p> The steps that you should follow to determine if the control is met. </p>
4770
4770
  * @public
4771
4771
  */
4772
- testingInformation?: string;
4772
+ testingInformation?: string | undefined;
4773
4773
  /**
4774
4774
  * <p> The title of the action plan for remediating the control. </p>
4775
4775
  * @public
4776
4776
  */
4777
- actionPlanTitle?: string;
4777
+ actionPlanTitle?: string | undefined;
4778
4778
  /**
4779
4779
  * <p> The recommended actions to carry out if the control isn't fulfilled. </p>
4780
4780
  * @public
4781
4781
  */
4782
- actionPlanInstructions?: string;
4782
+ actionPlanInstructions?: string | undefined;
4783
4783
  /**
4784
4784
  * <p> The data mapping sources for the control. </p>
4785
4785
  * @public
@@ -4795,7 +4795,7 @@ export interface UpdateControlResponse {
4795
4795
  * </p>
4796
4796
  * @public
4797
4797
  */
4798
- control?: Control;
4798
+ control?: Control | undefined;
4799
4799
  }
4800
4800
  /**
4801
4801
  * @public
@@ -4806,22 +4806,22 @@ export interface UpdateSettingsRequest {
4806
4806
  * notifications to. </p>
4807
4807
  * @public
4808
4808
  */
4809
- snsTopic?: string;
4809
+ snsTopic?: string | undefined;
4810
4810
  /**
4811
4811
  * <p> The default S3 destination bucket for storing assessment reports. </p>
4812
4812
  * @public
4813
4813
  */
4814
- defaultAssessmentReportsDestination?: AssessmentReportsDestination;
4814
+ defaultAssessmentReportsDestination?: AssessmentReportsDestination | undefined;
4815
4815
  /**
4816
4816
  * <p> A list of the default audit owners. </p>
4817
4817
  * @public
4818
4818
  */
4819
- defaultProcessOwners?: Role[];
4819
+ defaultProcessOwners?: Role[] | undefined;
4820
4820
  /**
4821
4821
  * <p> The KMS key details. </p>
4822
4822
  * @public
4823
4823
  */
4824
- kmsKey?: string;
4824
+ kmsKey?: string | undefined;
4825
4825
  /**
4826
4826
  * <p>Specifies whether the evidence finder feature is enabled. Change this attribute to
4827
4827
  * enable or disable evidence finder.</p>
@@ -4833,18 +4833,18 @@ export interface UpdateSettingsRequest {
4833
4833
  * </important>
4834
4834
  * @public
4835
4835
  */
4836
- evidenceFinderEnabled?: boolean;
4836
+ evidenceFinderEnabled?: boolean | undefined;
4837
4837
  /**
4838
4838
  * <p>The deregistration policy for your Audit Manager data. You can
4839
4839
  * use this attribute to determine how your data is handled when you deregister Audit Manager.</p>
4840
4840
  * @public
4841
4841
  */
4842
- deregistrationPolicy?: DeregistrationPolicy;
4842
+ deregistrationPolicy?: DeregistrationPolicy | undefined;
4843
4843
  /**
4844
4844
  * <p> The default S3 destination bucket for storing evidence finder exports. </p>
4845
4845
  * @public
4846
4846
  */
4847
- defaultExportDestination?: DefaultExportDestination;
4847
+ defaultExportDestination?: DefaultExportDestination | undefined;
4848
4848
  }
4849
4849
  /**
4850
4850
  * @public
@@ -4854,7 +4854,7 @@ export interface UpdateSettingsResponse {
4854
4854
  * <p> The current list of settings. </p>
4855
4855
  * @public
4856
4856
  */
4857
- settings?: Settings;
4857
+ settings?: Settings | undefined;
4858
4858
  }
4859
4859
  /**
4860
4860
  * @public
@@ -4875,28 +4875,28 @@ export interface ValidateAssessmentReportIntegrityResponse {
4875
4875
  * <p> Specifies whether the signature key is valid. </p>
4876
4876
  * @public
4877
4877
  */
4878
- signatureValid?: boolean;
4878
+ signatureValid?: boolean | undefined;
4879
4879
  /**
4880
4880
  * <p> The signature algorithm that's used to code sign the assessment report file. </p>
4881
4881
  * @public
4882
4882
  */
4883
- signatureAlgorithm?: string;
4883
+ signatureAlgorithm?: string | undefined;
4884
4884
  /**
4885
4885
  * <p> The date and time signature that specifies when the assessment report was created.
4886
4886
  * </p>
4887
4887
  * @public
4888
4888
  */
4889
- signatureDateTime?: string;
4889
+ signatureDateTime?: string | undefined;
4890
4890
  /**
4891
4891
  * <p> The unique identifier for the validation signature key. </p>
4892
4892
  * @public
4893
4893
  */
4894
- signatureKeyId?: string;
4894
+ signatureKeyId?: string | undefined;
4895
4895
  /**
4896
4896
  * <p> Represents any errors that occurred when validating the assessment report. </p>
4897
4897
  * @public
4898
4898
  */
4899
- validationErrors?: string[];
4899
+ validationErrors?: string[] | undefined;
4900
4900
  }
4901
4901
  /**
4902
4902
  * @internal