@aws-sdk/client-inspector2 3.689.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.
- package/dist-types/models/models_0.d.ts +496 -496
- package/dist-types/models/models_1.d.ts +122 -122
- package/dist-types/ts3.4/models/models_0.d.ts +500 -496
- package/dist-types/ts3.4/models/models_1.d.ts +124 -122
- package/package.json +35 -35
|
@@ -47,13 +47,13 @@ export interface ResourceStatus {
|
|
|
47
47
|
* <p>The status of Amazon Inspector scanning for Amazon Web Services Lambda function.</p>
|
|
48
48
|
* @public
|
|
49
49
|
*/
|
|
50
|
-
lambda?: Status;
|
|
50
|
+
lambda?: Status | undefined;
|
|
51
51
|
/**
|
|
52
52
|
* <p>The status of Amazon Inspector scanning for custom application code for Amazon Web Services Lambda functions.
|
|
53
53
|
* </p>
|
|
54
54
|
* @public
|
|
55
55
|
*/
|
|
56
|
-
lambdaCode?: Status;
|
|
56
|
+
lambdaCode?: Status | undefined;
|
|
57
57
|
}
|
|
58
58
|
/**
|
|
59
59
|
* <p>An Amazon Web Services account within your environment that Amazon Inspector has been enabled for.</p>
|
|
@@ -137,22 +137,22 @@ export interface AccountAggregation {
|
|
|
137
137
|
* <p>The type of finding.</p>
|
|
138
138
|
* @public
|
|
139
139
|
*/
|
|
140
|
-
findingType?: AggregationFindingType;
|
|
140
|
+
findingType?: AggregationFindingType | undefined;
|
|
141
141
|
/**
|
|
142
142
|
* <p>The type of resource.</p>
|
|
143
143
|
* @public
|
|
144
144
|
*/
|
|
145
|
-
resourceType?: AggregationResourceType;
|
|
145
|
+
resourceType?: AggregationResourceType | undefined;
|
|
146
146
|
/**
|
|
147
147
|
* <p>The sort order (ascending or descending).</p>
|
|
148
148
|
* @public
|
|
149
149
|
*/
|
|
150
|
-
sortOrder?: SortOrder;
|
|
150
|
+
sortOrder?: SortOrder | undefined;
|
|
151
151
|
/**
|
|
152
152
|
* <p>The value to sort by.</p>
|
|
153
153
|
* @public
|
|
154
154
|
*/
|
|
155
|
-
sortBy?: AccountSortBy;
|
|
155
|
+
sortBy?: AccountSortBy | undefined;
|
|
156
156
|
}
|
|
157
157
|
/**
|
|
158
158
|
* <p>An object that contains the counts of aggregated finding per severity.</p>
|
|
@@ -163,22 +163,22 @@ export interface SeverityCounts {
|
|
|
163
163
|
* <p>The total count of findings from all severities.</p>
|
|
164
164
|
* @public
|
|
165
165
|
*/
|
|
166
|
-
all?: number;
|
|
166
|
+
all?: number | undefined;
|
|
167
167
|
/**
|
|
168
168
|
* <p>The total count of medium severity findings.</p>
|
|
169
169
|
* @public
|
|
170
170
|
*/
|
|
171
|
-
medium?: number;
|
|
171
|
+
medium?: number | undefined;
|
|
172
172
|
/**
|
|
173
173
|
* <p>The total count of high severity findings.</p>
|
|
174
174
|
* @public
|
|
175
175
|
*/
|
|
176
|
-
high?: number;
|
|
176
|
+
high?: number | undefined;
|
|
177
177
|
/**
|
|
178
178
|
* <p>The total count of critical severity findings.</p>
|
|
179
179
|
* @public
|
|
180
180
|
*/
|
|
181
|
-
critical?: number;
|
|
181
|
+
critical?: number | undefined;
|
|
182
182
|
}
|
|
183
183
|
/**
|
|
184
184
|
* <p>An aggregation of findings by Amazon Web Services account ID.</p>
|
|
@@ -189,26 +189,26 @@ export interface AccountAggregationResponse {
|
|
|
189
189
|
* <p>The Amazon Web Services account ID.</p>
|
|
190
190
|
* @public
|
|
191
191
|
*/
|
|
192
|
-
accountId?: string;
|
|
192
|
+
accountId?: string | undefined;
|
|
193
193
|
/**
|
|
194
194
|
* <p>The number of findings by severity.</p>
|
|
195
195
|
* @public
|
|
196
196
|
*/
|
|
197
|
-
severityCounts?: SeverityCounts;
|
|
197
|
+
severityCounts?: SeverityCounts | undefined;
|
|
198
198
|
/**
|
|
199
199
|
* <p>
|
|
200
200
|
* The number of findings that have an exploit available.
|
|
201
201
|
* </p>
|
|
202
202
|
* @public
|
|
203
203
|
*/
|
|
204
|
-
exploitAvailableCount?: number;
|
|
204
|
+
exploitAvailableCount?: number | undefined;
|
|
205
205
|
/**
|
|
206
206
|
* <p>
|
|
207
207
|
* Details about the number of fixes.
|
|
208
208
|
* </p>
|
|
209
209
|
* @public
|
|
210
210
|
*/
|
|
211
|
-
fixAvailableCount?: number;
|
|
211
|
+
fixAvailableCount?: number | undefined;
|
|
212
212
|
}
|
|
213
213
|
/**
|
|
214
214
|
* @public
|
|
@@ -305,12 +305,12 @@ export interface ResourceState {
|
|
|
305
305
|
* <p>An object that described the state of Amazon Inspector scans for an account.</p>
|
|
306
306
|
* @public
|
|
307
307
|
*/
|
|
308
|
-
lambda?: State;
|
|
308
|
+
lambda?: State | undefined;
|
|
309
309
|
/**
|
|
310
310
|
* <p>An object that described the state of Amazon Inspector scans for an account.</p>
|
|
311
311
|
* @public
|
|
312
312
|
*/
|
|
313
|
-
lambdaCode?: State;
|
|
313
|
+
lambdaCode?: State | undefined;
|
|
314
314
|
}
|
|
315
315
|
/**
|
|
316
316
|
* <p>An object with details the status of an Amazon Web Services account within your Amazon Inspector environment.</p>
|
|
@@ -385,17 +385,17 @@ export interface AmiAggregation {
|
|
|
385
385
|
* <p>The IDs of AMIs to aggregate findings for.</p>
|
|
386
386
|
* @public
|
|
387
387
|
*/
|
|
388
|
-
amis?: StringFilter[];
|
|
388
|
+
amis?: StringFilter[] | undefined;
|
|
389
389
|
/**
|
|
390
390
|
* <p>The order to sort results by.</p>
|
|
391
391
|
* @public
|
|
392
392
|
*/
|
|
393
|
-
sortOrder?: SortOrder;
|
|
393
|
+
sortOrder?: SortOrder | undefined;
|
|
394
394
|
/**
|
|
395
395
|
* <p>The value to sort results by.</p>
|
|
396
396
|
* @public
|
|
397
397
|
*/
|
|
398
|
-
sortBy?: AmiSortBy;
|
|
398
|
+
sortBy?: AmiSortBy | undefined;
|
|
399
399
|
}
|
|
400
400
|
/**
|
|
401
401
|
* @public
|
|
@@ -419,37 +419,37 @@ export interface AwsEcrContainerAggregation {
|
|
|
419
419
|
* <p>The container resource IDs.</p>
|
|
420
420
|
* @public
|
|
421
421
|
*/
|
|
422
|
-
resourceIds?: StringFilter[];
|
|
422
|
+
resourceIds?: StringFilter[] | undefined;
|
|
423
423
|
/**
|
|
424
424
|
* <p>The image SHA values.</p>
|
|
425
425
|
* @public
|
|
426
426
|
*/
|
|
427
|
-
imageShas?: StringFilter[];
|
|
427
|
+
imageShas?: StringFilter[] | undefined;
|
|
428
428
|
/**
|
|
429
429
|
* <p>The container repositories.</p>
|
|
430
430
|
* @public
|
|
431
431
|
*/
|
|
432
|
-
repositories?: StringFilter[];
|
|
432
|
+
repositories?: StringFilter[] | undefined;
|
|
433
433
|
/**
|
|
434
434
|
* <p>The architecture of the containers.</p>
|
|
435
435
|
* @public
|
|
436
436
|
*/
|
|
437
|
-
architectures?: StringFilter[];
|
|
437
|
+
architectures?: StringFilter[] | undefined;
|
|
438
438
|
/**
|
|
439
439
|
* <p>The image tags.</p>
|
|
440
440
|
* @public
|
|
441
441
|
*/
|
|
442
|
-
imageTags?: StringFilter[];
|
|
442
|
+
imageTags?: StringFilter[] | undefined;
|
|
443
443
|
/**
|
|
444
444
|
* <p>The sort order (ascending or descending).</p>
|
|
445
445
|
* @public
|
|
446
446
|
*/
|
|
447
|
-
sortOrder?: SortOrder;
|
|
447
|
+
sortOrder?: SortOrder | undefined;
|
|
448
448
|
/**
|
|
449
449
|
* <p>The value to sort by.</p>
|
|
450
450
|
* @public
|
|
451
451
|
*/
|
|
452
|
-
sortBy?: AwsEcrContainerSortBy;
|
|
452
|
+
sortBy?: AwsEcrContainerSortBy | undefined;
|
|
453
453
|
}
|
|
454
454
|
/**
|
|
455
455
|
* @public
|
|
@@ -481,7 +481,7 @@ export interface MapFilter {
|
|
|
481
481
|
* <p>The tag value used in the filter.</p>
|
|
482
482
|
* @public
|
|
483
483
|
*/
|
|
484
|
-
value?: string;
|
|
484
|
+
value?: string | undefined;
|
|
485
485
|
}
|
|
486
486
|
/**
|
|
487
487
|
* @public
|
|
@@ -506,34 +506,34 @@ export interface Ec2InstanceAggregation {
|
|
|
506
506
|
* <p>The AMI IDs associated with the Amazon EC2 instances to aggregate findings for.</p>
|
|
507
507
|
* @public
|
|
508
508
|
*/
|
|
509
|
-
amis?: StringFilter[];
|
|
509
|
+
amis?: StringFilter[] | undefined;
|
|
510
510
|
/**
|
|
511
511
|
* <p>The operating system types to aggregate findings for. Valid values must be uppercase and
|
|
512
512
|
* underscore separated, examples are <code>ORACLE_LINUX_7</code> and
|
|
513
513
|
* <code>ALPINE_LINUX_3_8</code>.</p>
|
|
514
514
|
* @public
|
|
515
515
|
*/
|
|
516
|
-
operatingSystems?: StringFilter[];
|
|
516
|
+
operatingSystems?: StringFilter[] | undefined;
|
|
517
517
|
/**
|
|
518
518
|
* <p>The Amazon EC2 instance IDs to aggregate findings for.</p>
|
|
519
519
|
* @public
|
|
520
520
|
*/
|
|
521
|
-
instanceIds?: StringFilter[];
|
|
521
|
+
instanceIds?: StringFilter[] | undefined;
|
|
522
522
|
/**
|
|
523
523
|
* <p>The Amazon EC2 instance tags to aggregate findings for.</p>
|
|
524
524
|
* @public
|
|
525
525
|
*/
|
|
526
|
-
instanceTags?: MapFilter[];
|
|
526
|
+
instanceTags?: MapFilter[] | undefined;
|
|
527
527
|
/**
|
|
528
528
|
* <p>The order to sort results by.</p>
|
|
529
529
|
* @public
|
|
530
530
|
*/
|
|
531
|
-
sortOrder?: SortOrder;
|
|
531
|
+
sortOrder?: SortOrder | undefined;
|
|
532
532
|
/**
|
|
533
533
|
* <p>The value to sort results by.</p>
|
|
534
534
|
* @public
|
|
535
535
|
*/
|
|
536
|
-
sortBy?: Ec2InstanceSortBy;
|
|
536
|
+
sortBy?: Ec2InstanceSortBy | undefined;
|
|
537
537
|
}
|
|
538
538
|
/**
|
|
539
539
|
* @public
|
|
@@ -557,22 +557,22 @@ export interface FindingTypeAggregation {
|
|
|
557
557
|
* <p>The finding type to aggregate.</p>
|
|
558
558
|
* @public
|
|
559
559
|
*/
|
|
560
|
-
findingType?: AggregationFindingType;
|
|
560
|
+
findingType?: AggregationFindingType | undefined;
|
|
561
561
|
/**
|
|
562
562
|
* <p>The resource type to aggregate.</p>
|
|
563
563
|
* @public
|
|
564
564
|
*/
|
|
565
|
-
resourceType?: AggregationResourceType;
|
|
565
|
+
resourceType?: AggregationResourceType | undefined;
|
|
566
566
|
/**
|
|
567
567
|
* <p>The order to sort results by.</p>
|
|
568
568
|
* @public
|
|
569
569
|
*/
|
|
570
|
-
sortOrder?: SortOrder;
|
|
570
|
+
sortOrder?: SortOrder | undefined;
|
|
571
571
|
/**
|
|
572
572
|
* <p>The value to sort results by.</p>
|
|
573
573
|
* @public
|
|
574
574
|
*/
|
|
575
|
-
sortBy?: FindingTypeSortBy;
|
|
575
|
+
sortBy?: FindingTypeSortBy | undefined;
|
|
576
576
|
}
|
|
577
577
|
/**
|
|
578
578
|
* @public
|
|
@@ -596,27 +596,27 @@ export interface ImageLayerAggregation {
|
|
|
596
596
|
* <p>The repository associated with the container image hosting the layers.</p>
|
|
597
597
|
* @public
|
|
598
598
|
*/
|
|
599
|
-
repositories?: StringFilter[];
|
|
599
|
+
repositories?: StringFilter[] | undefined;
|
|
600
600
|
/**
|
|
601
601
|
* <p>The ID of the container image layer.</p>
|
|
602
602
|
* @public
|
|
603
603
|
*/
|
|
604
|
-
resourceIds?: StringFilter[];
|
|
604
|
+
resourceIds?: StringFilter[] | undefined;
|
|
605
605
|
/**
|
|
606
606
|
* <p>The hashes associated with the layers.</p>
|
|
607
607
|
* @public
|
|
608
608
|
*/
|
|
609
|
-
layerHashes?: StringFilter[];
|
|
609
|
+
layerHashes?: StringFilter[] | undefined;
|
|
610
610
|
/**
|
|
611
611
|
* <p>The order to sort results by.</p>
|
|
612
612
|
* @public
|
|
613
613
|
*/
|
|
614
|
-
sortOrder?: SortOrder;
|
|
614
|
+
sortOrder?: SortOrder | undefined;
|
|
615
615
|
/**
|
|
616
616
|
* <p>The value to sort results by.</p>
|
|
617
617
|
* @public
|
|
618
618
|
*/
|
|
619
|
-
sortBy?: ImageLayerSortBy;
|
|
619
|
+
sortBy?: ImageLayerSortBy | undefined;
|
|
620
620
|
}
|
|
621
621
|
/**
|
|
622
622
|
* @public
|
|
@@ -640,32 +640,32 @@ export interface LambdaFunctionAggregation {
|
|
|
640
640
|
* <p>The resource IDs to include in the aggregation results.</p>
|
|
641
641
|
* @public
|
|
642
642
|
*/
|
|
643
|
-
resourceIds?: StringFilter[];
|
|
643
|
+
resourceIds?: StringFilter[] | undefined;
|
|
644
644
|
/**
|
|
645
645
|
* <p>The Amazon Web Services Lambda function names to include in the aggregation results.</p>
|
|
646
646
|
* @public
|
|
647
647
|
*/
|
|
648
|
-
functionNames?: StringFilter[];
|
|
648
|
+
functionNames?: StringFilter[] | undefined;
|
|
649
649
|
/**
|
|
650
650
|
* <p>Returns findings aggregated by Amazon Web Services Lambda function runtime environments.</p>
|
|
651
651
|
* @public
|
|
652
652
|
*/
|
|
653
|
-
runtimes?: StringFilter[];
|
|
653
|
+
runtimes?: StringFilter[] | undefined;
|
|
654
654
|
/**
|
|
655
655
|
* <p>The tags to include in the aggregation results.</p>
|
|
656
656
|
* @public
|
|
657
657
|
*/
|
|
658
|
-
functionTags?: MapFilter[];
|
|
658
|
+
functionTags?: MapFilter[] | undefined;
|
|
659
659
|
/**
|
|
660
660
|
* <p>The order to use for sorting the results.</p>
|
|
661
661
|
* @public
|
|
662
662
|
*/
|
|
663
|
-
sortOrder?: SortOrder;
|
|
663
|
+
sortOrder?: SortOrder | undefined;
|
|
664
664
|
/**
|
|
665
665
|
* <p>The finding severity to use for sorting the results.</p>
|
|
666
666
|
* @public
|
|
667
667
|
*/
|
|
668
|
-
sortBy?: LambdaFunctionSortBy;
|
|
668
|
+
sortBy?: LambdaFunctionSortBy | undefined;
|
|
669
669
|
}
|
|
670
670
|
/**
|
|
671
671
|
* @public
|
|
@@ -689,28 +689,28 @@ export interface LambdaLayerAggregation {
|
|
|
689
689
|
* <p>The names of the Amazon Web Services Lambda functions associated with the layers.</p>
|
|
690
690
|
* @public
|
|
691
691
|
*/
|
|
692
|
-
functionNames?: StringFilter[];
|
|
692
|
+
functionNames?: StringFilter[] | undefined;
|
|
693
693
|
/**
|
|
694
694
|
* <p>The resource IDs for the Amazon Web Services Lambda function layers.</p>
|
|
695
695
|
* @public
|
|
696
696
|
*/
|
|
697
|
-
resourceIds?: StringFilter[];
|
|
697
|
+
resourceIds?: StringFilter[] | undefined;
|
|
698
698
|
/**
|
|
699
699
|
* <p>The Amazon Resource Name (ARN) of the Amazon Web Services Lambda function layer.
|
|
700
700
|
* </p>
|
|
701
701
|
* @public
|
|
702
702
|
*/
|
|
703
|
-
layerArns?: StringFilter[];
|
|
703
|
+
layerArns?: StringFilter[] | undefined;
|
|
704
704
|
/**
|
|
705
705
|
* <p>The order to use for sorting the results.</p>
|
|
706
706
|
* @public
|
|
707
707
|
*/
|
|
708
|
-
sortOrder?: SortOrder;
|
|
708
|
+
sortOrder?: SortOrder | undefined;
|
|
709
709
|
/**
|
|
710
710
|
* <p>The finding severity to use for sorting the results.</p>
|
|
711
711
|
* @public
|
|
712
712
|
*/
|
|
713
|
-
sortBy?: LambdaLayerSortBy;
|
|
713
|
+
sortBy?: LambdaLayerSortBy | undefined;
|
|
714
714
|
}
|
|
715
715
|
/**
|
|
716
716
|
* @public
|
|
@@ -734,17 +734,17 @@ export interface PackageAggregation {
|
|
|
734
734
|
* <p>The names of packages to aggregate findings on.</p>
|
|
735
735
|
* @public
|
|
736
736
|
*/
|
|
737
|
-
packageNames?: StringFilter[];
|
|
737
|
+
packageNames?: StringFilter[] | undefined;
|
|
738
738
|
/**
|
|
739
739
|
* <p>The order to sort results by.</p>
|
|
740
740
|
* @public
|
|
741
741
|
*/
|
|
742
|
-
sortOrder?: SortOrder;
|
|
742
|
+
sortOrder?: SortOrder | undefined;
|
|
743
743
|
/**
|
|
744
744
|
* <p>The value to sort results by.</p>
|
|
745
745
|
* @public
|
|
746
746
|
*/
|
|
747
|
-
sortBy?: PackageSortBy;
|
|
747
|
+
sortBy?: PackageSortBy | undefined;
|
|
748
748
|
}
|
|
749
749
|
/**
|
|
750
750
|
* @public
|
|
@@ -769,17 +769,17 @@ export interface RepositoryAggregation {
|
|
|
769
769
|
* <p>The names of repositories to aggregate findings on.</p>
|
|
770
770
|
* @public
|
|
771
771
|
*/
|
|
772
|
-
repositories?: StringFilter[];
|
|
772
|
+
repositories?: StringFilter[] | undefined;
|
|
773
773
|
/**
|
|
774
774
|
* <p>The order to sort results by.</p>
|
|
775
775
|
* @public
|
|
776
776
|
*/
|
|
777
|
-
sortOrder?: SortOrder;
|
|
777
|
+
sortOrder?: SortOrder | undefined;
|
|
778
778
|
/**
|
|
779
779
|
* <p>The value to sort results by.</p>
|
|
780
780
|
* @public
|
|
781
781
|
*/
|
|
782
|
-
sortBy?: RepositorySortBy;
|
|
782
|
+
sortBy?: RepositorySortBy | undefined;
|
|
783
783
|
}
|
|
784
784
|
/**
|
|
785
785
|
* @public
|
|
@@ -803,32 +803,32 @@ export interface TitleAggregation {
|
|
|
803
803
|
* <p>The finding titles to aggregate on.</p>
|
|
804
804
|
* @public
|
|
805
805
|
*/
|
|
806
|
-
titles?: StringFilter[];
|
|
806
|
+
titles?: StringFilter[] | undefined;
|
|
807
807
|
/**
|
|
808
808
|
* <p>The vulnerability IDs of the findings.</p>
|
|
809
809
|
* @public
|
|
810
810
|
*/
|
|
811
|
-
vulnerabilityIds?: StringFilter[];
|
|
811
|
+
vulnerabilityIds?: StringFilter[] | undefined;
|
|
812
812
|
/**
|
|
813
813
|
* <p>The resource type to aggregate on.</p>
|
|
814
814
|
* @public
|
|
815
815
|
*/
|
|
816
|
-
resourceType?: AggregationResourceType;
|
|
816
|
+
resourceType?: AggregationResourceType | undefined;
|
|
817
817
|
/**
|
|
818
818
|
* <p>The order to sort results by.</p>
|
|
819
819
|
* @public
|
|
820
820
|
*/
|
|
821
|
-
sortOrder?: SortOrder;
|
|
821
|
+
sortOrder?: SortOrder | undefined;
|
|
822
822
|
/**
|
|
823
823
|
* <p>The value to sort results by.</p>
|
|
824
824
|
* @public
|
|
825
825
|
*/
|
|
826
|
-
sortBy?: TitleSortBy;
|
|
826
|
+
sortBy?: TitleSortBy | undefined;
|
|
827
827
|
/**
|
|
828
828
|
* <p>The type of finding to aggregate on.</p>
|
|
829
829
|
* @public
|
|
830
830
|
*/
|
|
831
|
-
findingType?: AggregationFindingType;
|
|
831
|
+
findingType?: AggregationFindingType | undefined;
|
|
832
832
|
}
|
|
833
833
|
/**
|
|
834
834
|
* <p>Contains details about an aggregation request.</p>
|
|
@@ -1090,17 +1090,17 @@ export interface AmiAggregationResponse {
|
|
|
1090
1090
|
* <p>The Amazon Web Services account ID for the AMI.</p>
|
|
1091
1091
|
* @public
|
|
1092
1092
|
*/
|
|
1093
|
-
accountId?: string;
|
|
1093
|
+
accountId?: string | undefined;
|
|
1094
1094
|
/**
|
|
1095
1095
|
* <p>An object that contains the count of matched findings per severity.</p>
|
|
1096
1096
|
* @public
|
|
1097
1097
|
*/
|
|
1098
|
-
severityCounts?: SeverityCounts;
|
|
1098
|
+
severityCounts?: SeverityCounts | undefined;
|
|
1099
1099
|
/**
|
|
1100
1100
|
* <p>The IDs of Amazon EC2 instances using this AMI.</p>
|
|
1101
1101
|
* @public
|
|
1102
1102
|
*/
|
|
1103
|
-
affectedInstances?: number;
|
|
1103
|
+
affectedInstances?: number | undefined;
|
|
1104
1104
|
}
|
|
1105
1105
|
/**
|
|
1106
1106
|
* <p>An aggregation of information about Amazon ECR containers.</p>
|
|
@@ -1116,32 +1116,32 @@ export interface AwsEcrContainerAggregationResponse {
|
|
|
1116
1116
|
* <p>The SHA value of the container image.</p>
|
|
1117
1117
|
* @public
|
|
1118
1118
|
*/
|
|
1119
|
-
imageSha?: string;
|
|
1119
|
+
imageSha?: string | undefined;
|
|
1120
1120
|
/**
|
|
1121
1121
|
* <p>The container repository.</p>
|
|
1122
1122
|
* @public
|
|
1123
1123
|
*/
|
|
1124
|
-
repository?: string;
|
|
1124
|
+
repository?: string | undefined;
|
|
1125
1125
|
/**
|
|
1126
1126
|
* <p>The architecture of the container.</p>
|
|
1127
1127
|
* @public
|
|
1128
1128
|
*/
|
|
1129
|
-
architecture?: string;
|
|
1129
|
+
architecture?: string | undefined;
|
|
1130
1130
|
/**
|
|
1131
1131
|
* <p>The container image stags.</p>
|
|
1132
1132
|
* @public
|
|
1133
1133
|
*/
|
|
1134
|
-
imageTags?: string[];
|
|
1134
|
+
imageTags?: string[] | undefined;
|
|
1135
1135
|
/**
|
|
1136
1136
|
* <p>The Amazon Web Services account ID of the account that owns the container.</p>
|
|
1137
1137
|
* @public
|
|
1138
1138
|
*/
|
|
1139
|
-
accountId?: string;
|
|
1139
|
+
accountId?: string | undefined;
|
|
1140
1140
|
/**
|
|
1141
1141
|
* <p>The number of finding by severity.</p>
|
|
1142
1142
|
* @public
|
|
1143
1143
|
*/
|
|
1144
|
-
severityCounts?: SeverityCounts;
|
|
1144
|
+
severityCounts?: SeverityCounts | undefined;
|
|
1145
1145
|
}
|
|
1146
1146
|
/**
|
|
1147
1147
|
* <p>A response that contains the results of a finding aggregation by Amazon EC2 instance.</p>
|
|
@@ -1157,32 +1157,32 @@ export interface Ec2InstanceAggregationResponse {
|
|
|
1157
1157
|
* <p>The Amazon Machine Image (AMI) of the Amazon EC2 instance.</p>
|
|
1158
1158
|
* @public
|
|
1159
1159
|
*/
|
|
1160
|
-
ami?: string;
|
|
1160
|
+
ami?: string | undefined;
|
|
1161
1161
|
/**
|
|
1162
1162
|
* <p>The operating system of the Amazon EC2 instance.</p>
|
|
1163
1163
|
* @public
|
|
1164
1164
|
*/
|
|
1165
|
-
operatingSystem?: string;
|
|
1165
|
+
operatingSystem?: string | undefined;
|
|
1166
1166
|
/**
|
|
1167
1167
|
* <p>The tags attached to the instance.</p>
|
|
1168
1168
|
* @public
|
|
1169
1169
|
*/
|
|
1170
|
-
instanceTags?: Record<string, string
|
|
1170
|
+
instanceTags?: Record<string, string> | undefined;
|
|
1171
1171
|
/**
|
|
1172
1172
|
* <p>The Amazon Web Services account for the Amazon EC2 instance.</p>
|
|
1173
1173
|
* @public
|
|
1174
1174
|
*/
|
|
1175
|
-
accountId?: string;
|
|
1175
|
+
accountId?: string | undefined;
|
|
1176
1176
|
/**
|
|
1177
1177
|
* <p>An object that contains the count of matched findings per severity.</p>
|
|
1178
1178
|
* @public
|
|
1179
1179
|
*/
|
|
1180
|
-
severityCounts?: SeverityCounts;
|
|
1180
|
+
severityCounts?: SeverityCounts | undefined;
|
|
1181
1181
|
/**
|
|
1182
1182
|
* <p>The number of network findings for the Amazon EC2 instance.</p>
|
|
1183
1183
|
* @public
|
|
1184
1184
|
*/
|
|
1185
|
-
networkFindings?: number;
|
|
1185
|
+
networkFindings?: number | undefined;
|
|
1186
1186
|
}
|
|
1187
1187
|
/**
|
|
1188
1188
|
* <p>A response that contains the results of a finding type aggregation.</p>
|
|
@@ -1193,24 +1193,24 @@ export interface FindingTypeAggregationResponse {
|
|
|
1193
1193
|
* <p>The ID of the Amazon Web Services account associated with the findings.</p>
|
|
1194
1194
|
* @public
|
|
1195
1195
|
*/
|
|
1196
|
-
accountId?: string;
|
|
1196
|
+
accountId?: string | undefined;
|
|
1197
1197
|
/**
|
|
1198
1198
|
* <p>The value to sort results by.</p>
|
|
1199
1199
|
* @public
|
|
1200
1200
|
*/
|
|
1201
|
-
severityCounts?: SeverityCounts;
|
|
1201
|
+
severityCounts?: SeverityCounts | undefined;
|
|
1202
1202
|
/**
|
|
1203
1203
|
* <p>The number of findings that have an exploit available.</p>
|
|
1204
1204
|
* @public
|
|
1205
1205
|
*/
|
|
1206
|
-
exploitAvailableCount?: number;
|
|
1206
|
+
exploitAvailableCount?: number | undefined;
|
|
1207
1207
|
/**
|
|
1208
1208
|
* <p>
|
|
1209
1209
|
* Details about the number of fixes.
|
|
1210
1210
|
* </p>
|
|
1211
1211
|
* @public
|
|
1212
1212
|
*/
|
|
1213
|
-
fixAvailableCount?: number;
|
|
1213
|
+
fixAvailableCount?: number | undefined;
|
|
1214
1214
|
}
|
|
1215
1215
|
/**
|
|
1216
1216
|
* <p>A response that contains the results of a finding aggregation by image layer.</p>
|
|
@@ -1241,7 +1241,7 @@ export interface ImageLayerAggregationResponse {
|
|
|
1241
1241
|
* <p>An object that represents the count of matched findings per severity.</p>
|
|
1242
1242
|
* @public
|
|
1243
1243
|
*/
|
|
1244
|
-
severityCounts?: SeverityCounts;
|
|
1244
|
+
severityCounts?: SeverityCounts | undefined;
|
|
1245
1245
|
}
|
|
1246
1246
|
/**
|
|
1247
1247
|
* <p>A response that contains the results of an Amazon Web Services Lambda function finding aggregation.</p>
|
|
@@ -1257,33 +1257,33 @@ export interface LambdaFunctionAggregationResponse {
|
|
|
1257
1257
|
* <p>The Amazon Web Services Lambda function names included in the aggregation results.</p>
|
|
1258
1258
|
* @public
|
|
1259
1259
|
*/
|
|
1260
|
-
functionName?: string;
|
|
1260
|
+
functionName?: string | undefined;
|
|
1261
1261
|
/**
|
|
1262
1262
|
* <p>The runtimes included in the aggregation results.</p>
|
|
1263
1263
|
* @public
|
|
1264
1264
|
*/
|
|
1265
|
-
runtime?: string;
|
|
1265
|
+
runtime?: string | undefined;
|
|
1266
1266
|
/**
|
|
1267
1267
|
* <p>The tags included in the aggregation results.</p>
|
|
1268
1268
|
* @public
|
|
1269
1269
|
*/
|
|
1270
|
-
lambdaTags?: Record<string, string
|
|
1270
|
+
lambdaTags?: Record<string, string> | undefined;
|
|
1271
1271
|
/**
|
|
1272
1272
|
* <p>The ID of the Amazon Web Services account that owns the Amazon Web Services Lambda function.
|
|
1273
1273
|
* </p>
|
|
1274
1274
|
* @public
|
|
1275
1275
|
*/
|
|
1276
|
-
accountId?: string;
|
|
1276
|
+
accountId?: string | undefined;
|
|
1277
1277
|
/**
|
|
1278
1278
|
* <p>An object that contains the counts of aggregated finding per severity.</p>
|
|
1279
1279
|
* @public
|
|
1280
1280
|
*/
|
|
1281
|
-
severityCounts?: SeverityCounts;
|
|
1281
|
+
severityCounts?: SeverityCounts | undefined;
|
|
1282
1282
|
/**
|
|
1283
1283
|
* <p>The date that the Amazon Web Services Lambda function included in the aggregation results was last changed.</p>
|
|
1284
1284
|
* @public
|
|
1285
1285
|
*/
|
|
1286
|
-
lastModifiedAt?: Date;
|
|
1286
|
+
lastModifiedAt?: Date | undefined;
|
|
1287
1287
|
}
|
|
1288
1288
|
/**
|
|
1289
1289
|
* <p>A response that contains the results of an Amazon Web Services Lambda function layer finding aggregation.</p>
|
|
@@ -1314,7 +1314,7 @@ export interface LambdaLayerAggregationResponse {
|
|
|
1314
1314
|
* <p>An object that contains the counts of aggregated finding per severity.</p>
|
|
1315
1315
|
* @public
|
|
1316
1316
|
*/
|
|
1317
|
-
severityCounts?: SeverityCounts;
|
|
1317
|
+
severityCounts?: SeverityCounts | undefined;
|
|
1318
1318
|
}
|
|
1319
1319
|
/**
|
|
1320
1320
|
* <p>A response that contains the results of a finding aggregation by image layer.</p>
|
|
@@ -1330,12 +1330,12 @@ export interface PackageAggregationResponse {
|
|
|
1330
1330
|
* <p>The ID of the Amazon Web Services account associated with the findings.</p>
|
|
1331
1331
|
* @public
|
|
1332
1332
|
*/
|
|
1333
|
-
accountId?: string;
|
|
1333
|
+
accountId?: string | undefined;
|
|
1334
1334
|
/**
|
|
1335
1335
|
* <p>An object that contains the count of matched findings per severity.</p>
|
|
1336
1336
|
* @public
|
|
1337
1337
|
*/
|
|
1338
|
-
severityCounts?: SeverityCounts;
|
|
1338
|
+
severityCounts?: SeverityCounts | undefined;
|
|
1339
1339
|
}
|
|
1340
1340
|
/**
|
|
1341
1341
|
* <p>A response that contains details on the results of a finding aggregation by repository.</p>
|
|
@@ -1351,17 +1351,17 @@ export interface RepositoryAggregationResponse {
|
|
|
1351
1351
|
* <p>The ID of the Amazon Web Services account associated with the findings.</p>
|
|
1352
1352
|
* @public
|
|
1353
1353
|
*/
|
|
1354
|
-
accountId?: string;
|
|
1354
|
+
accountId?: string | undefined;
|
|
1355
1355
|
/**
|
|
1356
1356
|
* <p>An object that represent the count of matched findings per severity.</p>
|
|
1357
1357
|
* @public
|
|
1358
1358
|
*/
|
|
1359
|
-
severityCounts?: SeverityCounts;
|
|
1359
|
+
severityCounts?: SeverityCounts | undefined;
|
|
1360
1360
|
/**
|
|
1361
1361
|
* <p>The number of container images impacted by the findings.</p>
|
|
1362
1362
|
* @public
|
|
1363
1363
|
*/
|
|
1364
|
-
affectedImages?: number;
|
|
1364
|
+
affectedImages?: number | undefined;
|
|
1365
1365
|
}
|
|
1366
1366
|
/**
|
|
1367
1367
|
* <p>A response that contains details on the results of a finding aggregation by title.</p>
|
|
@@ -1377,17 +1377,17 @@ export interface TitleAggregationResponse {
|
|
|
1377
1377
|
* <p>The vulnerability ID of the finding.</p>
|
|
1378
1378
|
* @public
|
|
1379
1379
|
*/
|
|
1380
|
-
vulnerabilityId?: string;
|
|
1380
|
+
vulnerabilityId?: string | undefined;
|
|
1381
1381
|
/**
|
|
1382
1382
|
* <p>The ID of the Amazon Web Services account associated with the findings.</p>
|
|
1383
1383
|
* @public
|
|
1384
1384
|
*/
|
|
1385
|
-
accountId?: string;
|
|
1385
|
+
accountId?: string | undefined;
|
|
1386
1386
|
/**
|
|
1387
1387
|
* <p>An object that represent the count of matched findings per severity.</p>
|
|
1388
1388
|
* @public
|
|
1389
1389
|
*/
|
|
1390
|
-
severityCounts?: SeverityCounts;
|
|
1390
|
+
severityCounts?: SeverityCounts | undefined;
|
|
1391
1391
|
}
|
|
1392
1392
|
/**
|
|
1393
1393
|
* <p>A structure that contains details about the results of an aggregation type.</p>
|
|
@@ -1701,7 +1701,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
1701
1701
|
* <p>The number of seconds to wait before retrying the request.</p>
|
|
1702
1702
|
* @public
|
|
1703
1703
|
*/
|
|
1704
|
-
retryAfterSeconds?: number;
|
|
1704
|
+
retryAfterSeconds?: number | undefined;
|
|
1705
1705
|
/**
|
|
1706
1706
|
* @internal
|
|
1707
1707
|
*/
|
|
@@ -1721,7 +1721,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
1721
1721
|
* <p>The number of seconds to wait before retrying the request.</p>
|
|
1722
1722
|
* @public
|
|
1723
1723
|
*/
|
|
1724
|
-
retryAfterSeconds?: number;
|
|
1724
|
+
retryAfterSeconds?: number | undefined;
|
|
1725
1725
|
/**
|
|
1726
1726
|
* @internal
|
|
1727
1727
|
*/
|
|
@@ -1773,7 +1773,7 @@ export declare class ValidationException extends __BaseException {
|
|
|
1773
1773
|
* <p>The fields that failed validation.</p>
|
|
1774
1774
|
* @public
|
|
1775
1775
|
*/
|
|
1776
|
-
fields?: ValidationExceptionField[];
|
|
1776
|
+
fields?: ValidationExceptionField[] | undefined;
|
|
1777
1777
|
/**
|
|
1778
1778
|
* @internal
|
|
1779
1779
|
*/
|
|
@@ -1788,22 +1788,22 @@ export interface AtigData {
|
|
|
1788
1788
|
* <p>The date and time this vulnerability was first observed.</p>
|
|
1789
1789
|
* @public
|
|
1790
1790
|
*/
|
|
1791
|
-
firstSeen?: Date;
|
|
1791
|
+
firstSeen?: Date | undefined;
|
|
1792
1792
|
/**
|
|
1793
1793
|
* <p>The date and time this vulnerability was last observed.</p>
|
|
1794
1794
|
* @public
|
|
1795
1795
|
*/
|
|
1796
|
-
lastSeen?: Date;
|
|
1796
|
+
lastSeen?: Date | undefined;
|
|
1797
1797
|
/**
|
|
1798
1798
|
* <p>The commercial sectors this vulnerability targets.</p>
|
|
1799
1799
|
* @public
|
|
1800
1800
|
*/
|
|
1801
|
-
targets?: string[];
|
|
1801
|
+
targets?: string[] | undefined;
|
|
1802
1802
|
/**
|
|
1803
1803
|
* <p>The <a href="https://attack.mitre.org/">MITRE ATT&CK</a> tactics, techniques, and procedures (TTPs) associated with vulnerability.</p>
|
|
1804
1804
|
* @public
|
|
1805
1805
|
*/
|
|
1806
|
-
ttps?: string[];
|
|
1806
|
+
ttps?: string[] | undefined;
|
|
1807
1807
|
}
|
|
1808
1808
|
/**
|
|
1809
1809
|
* <p>Represents which scan types are automatically enabled for new members of your Amazon Inspector organization.</p>
|
|
@@ -1827,14 +1827,14 @@ export interface AutoEnable {
|
|
|
1827
1827
|
* </p>
|
|
1828
1828
|
* @public
|
|
1829
1829
|
*/
|
|
1830
|
-
lambda?: boolean;
|
|
1830
|
+
lambda?: boolean | undefined;
|
|
1831
1831
|
/**
|
|
1832
1832
|
* <p>Represents whether Lambda code scans are automatically enabled for new members of your Amazon Inspector organization.
|
|
1833
1833
|
*
|
|
1834
1834
|
* </p>
|
|
1835
1835
|
* @public
|
|
1836
1836
|
*/
|
|
1837
|
-
lambdaCode?: boolean;
|
|
1837
|
+
lambdaCode?: boolean | undefined;
|
|
1838
1838
|
}
|
|
1839
1839
|
/**
|
|
1840
1840
|
* <p>Details of the Amazon EC2 instance involved in a finding.</p>
|
|
@@ -1845,52 +1845,52 @@ export interface AwsEc2InstanceDetails {
|
|
|
1845
1845
|
* <p>The type of the Amazon EC2 instance.</p>
|
|
1846
1846
|
* @public
|
|
1847
1847
|
*/
|
|
1848
|
-
type?: string;
|
|
1848
|
+
type?: string | undefined;
|
|
1849
1849
|
/**
|
|
1850
1850
|
* <p>The image ID of the Amazon EC2 instance.</p>
|
|
1851
1851
|
* @public
|
|
1852
1852
|
*/
|
|
1853
|
-
imageId?: string;
|
|
1853
|
+
imageId?: string | undefined;
|
|
1854
1854
|
/**
|
|
1855
1855
|
* <p>The IPv4 addresses of the Amazon EC2 instance.</p>
|
|
1856
1856
|
* @public
|
|
1857
1857
|
*/
|
|
1858
|
-
ipV4Addresses?: string[];
|
|
1858
|
+
ipV4Addresses?: string[] | undefined;
|
|
1859
1859
|
/**
|
|
1860
1860
|
* <p>The IPv6 addresses of the Amazon EC2 instance.</p>
|
|
1861
1861
|
* @public
|
|
1862
1862
|
*/
|
|
1863
|
-
ipV6Addresses?: string[];
|
|
1863
|
+
ipV6Addresses?: string[] | undefined;
|
|
1864
1864
|
/**
|
|
1865
1865
|
* <p>The name of the key pair used to launch the Amazon EC2 instance.</p>
|
|
1866
1866
|
* @public
|
|
1867
1867
|
*/
|
|
1868
|
-
keyName?: string;
|
|
1868
|
+
keyName?: string | undefined;
|
|
1869
1869
|
/**
|
|
1870
1870
|
* <p>The IAM instance profile ARN of the Amazon EC2 instance.</p>
|
|
1871
1871
|
* @public
|
|
1872
1872
|
*/
|
|
1873
|
-
iamInstanceProfileArn?: string;
|
|
1873
|
+
iamInstanceProfileArn?: string | undefined;
|
|
1874
1874
|
/**
|
|
1875
1875
|
* <p>The VPC ID of the Amazon EC2 instance.</p>
|
|
1876
1876
|
* @public
|
|
1877
1877
|
*/
|
|
1878
|
-
vpcId?: string;
|
|
1878
|
+
vpcId?: string | undefined;
|
|
1879
1879
|
/**
|
|
1880
1880
|
* <p>The subnet ID of the Amazon EC2 instance.</p>
|
|
1881
1881
|
* @public
|
|
1882
1882
|
*/
|
|
1883
|
-
subnetId?: string;
|
|
1883
|
+
subnetId?: string | undefined;
|
|
1884
1884
|
/**
|
|
1885
1885
|
* <p>The date and time the Amazon EC2 instance was launched at.</p>
|
|
1886
1886
|
* @public
|
|
1887
1887
|
*/
|
|
1888
|
-
launchedAt?: Date;
|
|
1888
|
+
launchedAt?: Date | undefined;
|
|
1889
1889
|
/**
|
|
1890
1890
|
* <p>The platform of the Amazon EC2 instance.</p>
|
|
1891
1891
|
* @public
|
|
1892
1892
|
*/
|
|
1893
|
-
platform?: string;
|
|
1893
|
+
platform?: string | undefined;
|
|
1894
1894
|
}
|
|
1895
1895
|
/**
|
|
1896
1896
|
* <p>The image details of the Amazon ECR container image.</p>
|
|
@@ -1906,22 +1906,22 @@ export interface AwsEcrContainerImageDetails {
|
|
|
1906
1906
|
* <p>The image tags attached to the Amazon ECR container image.</p>
|
|
1907
1907
|
* @public
|
|
1908
1908
|
*/
|
|
1909
|
-
imageTags?: string[];
|
|
1909
|
+
imageTags?: string[] | undefined;
|
|
1910
1910
|
/**
|
|
1911
1911
|
* <p>The date and time the Amazon ECR container image was pushed.</p>
|
|
1912
1912
|
* @public
|
|
1913
1913
|
*/
|
|
1914
|
-
pushedAt?: Date;
|
|
1914
|
+
pushedAt?: Date | undefined;
|
|
1915
1915
|
/**
|
|
1916
1916
|
* <p>The image author of the Amazon ECR container image.</p>
|
|
1917
1917
|
* @public
|
|
1918
1918
|
*/
|
|
1919
|
-
author?: string;
|
|
1919
|
+
author?: string | undefined;
|
|
1920
1920
|
/**
|
|
1921
1921
|
* <p>The architecture of the Amazon ECR container image.</p>
|
|
1922
1922
|
* @public
|
|
1923
1923
|
*/
|
|
1924
|
-
architecture?: string;
|
|
1924
|
+
architecture?: string | undefined;
|
|
1925
1925
|
/**
|
|
1926
1926
|
* <p>The image hash of the Amazon ECR container image.</p>
|
|
1927
1927
|
* @public
|
|
@@ -1936,7 +1936,7 @@ export interface AwsEcrContainerImageDetails {
|
|
|
1936
1936
|
* <p>The platform of the Amazon ECR container image.</p>
|
|
1937
1937
|
* @public
|
|
1938
1938
|
*/
|
|
1939
|
-
platform?: string;
|
|
1939
|
+
platform?: string | undefined;
|
|
1940
1940
|
}
|
|
1941
1941
|
/**
|
|
1942
1942
|
* @public
|
|
@@ -1990,17 +1990,17 @@ export interface LambdaVpcConfig {
|
|
|
1990
1990
|
* <p>A list of VPC subnet IDs.</p>
|
|
1991
1991
|
* @public
|
|
1992
1992
|
*/
|
|
1993
|
-
subnetIds?: string[];
|
|
1993
|
+
subnetIds?: string[] | undefined;
|
|
1994
1994
|
/**
|
|
1995
1995
|
* <p>The VPC security groups and subnets that are attached to an Amazon Web Services Lambda function. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-vpc.html">VPC Settings</a>.</p>
|
|
1996
1996
|
* @public
|
|
1997
1997
|
*/
|
|
1998
|
-
securityGroupIds?: string[];
|
|
1998
|
+
securityGroupIds?: string[] | undefined;
|
|
1999
1999
|
/**
|
|
2000
2000
|
* <p>The ID of the VPC.</p>
|
|
2001
2001
|
* @public
|
|
2002
2002
|
*/
|
|
2003
|
-
vpcId?: string;
|
|
2003
|
+
vpcId?: string | undefined;
|
|
2004
2004
|
}
|
|
2005
2005
|
/**
|
|
2006
2006
|
* <p> A summary of information about the Amazon Web Services Lambda function.</p>
|
|
@@ -2037,29 +2037,29 @@ export interface AwsLambdaFunctionDetails {
|
|
|
2037
2037
|
* layers</a>. A Lambda function can have up to five layers.</p>
|
|
2038
2038
|
* @public
|
|
2039
2039
|
*/
|
|
2040
|
-
layers?: string[];
|
|
2040
|
+
layers?: string[] | undefined;
|
|
2041
2041
|
/**
|
|
2042
2042
|
* <p>The Amazon Web Services Lambda function's networking configuration.</p>
|
|
2043
2043
|
* @public
|
|
2044
2044
|
*/
|
|
2045
|
-
vpcConfig?: LambdaVpcConfig;
|
|
2045
|
+
vpcConfig?: LambdaVpcConfig | undefined;
|
|
2046
2046
|
/**
|
|
2047
2047
|
* <p>The type of deployment package. Set to <code>Image</code> for container image and set <code>Zip</code> for .zip file archive.</p>
|
|
2048
2048
|
* @public
|
|
2049
2049
|
*/
|
|
2050
|
-
packageType?: PackageType;
|
|
2050
|
+
packageType?: PackageType | undefined;
|
|
2051
2051
|
/**
|
|
2052
2052
|
* <p>The instruction set architecture that the Amazon Web Services Lambda function supports. Architecture is a string array with one of the
|
|
2053
2053
|
* valid values. The default architecture value is <code>x86_64</code>.</p>
|
|
2054
2054
|
* @public
|
|
2055
2055
|
*/
|
|
2056
|
-
architectures?: Architecture[];
|
|
2056
|
+
architectures?: Architecture[] | undefined;
|
|
2057
2057
|
/**
|
|
2058
2058
|
* <p>The date and time that a user last updated the configuration, in <a href="https://www.iso.org/iso-8601-date-and-time-format.html">ISO 8601 format</a>
|
|
2059
2059
|
* </p>
|
|
2060
2060
|
* @public
|
|
2061
2061
|
*/
|
|
2062
|
-
lastModifiedAt?: Date;
|
|
2062
|
+
lastModifiedAt?: Date | undefined;
|
|
2063
2063
|
}
|
|
2064
2064
|
/**
|
|
2065
2065
|
* <p>One or more tags submitted as part of the request is not valid.</p>
|
|
@@ -2081,7 +2081,7 @@ export interface BatchGetAccountStatusRequest {
|
|
|
2081
2081
|
* <p>The 12-digit Amazon Web Services account IDs of the accounts to retrieve Amazon Inspector status for.</p>
|
|
2082
2082
|
* @public
|
|
2083
2083
|
*/
|
|
2084
|
-
accountIds?: string[];
|
|
2084
|
+
accountIds?: string[] | undefined;
|
|
2085
2085
|
}
|
|
2086
2086
|
/**
|
|
2087
2087
|
* <p>An object with details on why an account failed to enable Amazon Inspector.</p>
|
|
@@ -2097,12 +2097,12 @@ export interface FailedAccount {
|
|
|
2097
2097
|
* <p>The status of Amazon Inspector for the account.</p>
|
|
2098
2098
|
* @public
|
|
2099
2099
|
*/
|
|
2100
|
-
status?: Status;
|
|
2100
|
+
status?: Status | undefined;
|
|
2101
2101
|
/**
|
|
2102
2102
|
* <p>An object detailing which resources Amazon Inspector is enabled to scan for the account.</p>
|
|
2103
2103
|
* @public
|
|
2104
2104
|
*/
|
|
2105
|
-
resourceStatus?: ResourceStatus;
|
|
2105
|
+
resourceStatus?: ResourceStatus | undefined;
|
|
2106
2106
|
/**
|
|
2107
2107
|
* <p>The error code explaining why the account failed to enable Amazon Inspector.</p>
|
|
2108
2108
|
* @public
|
|
@@ -2127,7 +2127,7 @@ export interface BatchGetAccountStatusResponse {
|
|
|
2127
2127
|
* <p>An array of objects detailing any accounts that failed to enable Amazon Inspector and why.</p>
|
|
2128
2128
|
* @public
|
|
2129
2129
|
*/
|
|
2130
|
-
failedAccounts?: FailedAccount[];
|
|
2130
|
+
failedAccounts?: FailedAccount[] | undefined;
|
|
2131
2131
|
}
|
|
2132
2132
|
/**
|
|
2133
2133
|
* <p>The operation tried to access an invalid resource. Make sure the resource is specified correctly.</p>
|
|
@@ -2176,12 +2176,12 @@ export interface SuggestedFix {
|
|
|
2176
2176
|
* <p>The fix's description.</p>
|
|
2177
2177
|
* @public
|
|
2178
2178
|
*/
|
|
2179
|
-
description?: string;
|
|
2179
|
+
description?: string | undefined;
|
|
2180
2180
|
/**
|
|
2181
2181
|
* <p>The fix's code.</p>
|
|
2182
2182
|
* @public
|
|
2183
2183
|
*/
|
|
2184
|
-
code?: string;
|
|
2184
|
+
code?: string | undefined;
|
|
2185
2185
|
}
|
|
2186
2186
|
/**
|
|
2187
2187
|
* <p>Contains information on a code snippet retrieved by Amazon Inspector from a code vulnerability finding.</p>
|
|
@@ -2192,27 +2192,27 @@ export interface CodeSnippetResult {
|
|
|
2192
2192
|
* <p>The ARN of a finding that the code snippet is associated with.</p>
|
|
2193
2193
|
* @public
|
|
2194
2194
|
*/
|
|
2195
|
-
findingArn?: string;
|
|
2195
|
+
findingArn?: string | undefined;
|
|
2196
2196
|
/**
|
|
2197
2197
|
* <p>The line number of the first line of a code snippet.</p>
|
|
2198
2198
|
* @public
|
|
2199
2199
|
*/
|
|
2200
|
-
startLine?: number;
|
|
2200
|
+
startLine?: number | undefined;
|
|
2201
2201
|
/**
|
|
2202
2202
|
* <p>The line number of the last line of a code snippet.</p>
|
|
2203
2203
|
* @public
|
|
2204
2204
|
*/
|
|
2205
|
-
endLine?: number;
|
|
2205
|
+
endLine?: number | undefined;
|
|
2206
2206
|
/**
|
|
2207
2207
|
* <p>Contains information on the retrieved code snippet.</p>
|
|
2208
2208
|
* @public
|
|
2209
2209
|
*/
|
|
2210
|
-
codeSnippet?: CodeLine[];
|
|
2210
|
+
codeSnippet?: CodeLine[] | undefined;
|
|
2211
2211
|
/**
|
|
2212
2212
|
* <p>Details of a suggested code fix.</p>
|
|
2213
2213
|
* @public
|
|
2214
2214
|
*/
|
|
2215
|
-
suggestedFixes?: SuggestedFix[];
|
|
2215
|
+
suggestedFixes?: SuggestedFix[] | undefined;
|
|
2216
2216
|
}
|
|
2217
2217
|
/**
|
|
2218
2218
|
* @public
|
|
@@ -2257,12 +2257,12 @@ export interface BatchGetCodeSnippetResponse {
|
|
|
2257
2257
|
* <p>The retrieved code snippets associated with the provided finding ARNs.</p>
|
|
2258
2258
|
* @public
|
|
2259
2259
|
*/
|
|
2260
|
-
codeSnippetResults?: CodeSnippetResult[];
|
|
2260
|
+
codeSnippetResults?: CodeSnippetResult[] | undefined;
|
|
2261
2261
|
/**
|
|
2262
2262
|
* <p>Any errors Amazon Inspector encountered while trying to retrieve the requested code snippets.</p>
|
|
2263
2263
|
* @public
|
|
2264
2264
|
*/
|
|
2265
|
-
errors?: CodeSnippetError[];
|
|
2265
|
+
errors?: CodeSnippetError[] | undefined;
|
|
2266
2266
|
}
|
|
2267
2267
|
/**
|
|
2268
2268
|
* @public
|
|
@@ -2318,17 +2318,17 @@ export interface CisaData {
|
|
|
2318
2318
|
* <p>The date and time CISA added this vulnerability to their catalogue.</p>
|
|
2319
2319
|
* @public
|
|
2320
2320
|
*/
|
|
2321
|
-
dateAdded?: Date;
|
|
2321
|
+
dateAdded?: Date | undefined;
|
|
2322
2322
|
/**
|
|
2323
2323
|
* <p>The date and time CISA expects a fix to have been provided vulnerability.</p>
|
|
2324
2324
|
* @public
|
|
2325
2325
|
*/
|
|
2326
|
-
dateDue?: Date;
|
|
2326
|
+
dateDue?: Date | undefined;
|
|
2327
2327
|
/**
|
|
2328
2328
|
* <p>The remediation action recommended by CISA for this vulnerability.</p>
|
|
2329
2329
|
* @public
|
|
2330
2330
|
*/
|
|
2331
|
-
action?: string;
|
|
2331
|
+
action?: string | undefined;
|
|
2332
2332
|
}
|
|
2333
2333
|
/**
|
|
2334
2334
|
* <p>Details of the evidence for a vulnerability identified in a finding.</p>
|
|
@@ -2339,17 +2339,17 @@ export interface Evidence {
|
|
|
2339
2339
|
* <p>The evidence rule.</p>
|
|
2340
2340
|
* @public
|
|
2341
2341
|
*/
|
|
2342
|
-
evidenceRule?: string;
|
|
2342
|
+
evidenceRule?: string | undefined;
|
|
2343
2343
|
/**
|
|
2344
2344
|
* <p>The evidence details.</p>
|
|
2345
2345
|
* @public
|
|
2346
2346
|
*/
|
|
2347
|
-
evidenceDetail?: string;
|
|
2347
|
+
evidenceDetail?: string | undefined;
|
|
2348
2348
|
/**
|
|
2349
2349
|
* <p>The evidence severity.</p>
|
|
2350
2350
|
* @public
|
|
2351
2351
|
*/
|
|
2352
|
-
severity?: string;
|
|
2352
|
+
severity?: string | undefined;
|
|
2353
2353
|
}
|
|
2354
2354
|
/**
|
|
2355
2355
|
* <p>Contains information on when this exploit was observed.</p>
|
|
@@ -2360,12 +2360,12 @@ export interface ExploitObserved {
|
|
|
2360
2360
|
* <p>The date an time when the exploit was last seen.</p>
|
|
2361
2361
|
* @public
|
|
2362
2362
|
*/
|
|
2363
|
-
lastSeen?: Date;
|
|
2363
|
+
lastSeen?: Date | undefined;
|
|
2364
2364
|
/**
|
|
2365
2365
|
* <p>The date an time when the exploit was first seen.</p>
|
|
2366
2366
|
* @public
|
|
2367
2367
|
*/
|
|
2368
|
-
firstSeen?: Date;
|
|
2368
|
+
firstSeen?: Date | undefined;
|
|
2369
2369
|
}
|
|
2370
2370
|
/**
|
|
2371
2371
|
* <p>Details of the vulnerability identified in a finding.</p>
|
|
@@ -2376,52 +2376,52 @@ export interface FindingDetail {
|
|
|
2376
2376
|
* <p>The finding ARN that the vulnerability details are associated with.</p>
|
|
2377
2377
|
* @public
|
|
2378
2378
|
*/
|
|
2379
|
-
findingArn?: string;
|
|
2379
|
+
findingArn?: string | undefined;
|
|
2380
2380
|
/**
|
|
2381
2381
|
* <p>The Cybersecurity and Infrastructure Security Agency (CISA) details for a specific vulnerability.</p>
|
|
2382
2382
|
* @public
|
|
2383
2383
|
*/
|
|
2384
|
-
cisaData?: CisaData;
|
|
2384
|
+
cisaData?: CisaData | undefined;
|
|
2385
2385
|
/**
|
|
2386
2386
|
* <p>The risk score of the vulnerability.</p>
|
|
2387
2387
|
* @public
|
|
2388
2388
|
*/
|
|
2389
|
-
riskScore?: number;
|
|
2389
|
+
riskScore?: number | undefined;
|
|
2390
2390
|
/**
|
|
2391
2391
|
* <p>Information on the evidence of the vulnerability.</p>
|
|
2392
2392
|
* @public
|
|
2393
2393
|
*/
|
|
2394
|
-
evidences?: Evidence[];
|
|
2394
|
+
evidences?: Evidence[] | undefined;
|
|
2395
2395
|
/**
|
|
2396
2396
|
* <p>The MITRE adversary tactics, techniques, or procedures (TTPs) associated with the vulnerability.</p>
|
|
2397
2397
|
* @public
|
|
2398
2398
|
*/
|
|
2399
|
-
ttps?: string[];
|
|
2399
|
+
ttps?: string[] | undefined;
|
|
2400
2400
|
/**
|
|
2401
2401
|
* <p>The known malware tools or kits that can exploit the vulnerability.</p>
|
|
2402
2402
|
* @public
|
|
2403
2403
|
*/
|
|
2404
|
-
tools?: string[];
|
|
2404
|
+
tools?: string[] | undefined;
|
|
2405
2405
|
/**
|
|
2406
2406
|
* <p>Contains information on when this exploit was observed.</p>
|
|
2407
2407
|
* @public
|
|
2408
2408
|
*/
|
|
2409
|
-
exploitObserved?: ExploitObserved;
|
|
2409
|
+
exploitObserved?: ExploitObserved | undefined;
|
|
2410
2410
|
/**
|
|
2411
2411
|
* <p>The reference URLs for the vulnerability data.</p>
|
|
2412
2412
|
* @public
|
|
2413
2413
|
*/
|
|
2414
|
-
referenceUrls?: string[];
|
|
2414
|
+
referenceUrls?: string[] | undefined;
|
|
2415
2415
|
/**
|
|
2416
2416
|
* <p>The Common Weakness Enumerations (CWEs) associated with the vulnerability.</p>
|
|
2417
2417
|
* @public
|
|
2418
2418
|
*/
|
|
2419
|
-
cwes?: string[];
|
|
2419
|
+
cwes?: string[] | undefined;
|
|
2420
2420
|
/**
|
|
2421
2421
|
* <p>The Exploit Prediction Scoring System (EPSS) score of the vulnerability.</p>
|
|
2422
2422
|
* @public
|
|
2423
2423
|
*/
|
|
2424
|
-
epssScore?: number;
|
|
2424
|
+
epssScore?: number | undefined;
|
|
2425
2425
|
}
|
|
2426
2426
|
/**
|
|
2427
2427
|
* @public
|
|
@@ -2431,12 +2431,12 @@ export interface BatchGetFindingDetailsResponse {
|
|
|
2431
2431
|
* <p>A finding's vulnerability details.</p>
|
|
2432
2432
|
* @public
|
|
2433
2433
|
*/
|
|
2434
|
-
findingDetails?: FindingDetail[];
|
|
2434
|
+
findingDetails?: FindingDetail[] | undefined;
|
|
2435
2435
|
/**
|
|
2436
2436
|
* <p>Error information for findings that details could not be returned for.</p>
|
|
2437
2437
|
* @public
|
|
2438
2438
|
*/
|
|
2439
|
-
errors?: FindingDetailsError[];
|
|
2439
|
+
errors?: FindingDetailsError[] | undefined;
|
|
2440
2440
|
}
|
|
2441
2441
|
/**
|
|
2442
2442
|
* @public
|
|
@@ -2575,7 +2575,7 @@ export interface BatchGetMemberEc2DeepInspectionStatusRequest {
|
|
|
2575
2575
|
* </p>
|
|
2576
2576
|
* @public
|
|
2577
2577
|
*/
|
|
2578
|
-
accountIds?: string[];
|
|
2578
|
+
accountIds?: string[] | undefined;
|
|
2579
2579
|
}
|
|
2580
2580
|
/**
|
|
2581
2581
|
* @public
|
|
@@ -2605,12 +2605,12 @@ export interface MemberAccountEc2DeepInspectionStatusState {
|
|
|
2605
2605
|
* <p>The state of Amazon Inspector deep inspection in the member account.</p>
|
|
2606
2606
|
* @public
|
|
2607
2607
|
*/
|
|
2608
|
-
status?: Ec2DeepInspectionStatus;
|
|
2608
|
+
status?: Ec2DeepInspectionStatus | undefined;
|
|
2609
2609
|
/**
|
|
2610
2610
|
* <p>The error message explaining why the account failed to activate Amazon Inspector deep inspection.</p>
|
|
2611
2611
|
* @public
|
|
2612
2612
|
*/
|
|
2613
|
-
errorMessage?: string;
|
|
2613
|
+
errorMessage?: string | undefined;
|
|
2614
2614
|
}
|
|
2615
2615
|
/**
|
|
2616
2616
|
* <p>An object that contains details about a member account in your organization that failed to activate Amazon Inspector deep inspection.</p>
|
|
@@ -2626,12 +2626,12 @@ export interface FailedMemberAccountEc2DeepInspectionStatusState {
|
|
|
2626
2626
|
* <p>The status of EC2 scanning in the account that failed to activate Amazon Inspector deep inspection.</p>
|
|
2627
2627
|
* @public
|
|
2628
2628
|
*/
|
|
2629
|
-
ec2ScanStatus?: Status;
|
|
2629
|
+
ec2ScanStatus?: Status | undefined;
|
|
2630
2630
|
/**
|
|
2631
2631
|
* <p>The error message explaining why the account failed to activate Amazon Inspector deep inspection.</p>
|
|
2632
2632
|
* @public
|
|
2633
2633
|
*/
|
|
2634
|
-
errorMessage?: string;
|
|
2634
|
+
errorMessage?: string | undefined;
|
|
2635
2635
|
}
|
|
2636
2636
|
/**
|
|
2637
2637
|
* @public
|
|
@@ -2643,14 +2643,14 @@ export interface BatchGetMemberEc2DeepInspectionStatusResponse {
|
|
|
2643
2643
|
* </p>
|
|
2644
2644
|
* @public
|
|
2645
2645
|
*/
|
|
2646
|
-
accountIds?: MemberAccountEc2DeepInspectionStatusState[];
|
|
2646
|
+
accountIds?: MemberAccountEc2DeepInspectionStatusState[] | undefined;
|
|
2647
2647
|
/**
|
|
2648
2648
|
* <p>An array of objects that provide details on any accounts that failed to activate Amazon Inspector deep inspection and why.
|
|
2649
2649
|
*
|
|
2650
2650
|
* </p>
|
|
2651
2651
|
* @public
|
|
2652
2652
|
*/
|
|
2653
|
-
failedAccountIds?: FailedMemberAccountEc2DeepInspectionStatusState[];
|
|
2653
|
+
failedAccountIds?: FailedMemberAccountEc2DeepInspectionStatusState[] | undefined;
|
|
2654
2654
|
}
|
|
2655
2655
|
/**
|
|
2656
2656
|
* <p>An object that contains details about the status of Amazon Inspector deep inspection for a member account in your organization.</p>
|
|
@@ -2687,13 +2687,13 @@ export interface BatchUpdateMemberEc2DeepInspectionStatusResponse {
|
|
|
2687
2687
|
* </p>
|
|
2688
2688
|
* @public
|
|
2689
2689
|
*/
|
|
2690
|
-
accountIds?: MemberAccountEc2DeepInspectionStatusState[];
|
|
2690
|
+
accountIds?: MemberAccountEc2DeepInspectionStatusState[] | undefined;
|
|
2691
2691
|
/**
|
|
2692
2692
|
* <p>An array of objects that provide details for each of the accounts that Amazon Inspector deep inspection status could not be successfully changed for.
|
|
2693
2693
|
* </p>
|
|
2694
2694
|
* @public
|
|
2695
2695
|
*/
|
|
2696
|
-
failedAccountIds?: FailedMemberAccountEc2DeepInspectionStatusState[];
|
|
2696
|
+
failedAccountIds?: FailedMemberAccountEc2DeepInspectionStatusState[] | undefined;
|
|
2697
2697
|
}
|
|
2698
2698
|
/**
|
|
2699
2699
|
* @public
|
|
@@ -2733,7 +2733,7 @@ export interface CancelSbomExportResponse {
|
|
|
2733
2733
|
* <p>The report ID of the canceled SBOM export.</p>
|
|
2734
2734
|
* @public
|
|
2735
2735
|
*/
|
|
2736
|
-
reportId?: string;
|
|
2736
|
+
reportId?: string | undefined;
|
|
2737
2737
|
}
|
|
2738
2738
|
/**
|
|
2739
2739
|
* @public
|
|
@@ -2756,17 +2756,17 @@ export interface StatusCounts {
|
|
|
2756
2756
|
* <p>The number of checks that failed.</p>
|
|
2757
2757
|
* @public
|
|
2758
2758
|
*/
|
|
2759
|
-
failed?: number;
|
|
2759
|
+
failed?: number | undefined;
|
|
2760
2760
|
/**
|
|
2761
2761
|
* <p>The number of checks that were skipped.</p>
|
|
2762
2762
|
* @public
|
|
2763
2763
|
*/
|
|
2764
|
-
skipped?: number;
|
|
2764
|
+
skipped?: number | undefined;
|
|
2765
2765
|
/**
|
|
2766
2766
|
* <p>The number of checks that passed.</p>
|
|
2767
2767
|
* @public
|
|
2768
2768
|
*/
|
|
2769
|
-
passed?: number;
|
|
2769
|
+
passed?: number | undefined;
|
|
2770
2770
|
}
|
|
2771
2771
|
/**
|
|
2772
2772
|
* <p>A CIS check.</p>
|
|
@@ -2782,37 +2782,37 @@ export interface CisCheckAggregation {
|
|
|
2782
2782
|
* <p>The check ID for the CIS check.</p>
|
|
2783
2783
|
* @public
|
|
2784
2784
|
*/
|
|
2785
|
-
checkId?: string;
|
|
2785
|
+
checkId?: string | undefined;
|
|
2786
2786
|
/**
|
|
2787
2787
|
* <p>The CIS check title.</p>
|
|
2788
2788
|
* @public
|
|
2789
2789
|
*/
|
|
2790
|
-
title?: string;
|
|
2790
|
+
title?: string | undefined;
|
|
2791
2791
|
/**
|
|
2792
2792
|
* <p>The description for the CIS check.</p>
|
|
2793
2793
|
* @public
|
|
2794
2794
|
*/
|
|
2795
|
-
checkDescription?: string;
|
|
2795
|
+
checkDescription?: string | undefined;
|
|
2796
2796
|
/**
|
|
2797
2797
|
* <p>The CIS check level.</p>
|
|
2798
2798
|
* @public
|
|
2799
2799
|
*/
|
|
2800
|
-
level?: CisSecurityLevel;
|
|
2800
|
+
level?: CisSecurityLevel | undefined;
|
|
2801
2801
|
/**
|
|
2802
2802
|
* <p>The account ID for the CIS check.</p>
|
|
2803
2803
|
* @public
|
|
2804
2804
|
*/
|
|
2805
|
-
accountId?: string;
|
|
2805
|
+
accountId?: string | undefined;
|
|
2806
2806
|
/**
|
|
2807
2807
|
* <p>The CIS check status counts.</p>
|
|
2808
2808
|
* @public
|
|
2809
2809
|
*/
|
|
2810
|
-
statusCounts?: StatusCounts;
|
|
2810
|
+
statusCounts?: StatusCounts | undefined;
|
|
2811
2811
|
/**
|
|
2812
2812
|
* <p>The CIS check platform.</p>
|
|
2813
2813
|
* @public
|
|
2814
2814
|
*/
|
|
2815
|
-
platform?: string;
|
|
2815
|
+
platform?: string | undefined;
|
|
2816
2816
|
}
|
|
2817
2817
|
/**
|
|
2818
2818
|
* <p>The CIS date filter.</p>
|
|
@@ -2823,12 +2823,12 @@ export interface CisDateFilter {
|
|
|
2823
2823
|
* <p>The CIS date filter's earliest scan start time.</p>
|
|
2824
2824
|
* @public
|
|
2825
2825
|
*/
|
|
2826
|
-
earliestScanStartTime?: Date;
|
|
2826
|
+
earliestScanStartTime?: Date | undefined;
|
|
2827
2827
|
/**
|
|
2828
2828
|
* <p>The CIS date filter's latest scan start time.</p>
|
|
2829
2829
|
* @public
|
|
2830
2830
|
*/
|
|
2831
|
-
latestScanStartTime?: Date;
|
|
2831
|
+
latestScanStartTime?: Date | undefined;
|
|
2832
2832
|
}
|
|
2833
2833
|
/**
|
|
2834
2834
|
* @public
|
|
@@ -2879,12 +2879,12 @@ export interface CisNumberFilter {
|
|
|
2879
2879
|
* <p>The CIS number filter's upper inclusive.</p>
|
|
2880
2880
|
* @public
|
|
2881
2881
|
*/
|
|
2882
|
-
upperInclusive?: number;
|
|
2882
|
+
upperInclusive?: number | undefined;
|
|
2883
2883
|
/**
|
|
2884
2884
|
* <p>The CIS number filter's lower inclusive.</p>
|
|
2885
2885
|
* @public
|
|
2886
2886
|
*/
|
|
2887
|
-
lowerInclusive?: number;
|
|
2887
|
+
lowerInclusive?: number | undefined;
|
|
2888
2888
|
}
|
|
2889
2889
|
/**
|
|
2890
2890
|
* @public
|
|
@@ -2991,12 +2991,12 @@ export interface CisTargets {
|
|
|
2991
2991
|
* <p>The CIS target account ids.</p>
|
|
2992
2992
|
* @public
|
|
2993
2993
|
*/
|
|
2994
|
-
accountIds?: string[];
|
|
2994
|
+
accountIds?: string[] | undefined;
|
|
2995
2995
|
/**
|
|
2996
2996
|
* <p>The CIS target resource tags.</p>
|
|
2997
2997
|
* @public
|
|
2998
2998
|
*/
|
|
2999
|
-
targetResourceTags?: Record<string, string[]
|
|
2999
|
+
targetResourceTags?: Record<string, string[]> | undefined;
|
|
3000
3000
|
}
|
|
3001
3001
|
/**
|
|
3002
3002
|
* <p>The CIS scan.</p>
|
|
@@ -3017,37 +3017,37 @@ export interface CisScan {
|
|
|
3017
3017
|
* <p>The CIS scan's status.</p>
|
|
3018
3018
|
* @public
|
|
3019
3019
|
*/
|
|
3020
|
-
status?: CisScanStatus;
|
|
3020
|
+
status?: CisScanStatus | undefined;
|
|
3021
3021
|
/**
|
|
3022
3022
|
* <p>The the name of the scan configuration that's associated with this scan.</p>
|
|
3023
3023
|
* @public
|
|
3024
3024
|
*/
|
|
3025
|
-
scanName?: string;
|
|
3025
|
+
scanName?: string | undefined;
|
|
3026
3026
|
/**
|
|
3027
3027
|
* <p>The CIS scan's date.</p>
|
|
3028
3028
|
* @public
|
|
3029
3029
|
*/
|
|
3030
|
-
scanDate?: Date;
|
|
3030
|
+
scanDate?: Date | undefined;
|
|
3031
3031
|
/**
|
|
3032
3032
|
* <p>The CIS scan's failed checks.</p>
|
|
3033
3033
|
* @public
|
|
3034
3034
|
*/
|
|
3035
|
-
failedChecks?: number;
|
|
3035
|
+
failedChecks?: number | undefined;
|
|
3036
3036
|
/**
|
|
3037
3037
|
* <p>The CIS scan's total checks.</p>
|
|
3038
3038
|
* @public
|
|
3039
3039
|
*/
|
|
3040
|
-
totalChecks?: number;
|
|
3040
|
+
totalChecks?: number | undefined;
|
|
3041
3041
|
/**
|
|
3042
3042
|
* <p>The CIS scan's targets.</p>
|
|
3043
3043
|
* @public
|
|
3044
3044
|
*/
|
|
3045
|
-
targets?: CisTargets;
|
|
3045
|
+
targets?: CisTargets | undefined;
|
|
3046
3046
|
/**
|
|
3047
3047
|
* <p>The account or organization that schedules the CIS scan.</p>
|
|
3048
3048
|
* @public
|
|
3049
3049
|
*/
|
|
3050
|
-
scheduledBy?: string;
|
|
3050
|
+
scheduledBy?: string | undefined;
|
|
3051
3051
|
/**
|
|
3052
3052
|
* <p>
|
|
3053
3053
|
* The security level for the CIS scan.
|
|
@@ -3055,7 +3055,7 @@ export interface CisScan {
|
|
|
3055
3055
|
* </p>
|
|
3056
3056
|
* @public
|
|
3057
3057
|
*/
|
|
3058
|
-
securityLevel?: CisSecurityLevel;
|
|
3058
|
+
securityLevel?: CisSecurityLevel | undefined;
|
|
3059
3059
|
}
|
|
3060
3060
|
/**
|
|
3061
3061
|
* <p>The time.</p>
|
|
@@ -3225,32 +3225,32 @@ export interface CisScanConfiguration {
|
|
|
3225
3225
|
* <p>The CIS scan configuration's owner ID.</p>
|
|
3226
3226
|
* @public
|
|
3227
3227
|
*/
|
|
3228
|
-
ownerId?: string;
|
|
3228
|
+
ownerId?: string | undefined;
|
|
3229
3229
|
/**
|
|
3230
3230
|
* <p>The name of the CIS scan configuration.</p>
|
|
3231
3231
|
* @public
|
|
3232
3232
|
*/
|
|
3233
|
-
scanName?: string;
|
|
3233
|
+
scanName?: string | undefined;
|
|
3234
3234
|
/**
|
|
3235
3235
|
* <p>The CIS scan configuration's security level.</p>
|
|
3236
3236
|
* @public
|
|
3237
3237
|
*/
|
|
3238
|
-
securityLevel?: CisSecurityLevel;
|
|
3238
|
+
securityLevel?: CisSecurityLevel | undefined;
|
|
3239
3239
|
/**
|
|
3240
3240
|
* <p>The CIS scan configuration's schedule.</p>
|
|
3241
3241
|
* @public
|
|
3242
3242
|
*/
|
|
3243
|
-
schedule?: Schedule;
|
|
3243
|
+
schedule?: Schedule | undefined;
|
|
3244
3244
|
/**
|
|
3245
3245
|
* <p>The CIS scan configuration's targets.</p>
|
|
3246
3246
|
* @public
|
|
3247
3247
|
*/
|
|
3248
|
-
targets?: CisTargets;
|
|
3248
|
+
targets?: CisTargets | undefined;
|
|
3249
3249
|
/**
|
|
3250
3250
|
* <p>The CIS scan configuration's tags.</p>
|
|
3251
3251
|
* @public
|
|
3252
3252
|
*/
|
|
3253
|
-
tags?: Record<string, string
|
|
3253
|
+
tags?: Record<string, string> | undefined;
|
|
3254
3254
|
}
|
|
3255
3255
|
/**
|
|
3256
3256
|
* @public
|
|
@@ -3278,57 +3278,57 @@ export interface CisScanResultDetails {
|
|
|
3278
3278
|
* <p>The CIS scan result details' account ID.</p>
|
|
3279
3279
|
* @public
|
|
3280
3280
|
*/
|
|
3281
|
-
accountId?: string;
|
|
3281
|
+
accountId?: string | undefined;
|
|
3282
3282
|
/**
|
|
3283
3283
|
* <p>The CIS scan result details' target resource ID.</p>
|
|
3284
3284
|
* @public
|
|
3285
3285
|
*/
|
|
3286
|
-
targetResourceId?: string;
|
|
3286
|
+
targetResourceId?: string | undefined;
|
|
3287
3287
|
/**
|
|
3288
3288
|
* <p>The CIS scan result details' platform.</p>
|
|
3289
3289
|
* @public
|
|
3290
3290
|
*/
|
|
3291
|
-
platform?: string;
|
|
3291
|
+
platform?: string | undefined;
|
|
3292
3292
|
/**
|
|
3293
3293
|
* <p>The CIS scan result details' status.</p>
|
|
3294
3294
|
* @public
|
|
3295
3295
|
*/
|
|
3296
|
-
status?: CisFindingStatus;
|
|
3296
|
+
status?: CisFindingStatus | undefined;
|
|
3297
3297
|
/**
|
|
3298
3298
|
* <p>The CIS scan result details' status reason.</p>
|
|
3299
3299
|
* @public
|
|
3300
3300
|
*/
|
|
3301
|
-
statusReason?: string;
|
|
3301
|
+
statusReason?: string | undefined;
|
|
3302
3302
|
/**
|
|
3303
3303
|
* <p>The CIS scan result details' check ID.</p>
|
|
3304
3304
|
* @public
|
|
3305
3305
|
*/
|
|
3306
|
-
checkId?: string;
|
|
3306
|
+
checkId?: string | undefined;
|
|
3307
3307
|
/**
|
|
3308
3308
|
* <p>The CIS scan result details' title.</p>
|
|
3309
3309
|
* @public
|
|
3310
3310
|
*/
|
|
3311
|
-
title?: string;
|
|
3311
|
+
title?: string | undefined;
|
|
3312
3312
|
/**
|
|
3313
3313
|
* <p>The account ID that's associated with the CIS scan result details.</p>
|
|
3314
3314
|
* @public
|
|
3315
3315
|
*/
|
|
3316
|
-
checkDescription?: string;
|
|
3316
|
+
checkDescription?: string | undefined;
|
|
3317
3317
|
/**
|
|
3318
3318
|
* <p>The CIS scan result details' remediation.</p>
|
|
3319
3319
|
* @public
|
|
3320
3320
|
*/
|
|
3321
|
-
remediation?: string;
|
|
3321
|
+
remediation?: string | undefined;
|
|
3322
3322
|
/**
|
|
3323
3323
|
* <p>The CIS scan result details' level.</p>
|
|
3324
3324
|
* @public
|
|
3325
3325
|
*/
|
|
3326
|
-
level?: CisSecurityLevel;
|
|
3326
|
+
level?: CisSecurityLevel | undefined;
|
|
3327
3327
|
/**
|
|
3328
3328
|
* <p>The CIS scan result details' finding ARN.</p>
|
|
3329
3329
|
* @public
|
|
3330
3330
|
*/
|
|
3331
|
-
findingArn?: string;
|
|
3331
|
+
findingArn?: string | undefined;
|
|
3332
3332
|
}
|
|
3333
3333
|
/**
|
|
3334
3334
|
* @public
|
|
@@ -3369,17 +3369,17 @@ export interface CisScanResultDetailsFilterCriteria {
|
|
|
3369
3369
|
* <p>The criteria's finding status filters.</p>
|
|
3370
3370
|
* @public
|
|
3371
3371
|
*/
|
|
3372
|
-
findingStatusFilters?: CisFindingStatusFilter[];
|
|
3372
|
+
findingStatusFilters?: CisFindingStatusFilter[] | undefined;
|
|
3373
3373
|
/**
|
|
3374
3374
|
* <p>The criteria's check ID filters.</p>
|
|
3375
3375
|
* @public
|
|
3376
3376
|
*/
|
|
3377
|
-
checkIdFilters?: CisStringFilter[];
|
|
3377
|
+
checkIdFilters?: CisStringFilter[] | undefined;
|
|
3378
3378
|
/**
|
|
3379
3379
|
* <p>The criteria's title filters.</p>
|
|
3380
3380
|
* @public
|
|
3381
3381
|
*/
|
|
3382
|
-
titleFilters?: CisStringFilter[];
|
|
3382
|
+
titleFilters?: CisStringFilter[] | undefined;
|
|
3383
3383
|
/**
|
|
3384
3384
|
* <p>
|
|
3385
3385
|
* The criteria's security level filters. .
|
|
@@ -3387,12 +3387,12 @@ export interface CisScanResultDetailsFilterCriteria {
|
|
|
3387
3387
|
* </p>
|
|
3388
3388
|
* @public
|
|
3389
3389
|
*/
|
|
3390
|
-
securityLevelFilters?: CisSecurityLevelFilter[];
|
|
3390
|
+
securityLevelFilters?: CisSecurityLevelFilter[] | undefined;
|
|
3391
3391
|
/**
|
|
3392
3392
|
* <p>The criteria's finding ARN filters.</p>
|
|
3393
3393
|
* @public
|
|
3394
3394
|
*/
|
|
3395
|
-
findingArnFilters?: CisStringFilter[];
|
|
3395
|
+
findingArnFilters?: CisStringFilter[] | undefined;
|
|
3396
3396
|
}
|
|
3397
3397
|
/**
|
|
3398
3398
|
* @public
|
|
@@ -3415,32 +3415,32 @@ export interface CisScanResultsAggregatedByChecksFilterCriteria {
|
|
|
3415
3415
|
* <p>The criteria's account ID filters.</p>
|
|
3416
3416
|
* @public
|
|
3417
3417
|
*/
|
|
3418
|
-
accountIdFilters?: CisStringFilter[];
|
|
3418
|
+
accountIdFilters?: CisStringFilter[] | undefined;
|
|
3419
3419
|
/**
|
|
3420
3420
|
* <p>The criteria's check ID filters.</p>
|
|
3421
3421
|
* @public
|
|
3422
3422
|
*/
|
|
3423
|
-
checkIdFilters?: CisStringFilter[];
|
|
3423
|
+
checkIdFilters?: CisStringFilter[] | undefined;
|
|
3424
3424
|
/**
|
|
3425
3425
|
* <p>The criteria's title filters.</p>
|
|
3426
3426
|
* @public
|
|
3427
3427
|
*/
|
|
3428
|
-
titleFilters?: CisStringFilter[];
|
|
3428
|
+
titleFilters?: CisStringFilter[] | undefined;
|
|
3429
3429
|
/**
|
|
3430
3430
|
* <p>The criteria's platform filters.</p>
|
|
3431
3431
|
* @public
|
|
3432
3432
|
*/
|
|
3433
|
-
platformFilters?: CisStringFilter[];
|
|
3433
|
+
platformFilters?: CisStringFilter[] | undefined;
|
|
3434
3434
|
/**
|
|
3435
3435
|
* <p>The criteria's failed resources filters.</p>
|
|
3436
3436
|
* @public
|
|
3437
3437
|
*/
|
|
3438
|
-
failedResourcesFilters?: CisNumberFilter[];
|
|
3438
|
+
failedResourcesFilters?: CisNumberFilter[] | undefined;
|
|
3439
3439
|
/**
|
|
3440
3440
|
* <p>The criteria's security level filters.</p>
|
|
3441
3441
|
* @public
|
|
3442
3442
|
*/
|
|
3443
|
-
securityLevelFilters?: CisSecurityLevelFilter[];
|
|
3443
|
+
securityLevelFilters?: CisSecurityLevelFilter[] | undefined;
|
|
3444
3444
|
}
|
|
3445
3445
|
/**
|
|
3446
3446
|
* @public
|
|
@@ -3567,47 +3567,47 @@ export interface CisScanResultsAggregatedByTargetResourceFilterCriteria {
|
|
|
3567
3567
|
* <p>The criteria's account ID filters.</p>
|
|
3568
3568
|
* @public
|
|
3569
3569
|
*/
|
|
3570
|
-
accountIdFilters?: CisStringFilter[];
|
|
3570
|
+
accountIdFilters?: CisStringFilter[] | undefined;
|
|
3571
3571
|
/**
|
|
3572
3572
|
* <p>The criteria's status filter.</p>
|
|
3573
3573
|
* @public
|
|
3574
3574
|
*/
|
|
3575
|
-
statusFilters?: CisResultStatusFilter[];
|
|
3575
|
+
statusFilters?: CisResultStatusFilter[] | undefined;
|
|
3576
3576
|
/**
|
|
3577
3577
|
* <p>The criteria's check ID filters.</p>
|
|
3578
3578
|
* @public
|
|
3579
3579
|
*/
|
|
3580
|
-
checkIdFilters?: CisStringFilter[];
|
|
3580
|
+
checkIdFilters?: CisStringFilter[] | undefined;
|
|
3581
3581
|
/**
|
|
3582
3582
|
* <p>The criteria's target resource ID filters.</p>
|
|
3583
3583
|
* @public
|
|
3584
3584
|
*/
|
|
3585
|
-
targetResourceIdFilters?: CisStringFilter[];
|
|
3585
|
+
targetResourceIdFilters?: CisStringFilter[] | undefined;
|
|
3586
3586
|
/**
|
|
3587
3587
|
* <p>The criteria's target resource tag filters.</p>
|
|
3588
3588
|
* @public
|
|
3589
3589
|
*/
|
|
3590
|
-
targetResourceTagFilters?: TagFilter[];
|
|
3590
|
+
targetResourceTagFilters?: TagFilter[] | undefined;
|
|
3591
3591
|
/**
|
|
3592
3592
|
* <p>The criteria's platform filters.</p>
|
|
3593
3593
|
* @public
|
|
3594
3594
|
*/
|
|
3595
|
-
platformFilters?: CisStringFilter[];
|
|
3595
|
+
platformFilters?: CisStringFilter[] | undefined;
|
|
3596
3596
|
/**
|
|
3597
3597
|
* <p>The criteria's target status filters.</p>
|
|
3598
3598
|
* @public
|
|
3599
3599
|
*/
|
|
3600
|
-
targetStatusFilters?: CisTargetStatusFilter[];
|
|
3600
|
+
targetStatusFilters?: CisTargetStatusFilter[] | undefined;
|
|
3601
3601
|
/**
|
|
3602
3602
|
* <p>The criteria's target status reason filters.</p>
|
|
3603
3603
|
* @public
|
|
3604
3604
|
*/
|
|
3605
|
-
targetStatusReasonFilters?: CisTargetStatusReasonFilter[];
|
|
3605
|
+
targetStatusReasonFilters?: CisTargetStatusReasonFilter[] | undefined;
|
|
3606
3606
|
/**
|
|
3607
3607
|
* <p>The criteria's failed checks filters.</p>
|
|
3608
3608
|
* @public
|
|
3609
3609
|
*/
|
|
3610
|
-
failedChecksFilters?: CisNumberFilter[];
|
|
3610
|
+
failedChecksFilters?: CisNumberFilter[] | undefined;
|
|
3611
3611
|
}
|
|
3612
3612
|
/**
|
|
3613
3613
|
* @public
|
|
@@ -3699,37 +3699,37 @@ export interface CisTargetResourceAggregation {
|
|
|
3699
3699
|
* <p>The ID of the target resource.</p>
|
|
3700
3700
|
* @public
|
|
3701
3701
|
*/
|
|
3702
|
-
targetResourceId?: string;
|
|
3702
|
+
targetResourceId?: string | undefined;
|
|
3703
3703
|
/**
|
|
3704
3704
|
* <p>The account ID for the CIS target resource.</p>
|
|
3705
3705
|
* @public
|
|
3706
3706
|
*/
|
|
3707
|
-
accountId?: string;
|
|
3707
|
+
accountId?: string | undefined;
|
|
3708
3708
|
/**
|
|
3709
3709
|
* <p>The tag for the target resource.</p>
|
|
3710
3710
|
* @public
|
|
3711
3711
|
*/
|
|
3712
|
-
targetResourceTags?: Record<string, string[]
|
|
3712
|
+
targetResourceTags?: Record<string, string[]> | undefined;
|
|
3713
3713
|
/**
|
|
3714
3714
|
* <p>The target resource status counts.</p>
|
|
3715
3715
|
* @public
|
|
3716
3716
|
*/
|
|
3717
|
-
statusCounts?: StatusCounts;
|
|
3717
|
+
statusCounts?: StatusCounts | undefined;
|
|
3718
3718
|
/**
|
|
3719
3719
|
* <p>The platform for the CIS target resource.</p>
|
|
3720
3720
|
* @public
|
|
3721
3721
|
*/
|
|
3722
|
-
platform?: string;
|
|
3722
|
+
platform?: string | undefined;
|
|
3723
3723
|
/**
|
|
3724
3724
|
* <p>The status of the target resource.</p>
|
|
3725
3725
|
* @public
|
|
3726
3726
|
*/
|
|
3727
|
-
targetStatus?: CisTargetStatus;
|
|
3727
|
+
targetStatus?: CisTargetStatus | undefined;
|
|
3728
3728
|
/**
|
|
3729
3729
|
* <p>The reason for the target resource.</p>
|
|
3730
3730
|
* @public
|
|
3731
3731
|
*/
|
|
3732
|
-
targetStatusReason?: CisTargetStatusReason;
|
|
3732
|
+
targetStatusReason?: CisTargetStatusReason | undefined;
|
|
3733
3733
|
}
|
|
3734
3734
|
/**
|
|
3735
3735
|
* <p>Contains information on where a code vulnerability is located in your Lambda function.</p>
|
|
@@ -3771,22 +3771,22 @@ export interface CodeVulnerabilityDetails {
|
|
|
3771
3771
|
* <p>The detector tag associated with the vulnerability. Detector tags group related vulnerabilities by common themes or tactics. For a list of available tags by programming language, see <a href="https://docs.aws.amazon.com/codeguru/detector-library/java/tags/">Java tags</a>, or <a href="https://docs.aws.amazon.com/codeguru/detector-library/python/tags/">Python tags</a>. </p>
|
|
3772
3772
|
* @public
|
|
3773
3773
|
*/
|
|
3774
|
-
detectorTags?: string[];
|
|
3774
|
+
detectorTags?: string[] | undefined;
|
|
3775
3775
|
/**
|
|
3776
3776
|
* <p>A URL containing supporting documentation about the code vulnerability detected.</p>
|
|
3777
3777
|
* @public
|
|
3778
3778
|
*/
|
|
3779
|
-
referenceUrls?: string[];
|
|
3779
|
+
referenceUrls?: string[] | undefined;
|
|
3780
3780
|
/**
|
|
3781
3781
|
* <p>The identifier for a rule that was used to detect the code vulnerability.</p>
|
|
3782
3782
|
* @public
|
|
3783
3783
|
*/
|
|
3784
|
-
ruleId?: string;
|
|
3784
|
+
ruleId?: string | undefined;
|
|
3785
3785
|
/**
|
|
3786
3786
|
* <p>The Amazon Resource Name (ARN) of the Lambda layer that the code vulnerability was detected in.</p>
|
|
3787
3787
|
* @public
|
|
3788
3788
|
*/
|
|
3789
|
-
sourceLambdaLayerArn?: string;
|
|
3789
|
+
sourceLambdaLayerArn?: string | undefined;
|
|
3790
3790
|
/**
|
|
3791
3791
|
* <p>The ID for the Amazon CodeGuru detector associated with the finding. For more information on detectors see <a href="https://docs.aws.amazon.com/codeguru/detector-library">Amazon CodeGuru
|
|
3792
3792
|
* Detector Library</a>.</p>
|
|
@@ -3813,17 +3813,17 @@ export interface ComputePlatform {
|
|
|
3813
3813
|
* <p>The compute platform vendor.</p>
|
|
3814
3814
|
* @public
|
|
3815
3815
|
*/
|
|
3816
|
-
vendor?: string;
|
|
3816
|
+
vendor?: string | undefined;
|
|
3817
3817
|
/**
|
|
3818
3818
|
* <p>The compute platform product.</p>
|
|
3819
3819
|
* @public
|
|
3820
3820
|
*/
|
|
3821
|
-
product?: string;
|
|
3821
|
+
product?: string | undefined;
|
|
3822
3822
|
/**
|
|
3823
3823
|
* <p>The compute platform version.</p>
|
|
3824
3824
|
* @public
|
|
3825
3825
|
*/
|
|
3826
|
-
version?: string;
|
|
3826
|
+
version?: string | undefined;
|
|
3827
3827
|
}
|
|
3828
3828
|
/**
|
|
3829
3829
|
* <p>A conflict occurred.</p>
|
|
@@ -3871,12 +3871,12 @@ export interface Counts {
|
|
|
3871
3871
|
* <p>The number of resources.</p>
|
|
3872
3872
|
* @public
|
|
3873
3873
|
*/
|
|
3874
|
-
count?: number;
|
|
3874
|
+
count?: number | undefined;
|
|
3875
3875
|
/**
|
|
3876
3876
|
* <p>The key associated with this group</p>
|
|
3877
3877
|
* @public
|
|
3878
3878
|
*/
|
|
3879
|
-
groupKey?: GroupKey;
|
|
3879
|
+
groupKey?: GroupKey | undefined;
|
|
3880
3880
|
}
|
|
3881
3881
|
/**
|
|
3882
3882
|
* <p>Contains details of a coverage date filter.</p>
|
|
@@ -3887,12 +3887,12 @@ export interface CoverageDateFilter {
|
|
|
3887
3887
|
* <p>A timestamp representing the start of the time period to filter results by.</p>
|
|
3888
3888
|
* @public
|
|
3889
3889
|
*/
|
|
3890
|
-
startInclusive?: Date;
|
|
3890
|
+
startInclusive?: Date | undefined;
|
|
3891
3891
|
/**
|
|
3892
3892
|
* <p>A timestamp representing the end of the time period to filter results by.</p>
|
|
3893
3893
|
* @public
|
|
3894
3894
|
*/
|
|
3895
|
-
endInclusive?: Date;
|
|
3895
|
+
endInclusive?: Date | undefined;
|
|
3896
3896
|
}
|
|
3897
3897
|
/**
|
|
3898
3898
|
* @public
|
|
@@ -3952,7 +3952,7 @@ export interface CoverageMapFilter {
|
|
|
3952
3952
|
* <p>The tag value associated with the coverage map filter.</p>
|
|
3953
3953
|
* @public
|
|
3954
3954
|
*/
|
|
3955
|
-
value?: string;
|
|
3955
|
+
value?: string | undefined;
|
|
3956
3956
|
}
|
|
3957
3957
|
/**
|
|
3958
3958
|
* <p>A structure that identifies filter criteria for <code>GetCoverageStatistics</code>.</p>
|
|
@@ -3963,77 +3963,77 @@ export interface CoverageFilterCriteria {
|
|
|
3963
3963
|
* <p>The scan status code to filter on. Valid values are: <code>ValidationException</code>, <code>InternalServerException</code>, <code>ResourceNotFoundException</code>, <code>BadRequestException</code>, and <code>ThrottlingException</code>.</p>
|
|
3964
3964
|
* @public
|
|
3965
3965
|
*/
|
|
3966
|
-
scanStatusCode?: CoverageStringFilter[];
|
|
3966
|
+
scanStatusCode?: CoverageStringFilter[] | undefined;
|
|
3967
3967
|
/**
|
|
3968
3968
|
* <p>The scan status reason to filter on.</p>
|
|
3969
3969
|
* @public
|
|
3970
3970
|
*/
|
|
3971
|
-
scanStatusReason?: CoverageStringFilter[];
|
|
3971
|
+
scanStatusReason?: CoverageStringFilter[] | undefined;
|
|
3972
3972
|
/**
|
|
3973
3973
|
* <p>An array of Amazon Web Services account IDs to return coverage statistics for.</p>
|
|
3974
3974
|
* @public
|
|
3975
3975
|
*/
|
|
3976
|
-
accountId?: CoverageStringFilter[];
|
|
3976
|
+
accountId?: CoverageStringFilter[] | undefined;
|
|
3977
3977
|
/**
|
|
3978
3978
|
* <p>An array of Amazon Web Services resource IDs to return coverage statistics for.</p>
|
|
3979
3979
|
* @public
|
|
3980
3980
|
*/
|
|
3981
|
-
resourceId?: CoverageStringFilter[];
|
|
3981
|
+
resourceId?: CoverageStringFilter[] | undefined;
|
|
3982
3982
|
/**
|
|
3983
3983
|
* <p>An array of Amazon Web Services resource types to return coverage statistics for. The values can be <code>AWS_EC2_INSTANCE</code>, <code>AWS_LAMBDA_FUNCTION</code>, <code>AWS_ECR_CONTAINER_IMAGE</code>, <code>AWS_ECR_REPOSITORY</code> or <code>AWS_ACCOUNT</code>.</p>
|
|
3984
3984
|
* @public
|
|
3985
3985
|
*/
|
|
3986
|
-
resourceType?: CoverageStringFilter[];
|
|
3986
|
+
resourceType?: CoverageStringFilter[] | undefined;
|
|
3987
3987
|
/**
|
|
3988
3988
|
* <p>An array of Amazon Inspector scan types to return coverage statistics for.</p>
|
|
3989
3989
|
* @public
|
|
3990
3990
|
*/
|
|
3991
|
-
scanType?: CoverageStringFilter[];
|
|
3991
|
+
scanType?: CoverageStringFilter[] | undefined;
|
|
3992
3992
|
/**
|
|
3993
3993
|
* <p>The Amazon ECR repository name to filter on.</p>
|
|
3994
3994
|
* @public
|
|
3995
3995
|
*/
|
|
3996
|
-
ecrRepositoryName?: CoverageStringFilter[];
|
|
3996
|
+
ecrRepositoryName?: CoverageStringFilter[] | undefined;
|
|
3997
3997
|
/**
|
|
3998
3998
|
* <p>The Amazon ECR image tags to filter on.</p>
|
|
3999
3999
|
* @public
|
|
4000
4000
|
*/
|
|
4001
|
-
ecrImageTags?: CoverageStringFilter[];
|
|
4001
|
+
ecrImageTags?: CoverageStringFilter[] | undefined;
|
|
4002
4002
|
/**
|
|
4003
4003
|
* <p>The Amazon EC2 instance tags to filter on.</p>
|
|
4004
4004
|
* @public
|
|
4005
4005
|
*/
|
|
4006
|
-
ec2InstanceTags?: CoverageMapFilter[];
|
|
4006
|
+
ec2InstanceTags?: CoverageMapFilter[] | undefined;
|
|
4007
4007
|
/**
|
|
4008
4008
|
* <p>Returns coverage statistics for Amazon Web Services Lambda functions filtered by function names.</p>
|
|
4009
4009
|
* @public
|
|
4010
4010
|
*/
|
|
4011
|
-
lambdaFunctionName?: CoverageStringFilter[];
|
|
4011
|
+
lambdaFunctionName?: CoverageStringFilter[] | undefined;
|
|
4012
4012
|
/**
|
|
4013
4013
|
* <p>Returns coverage statistics for Amazon Web Services Lambda functions filtered by tag.</p>
|
|
4014
4014
|
* @public
|
|
4015
4015
|
*/
|
|
4016
|
-
lambdaFunctionTags?: CoverageMapFilter[];
|
|
4016
|
+
lambdaFunctionTags?: CoverageMapFilter[] | undefined;
|
|
4017
4017
|
/**
|
|
4018
4018
|
* <p>Returns coverage statistics for Amazon Web Services Lambda functions filtered by runtime.</p>
|
|
4019
4019
|
* @public
|
|
4020
4020
|
*/
|
|
4021
|
-
lambdaFunctionRuntime?: CoverageStringFilter[];
|
|
4021
|
+
lambdaFunctionRuntime?: CoverageStringFilter[] | undefined;
|
|
4022
4022
|
/**
|
|
4023
4023
|
* <p>Filters Amazon Web Services resources based on whether Amazon Inspector has checked them for vulnerabilities within the specified time range.</p>
|
|
4024
4024
|
* @public
|
|
4025
4025
|
*/
|
|
4026
|
-
lastScannedAt?: CoverageDateFilter[];
|
|
4026
|
+
lastScannedAt?: CoverageDateFilter[] | undefined;
|
|
4027
4027
|
/**
|
|
4028
4028
|
* <p>The filter to search for Amazon EC2 instance coverage by scan mode. Valid values are <code>EC2_SSM_AGENT_BASED</code> and <code>EC2_AGENTLESS</code>.</p>
|
|
4029
4029
|
* @public
|
|
4030
4030
|
*/
|
|
4031
|
-
scanMode?: CoverageStringFilter[];
|
|
4031
|
+
scanMode?: CoverageStringFilter[] | undefined;
|
|
4032
4032
|
/**
|
|
4033
4033
|
* <p>The date an image was last pulled at.</p>
|
|
4034
4034
|
* @public
|
|
4035
4035
|
*/
|
|
4036
|
-
imagePulledAt?: CoverageDateFilter[];
|
|
4036
|
+
imagePulledAt?: CoverageDateFilter[] | undefined;
|
|
4037
4037
|
}
|
|
4038
4038
|
/**
|
|
4039
4039
|
* @public
|
|
@@ -4072,17 +4072,17 @@ export interface Ec2Metadata {
|
|
|
4072
4072
|
* <p>The tags attached to the instance.</p>
|
|
4073
4073
|
* @public
|
|
4074
4074
|
*/
|
|
4075
|
-
tags?: Record<string, string
|
|
4075
|
+
tags?: Record<string, string> | undefined;
|
|
4076
4076
|
/**
|
|
4077
4077
|
* <p>The ID of the Amazon Machine Image (AMI) used to launch the instance.</p>
|
|
4078
4078
|
* @public
|
|
4079
4079
|
*/
|
|
4080
|
-
amiId?: string;
|
|
4080
|
+
amiId?: string | undefined;
|
|
4081
4081
|
/**
|
|
4082
4082
|
* <p>The platform of the instance.</p>
|
|
4083
4083
|
* @public
|
|
4084
4084
|
*/
|
|
4085
|
-
platform?: Ec2Platform;
|
|
4085
|
+
platform?: Ec2Platform | undefined;
|
|
4086
4086
|
}
|
|
4087
4087
|
/**
|
|
4088
4088
|
* <p>Information on the Amazon ECR image metadata associated with a finding.</p>
|
|
@@ -4093,12 +4093,12 @@ export interface EcrContainerImageMetadata {
|
|
|
4093
4093
|
* <p>Tags associated with the Amazon ECR image metadata.</p>
|
|
4094
4094
|
* @public
|
|
4095
4095
|
*/
|
|
4096
|
-
tags?: string[];
|
|
4096
|
+
tags?: string[] | undefined;
|
|
4097
4097
|
/**
|
|
4098
4098
|
* <p>The date an image was last pulled at.</p>
|
|
4099
4099
|
* @public
|
|
4100
4100
|
*/
|
|
4101
|
-
imagePulledAt?: Date;
|
|
4101
|
+
imagePulledAt?: Date | undefined;
|
|
4102
4102
|
}
|
|
4103
4103
|
/**
|
|
4104
4104
|
* @public
|
|
@@ -4122,12 +4122,12 @@ export interface EcrRepositoryMetadata {
|
|
|
4122
4122
|
* <p>The name of the Amazon ECR repository.</p>
|
|
4123
4123
|
* @public
|
|
4124
4124
|
*/
|
|
4125
|
-
name?: string;
|
|
4125
|
+
name?: string | undefined;
|
|
4126
4126
|
/**
|
|
4127
4127
|
* <p>The frequency of scans.</p>
|
|
4128
4128
|
* @public
|
|
4129
4129
|
*/
|
|
4130
|
-
scanFrequency?: EcrScanFrequency;
|
|
4130
|
+
scanFrequency?: EcrScanFrequency | undefined;
|
|
4131
4131
|
}
|
|
4132
4132
|
/**
|
|
4133
4133
|
* <p>The Amazon Web Services Lambda function metadata.</p>
|
|
@@ -4138,22 +4138,22 @@ export interface LambdaFunctionMetadata {
|
|
|
4138
4138
|
* <p>The resource tags on an Amazon Web Services Lambda function.</p>
|
|
4139
4139
|
* @public
|
|
4140
4140
|
*/
|
|
4141
|
-
functionTags?: Record<string, string
|
|
4141
|
+
functionTags?: Record<string, string> | undefined;
|
|
4142
4142
|
/**
|
|
4143
4143
|
* <p>The layers for an Amazon Web Services Lambda function. A Lambda function can have up to five layers.</p>
|
|
4144
4144
|
* @public
|
|
4145
4145
|
*/
|
|
4146
|
-
layers?: string[];
|
|
4146
|
+
layers?: string[] | undefined;
|
|
4147
4147
|
/**
|
|
4148
4148
|
* <p>The name of a function.</p>
|
|
4149
4149
|
* @public
|
|
4150
4150
|
*/
|
|
4151
|
-
functionName?: string;
|
|
4151
|
+
functionName?: string | undefined;
|
|
4152
4152
|
/**
|
|
4153
4153
|
* <p>An Amazon Web Services Lambda function's runtime.</p>
|
|
4154
4154
|
* @public
|
|
4155
4155
|
*/
|
|
4156
|
-
runtime?: Runtime;
|
|
4156
|
+
runtime?: Runtime | undefined;
|
|
4157
4157
|
}
|
|
4158
4158
|
/**
|
|
4159
4159
|
* <p>An object that contains details about the metadata for an Amazon ECR resource.</p>
|
|
@@ -4164,22 +4164,22 @@ export interface ResourceScanMetadata {
|
|
|
4164
4164
|
* <p>An object that contains details about the repository an Amazon ECR image resides in.</p>
|
|
4165
4165
|
* @public
|
|
4166
4166
|
*/
|
|
4167
|
-
ecrRepository?: EcrRepositoryMetadata;
|
|
4167
|
+
ecrRepository?: EcrRepositoryMetadata | undefined;
|
|
4168
4168
|
/**
|
|
4169
4169
|
* <p>An object that contains details about the container metadata for an Amazon ECR image.</p>
|
|
4170
4170
|
* @public
|
|
4171
4171
|
*/
|
|
4172
|
-
ecrImage?: EcrContainerImageMetadata;
|
|
4172
|
+
ecrImage?: EcrContainerImageMetadata | undefined;
|
|
4173
4173
|
/**
|
|
4174
4174
|
* <p>An object that contains metadata details for an Amazon EC2 instance.</p>
|
|
4175
4175
|
* @public
|
|
4176
4176
|
*/
|
|
4177
|
-
ec2?: Ec2Metadata;
|
|
4177
|
+
ec2?: Ec2Metadata | undefined;
|
|
4178
4178
|
/**
|
|
4179
4179
|
* <p>An object that contains metadata details for an Amazon Web Services Lambda function.</p>
|
|
4180
4180
|
* @public
|
|
4181
4181
|
*/
|
|
4182
|
-
lambdaFunction?: LambdaFunctionMetadata;
|
|
4182
|
+
lambdaFunction?: LambdaFunctionMetadata | undefined;
|
|
4183
4183
|
}
|
|
4184
4184
|
/**
|
|
4185
4185
|
* @public
|
|
@@ -4348,22 +4348,22 @@ export interface CoveredResource {
|
|
|
4348
4348
|
* <p>The status of the scan covering the resource.</p>
|
|
4349
4349
|
* @public
|
|
4350
4350
|
*/
|
|
4351
|
-
scanStatus?: ScanStatus;
|
|
4351
|
+
scanStatus?: ScanStatus | undefined;
|
|
4352
4352
|
/**
|
|
4353
4353
|
* <p>An object that contains details about the metadata.</p>
|
|
4354
4354
|
* @public
|
|
4355
4355
|
*/
|
|
4356
|
-
resourceMetadata?: ResourceScanMetadata;
|
|
4356
|
+
resourceMetadata?: ResourceScanMetadata | undefined;
|
|
4357
4357
|
/**
|
|
4358
4358
|
* <p>The date and time the resource was last checked for vulnerabilities.</p>
|
|
4359
4359
|
* @public
|
|
4360
4360
|
*/
|
|
4361
|
-
lastScannedAt?: Date;
|
|
4361
|
+
lastScannedAt?: Date | undefined;
|
|
4362
4362
|
/**
|
|
4363
4363
|
* <p>The scan method that is applied to the instance.</p>
|
|
4364
4364
|
* @public
|
|
4365
4365
|
*/
|
|
4366
|
-
scanMode?: ScanMode;
|
|
4366
|
+
scanMode?: ScanMode | undefined;
|
|
4367
4367
|
}
|
|
4368
4368
|
/**
|
|
4369
4369
|
* <p>Creates CIS targets.</p>
|
|
@@ -4412,7 +4412,7 @@ export interface CreateCisScanConfigurationRequest {
|
|
|
4412
4412
|
* <p>The tags for the CIS scan configuration.</p>
|
|
4413
4413
|
* @public
|
|
4414
4414
|
*/
|
|
4415
|
-
tags?: Record<string, string
|
|
4415
|
+
tags?: Record<string, string> | undefined;
|
|
4416
4416
|
}
|
|
4417
4417
|
/**
|
|
4418
4418
|
* @public
|
|
@@ -4422,7 +4422,7 @@ export interface CreateCisScanConfigurationResponse {
|
|
|
4422
4422
|
* <p>The scan configuration ARN for the CIS scan configuration.</p>
|
|
4423
4423
|
* @public
|
|
4424
4424
|
*/
|
|
4425
|
-
scanConfigurationArn?: string;
|
|
4425
|
+
scanConfigurationArn?: string | undefined;
|
|
4426
4426
|
}
|
|
4427
4427
|
/**
|
|
4428
4428
|
* @public
|
|
@@ -4445,12 +4445,12 @@ export interface DateFilter {
|
|
|
4445
4445
|
* <p>A timestamp representing the start of the time period filtered on.</p>
|
|
4446
4446
|
* @public
|
|
4447
4447
|
*/
|
|
4448
|
-
startInclusive?: Date;
|
|
4448
|
+
startInclusive?: Date | undefined;
|
|
4449
4449
|
/**
|
|
4450
4450
|
* <p>A timestamp representing the end of the time period filtered on.</p>
|
|
4451
4451
|
* @public
|
|
4452
4452
|
*/
|
|
4453
|
-
endInclusive?: Date;
|
|
4453
|
+
endInclusive?: Date | undefined;
|
|
4454
4454
|
}
|
|
4455
4455
|
/**
|
|
4456
4456
|
* <p>An object that describes the details of a number filter.</p>
|
|
@@ -4461,12 +4461,12 @@ export interface NumberFilter {
|
|
|
4461
4461
|
* <p>The highest number to be included in the filter.</p>
|
|
4462
4462
|
* @public
|
|
4463
4463
|
*/
|
|
4464
|
-
upperInclusive?: number;
|
|
4464
|
+
upperInclusive?: number | undefined;
|
|
4465
4465
|
/**
|
|
4466
4466
|
* <p>The lowest number to be included in the filter.</p>
|
|
4467
4467
|
* @public
|
|
4468
4468
|
*/
|
|
4469
|
-
lowerInclusive?: number;
|
|
4469
|
+
lowerInclusive?: number | undefined;
|
|
4470
4470
|
}
|
|
4471
4471
|
/**
|
|
4472
4472
|
* <p>An object that describes the details of a port range filter.</p>
|
|
@@ -4477,12 +4477,12 @@ export interface PortRangeFilter {
|
|
|
4477
4477
|
* <p>The port number the port range begins at.</p>
|
|
4478
4478
|
* @public
|
|
4479
4479
|
*/
|
|
4480
|
-
beginInclusive?: number;
|
|
4480
|
+
beginInclusive?: number | undefined;
|
|
4481
4481
|
/**
|
|
4482
4482
|
* <p>The port number the port range ends at.</p>
|
|
4483
4483
|
* @public
|
|
4484
4484
|
*/
|
|
4485
|
-
endInclusive?: number;
|
|
4485
|
+
endInclusive?: number | undefined;
|
|
4486
4486
|
}
|
|
4487
4487
|
/**
|
|
4488
4488
|
* <p>Contains information on the details of a package filter.</p>
|
|
@@ -4493,42 +4493,42 @@ export interface PackageFilter {
|
|
|
4493
4493
|
* <p>An object that contains details on the name of the package to filter on.</p>
|
|
4494
4494
|
* @public
|
|
4495
4495
|
*/
|
|
4496
|
-
name?: StringFilter;
|
|
4496
|
+
name?: StringFilter | undefined;
|
|
4497
4497
|
/**
|
|
4498
4498
|
* <p>The package version to filter on.</p>
|
|
4499
4499
|
* @public
|
|
4500
4500
|
*/
|
|
4501
|
-
version?: StringFilter;
|
|
4501
|
+
version?: StringFilter | undefined;
|
|
4502
4502
|
/**
|
|
4503
4503
|
* <p>An object that contains details on the package epoch to filter on.</p>
|
|
4504
4504
|
* @public
|
|
4505
4505
|
*/
|
|
4506
|
-
epoch?: NumberFilter;
|
|
4506
|
+
epoch?: NumberFilter | undefined;
|
|
4507
4507
|
/**
|
|
4508
4508
|
* <p>An object that contains details on the package release to filter on.</p>
|
|
4509
4509
|
* @public
|
|
4510
4510
|
*/
|
|
4511
|
-
release?: StringFilter;
|
|
4511
|
+
release?: StringFilter | undefined;
|
|
4512
4512
|
/**
|
|
4513
4513
|
* <p>An object that contains details on the package architecture type to filter on.</p>
|
|
4514
4514
|
* @public
|
|
4515
4515
|
*/
|
|
4516
|
-
architecture?: StringFilter;
|
|
4516
|
+
architecture?: StringFilter | undefined;
|
|
4517
4517
|
/**
|
|
4518
4518
|
* <p>An object that contains details on the source layer hash to filter on.</p>
|
|
4519
4519
|
* @public
|
|
4520
4520
|
*/
|
|
4521
|
-
sourceLayerHash?: StringFilter;
|
|
4521
|
+
sourceLayerHash?: StringFilter | undefined;
|
|
4522
4522
|
/**
|
|
4523
4523
|
* <p>An object that describes the details of a string filter.</p>
|
|
4524
4524
|
* @public
|
|
4525
4525
|
*/
|
|
4526
|
-
sourceLambdaLayerArn?: StringFilter;
|
|
4526
|
+
sourceLambdaLayerArn?: StringFilter | undefined;
|
|
4527
4527
|
/**
|
|
4528
4528
|
* <p>An object that contains details on the package file path to filter on.</p>
|
|
4529
4529
|
* @public
|
|
4530
4530
|
*/
|
|
4531
|
-
filePath?: StringFilter;
|
|
4531
|
+
filePath?: StringFilter | undefined;
|
|
4532
4532
|
}
|
|
4533
4533
|
/**
|
|
4534
4534
|
* <p>Details on the criteria used to define the filter.</p>
|
|
@@ -4539,214 +4539,214 @@ export interface FilterCriteria {
|
|
|
4539
4539
|
* <p>Details on the finding ARNs used to filter findings.</p>
|
|
4540
4540
|
* @public
|
|
4541
4541
|
*/
|
|
4542
|
-
findingArn?: StringFilter[];
|
|
4542
|
+
findingArn?: StringFilter[] | undefined;
|
|
4543
4543
|
/**
|
|
4544
4544
|
* <p>Details of the Amazon Web Services account IDs used to filter findings.</p>
|
|
4545
4545
|
* @public
|
|
4546
4546
|
*/
|
|
4547
|
-
awsAccountId?: StringFilter[];
|
|
4547
|
+
awsAccountId?: StringFilter[] | undefined;
|
|
4548
4548
|
/**
|
|
4549
4549
|
* <p>Details on the finding types used to filter findings.</p>
|
|
4550
4550
|
* @public
|
|
4551
4551
|
*/
|
|
4552
|
-
findingType?: StringFilter[];
|
|
4552
|
+
findingType?: StringFilter[] | undefined;
|
|
4553
4553
|
/**
|
|
4554
4554
|
* <p>Details on the severity used to filter findings.</p>
|
|
4555
4555
|
* @public
|
|
4556
4556
|
*/
|
|
4557
|
-
severity?: StringFilter[];
|
|
4557
|
+
severity?: StringFilter[] | undefined;
|
|
4558
4558
|
/**
|
|
4559
4559
|
* <p>Details on the date and time a finding was first seen used to filter findings.</p>
|
|
4560
4560
|
* @public
|
|
4561
4561
|
*/
|
|
4562
|
-
firstObservedAt?: DateFilter[];
|
|
4562
|
+
firstObservedAt?: DateFilter[] | undefined;
|
|
4563
4563
|
/**
|
|
4564
4564
|
* <p>Details on the date and time a finding was last seen used to filter findings.</p>
|
|
4565
4565
|
* @public
|
|
4566
4566
|
*/
|
|
4567
|
-
lastObservedAt?: DateFilter[];
|
|
4567
|
+
lastObservedAt?: DateFilter[] | undefined;
|
|
4568
4568
|
/**
|
|
4569
4569
|
* <p>Details on the date and time a finding was last updated at used to filter findings.</p>
|
|
4570
4570
|
* @public
|
|
4571
4571
|
*/
|
|
4572
|
-
updatedAt?: DateFilter[];
|
|
4572
|
+
updatedAt?: DateFilter[] | undefined;
|
|
4573
4573
|
/**
|
|
4574
4574
|
* <p>Details on the finding status types used to filter findings.</p>
|
|
4575
4575
|
* @public
|
|
4576
4576
|
*/
|
|
4577
|
-
findingStatus?: StringFilter[];
|
|
4577
|
+
findingStatus?: StringFilter[] | undefined;
|
|
4578
4578
|
/**
|
|
4579
4579
|
* <p>Details on the finding title used to filter findings.</p>
|
|
4580
4580
|
* @public
|
|
4581
4581
|
*/
|
|
4582
|
-
title?: StringFilter[];
|
|
4582
|
+
title?: StringFilter[] | undefined;
|
|
4583
4583
|
/**
|
|
4584
4584
|
* <p>The Amazon Inspector score to filter on.</p>
|
|
4585
4585
|
* @public
|
|
4586
4586
|
*/
|
|
4587
|
-
inspectorScore?: NumberFilter[];
|
|
4587
|
+
inspectorScore?: NumberFilter[] | undefined;
|
|
4588
4588
|
/**
|
|
4589
4589
|
* <p>Details on the resource types used to filter findings.</p>
|
|
4590
4590
|
* @public
|
|
4591
4591
|
*/
|
|
4592
|
-
resourceType?: StringFilter[];
|
|
4592
|
+
resourceType?: StringFilter[] | undefined;
|
|
4593
4593
|
/**
|
|
4594
4594
|
* <p>Details on the resource IDs used to filter findings.</p>
|
|
4595
4595
|
* @public
|
|
4596
4596
|
*/
|
|
4597
|
-
resourceId?: StringFilter[];
|
|
4597
|
+
resourceId?: StringFilter[] | undefined;
|
|
4598
4598
|
/**
|
|
4599
4599
|
* <p>Details on the resource tags used to filter findings.</p>
|
|
4600
4600
|
* @public
|
|
4601
4601
|
*/
|
|
4602
|
-
resourceTags?: MapFilter[];
|
|
4602
|
+
resourceTags?: MapFilter[] | undefined;
|
|
4603
4603
|
/**
|
|
4604
4604
|
* <p>Details of the Amazon EC2 instance image IDs used to filter findings.</p>
|
|
4605
4605
|
* @public
|
|
4606
4606
|
*/
|
|
4607
|
-
ec2InstanceImageId?: StringFilter[];
|
|
4607
|
+
ec2InstanceImageId?: StringFilter[] | undefined;
|
|
4608
4608
|
/**
|
|
4609
4609
|
* <p>Details of the Amazon EC2 instance VPC IDs used to filter findings.</p>
|
|
4610
4610
|
* @public
|
|
4611
4611
|
*/
|
|
4612
|
-
ec2InstanceVpcId?: StringFilter[];
|
|
4612
|
+
ec2InstanceVpcId?: StringFilter[] | undefined;
|
|
4613
4613
|
/**
|
|
4614
4614
|
* <p>Details of the Amazon EC2 instance subnet IDs used to filter findings.</p>
|
|
4615
4615
|
* @public
|
|
4616
4616
|
*/
|
|
4617
|
-
ec2InstanceSubnetId?: StringFilter[];
|
|
4617
|
+
ec2InstanceSubnetId?: StringFilter[] | undefined;
|
|
4618
4618
|
/**
|
|
4619
4619
|
* <p>Details on the Amazon ECR image push date and time used to filter findings.</p>
|
|
4620
4620
|
* @public
|
|
4621
4621
|
*/
|
|
4622
|
-
ecrImagePushedAt?: DateFilter[];
|
|
4622
|
+
ecrImagePushedAt?: DateFilter[] | undefined;
|
|
4623
4623
|
/**
|
|
4624
4624
|
* <p>Details of the Amazon ECR image architecture types used to filter findings.</p>
|
|
4625
4625
|
* @public
|
|
4626
4626
|
*/
|
|
4627
|
-
ecrImageArchitecture?: StringFilter[];
|
|
4627
|
+
ecrImageArchitecture?: StringFilter[] | undefined;
|
|
4628
4628
|
/**
|
|
4629
4629
|
* <p>Details on the Amazon ECR registry used to filter findings.</p>
|
|
4630
4630
|
* @public
|
|
4631
4631
|
*/
|
|
4632
|
-
ecrImageRegistry?: StringFilter[];
|
|
4632
|
+
ecrImageRegistry?: StringFilter[] | undefined;
|
|
4633
4633
|
/**
|
|
4634
4634
|
* <p>Details on the name of the Amazon ECR repository used to filter findings.</p>
|
|
4635
4635
|
* @public
|
|
4636
4636
|
*/
|
|
4637
|
-
ecrImageRepositoryName?: StringFilter[];
|
|
4637
|
+
ecrImageRepositoryName?: StringFilter[] | undefined;
|
|
4638
4638
|
/**
|
|
4639
4639
|
* <p>The tags attached to the Amazon ECR container image.</p>
|
|
4640
4640
|
* @public
|
|
4641
4641
|
*/
|
|
4642
|
-
ecrImageTags?: StringFilter[];
|
|
4642
|
+
ecrImageTags?: StringFilter[] | undefined;
|
|
4643
4643
|
/**
|
|
4644
4644
|
* <p>Details of the Amazon ECR image hashes used to filter findings.</p>
|
|
4645
4645
|
* @public
|
|
4646
4646
|
*/
|
|
4647
|
-
ecrImageHash?: StringFilter[];
|
|
4647
|
+
ecrImageHash?: StringFilter[] | undefined;
|
|
4648
4648
|
/**
|
|
4649
4649
|
* <p>Details on the port ranges used to filter findings.</p>
|
|
4650
4650
|
* @public
|
|
4651
4651
|
*/
|
|
4652
|
-
portRange?: PortRangeFilter[];
|
|
4652
|
+
portRange?: PortRangeFilter[] | undefined;
|
|
4653
4653
|
/**
|
|
4654
4654
|
* <p>Details on network protocol used to filter findings.</p>
|
|
4655
4655
|
* @public
|
|
4656
4656
|
*/
|
|
4657
|
-
networkProtocol?: StringFilter[];
|
|
4657
|
+
networkProtocol?: StringFilter[] | undefined;
|
|
4658
4658
|
/**
|
|
4659
4659
|
* <p>Details of the component IDs used to filter findings.</p>
|
|
4660
4660
|
* @public
|
|
4661
4661
|
*/
|
|
4662
|
-
componentId?: StringFilter[];
|
|
4662
|
+
componentId?: StringFilter[] | undefined;
|
|
4663
4663
|
/**
|
|
4664
4664
|
* <p>Details of the component types used to filter findings.</p>
|
|
4665
4665
|
* @public
|
|
4666
4666
|
*/
|
|
4667
|
-
componentType?: StringFilter[];
|
|
4667
|
+
componentType?: StringFilter[] | undefined;
|
|
4668
4668
|
/**
|
|
4669
4669
|
* <p>Details on the vulnerability ID used to filter findings.</p>
|
|
4670
4670
|
* @public
|
|
4671
4671
|
*/
|
|
4672
|
-
vulnerabilityId?: StringFilter[];
|
|
4672
|
+
vulnerabilityId?: StringFilter[] | undefined;
|
|
4673
4673
|
/**
|
|
4674
4674
|
* <p>Details on the vulnerability type used to filter findings.</p>
|
|
4675
4675
|
* @public
|
|
4676
4676
|
*/
|
|
4677
|
-
vulnerabilitySource?: StringFilter[];
|
|
4677
|
+
vulnerabilitySource?: StringFilter[] | undefined;
|
|
4678
4678
|
/**
|
|
4679
4679
|
* <p>Details on the vendor severity used to filter findings.</p>
|
|
4680
4680
|
* @public
|
|
4681
4681
|
*/
|
|
4682
|
-
vendorSeverity?: StringFilter[];
|
|
4682
|
+
vendorSeverity?: StringFilter[] | undefined;
|
|
4683
4683
|
/**
|
|
4684
4684
|
* <p>Details on the vulnerable packages used to filter findings.</p>
|
|
4685
4685
|
* @public
|
|
4686
4686
|
*/
|
|
4687
|
-
vulnerablePackages?: PackageFilter[];
|
|
4687
|
+
vulnerablePackages?: PackageFilter[] | undefined;
|
|
4688
4688
|
/**
|
|
4689
4689
|
* <p>Details on the related vulnerabilities used to filter findings.</p>
|
|
4690
4690
|
* @public
|
|
4691
4691
|
*/
|
|
4692
|
-
relatedVulnerabilities?: StringFilter[];
|
|
4692
|
+
relatedVulnerabilities?: StringFilter[] | undefined;
|
|
4693
4693
|
/**
|
|
4694
4694
|
* <p>Details on whether a fix is available through a version update. This value can be <code>YES</code>, <code>NO</code>, or <code>PARTIAL</code>. A <code>PARTIAL</code> fix means that some, but not all, of the packages identified in the finding have fixes available through updated versions.</p>
|
|
4695
4695
|
* @public
|
|
4696
4696
|
*/
|
|
4697
|
-
fixAvailable?: StringFilter[];
|
|
4697
|
+
fixAvailable?: StringFilter[] | undefined;
|
|
4698
4698
|
/**
|
|
4699
4699
|
* <p>Filters the list of Amazon Web Services Lambda functions by the name of the function.</p>
|
|
4700
4700
|
* @public
|
|
4701
4701
|
*/
|
|
4702
|
-
lambdaFunctionName?: StringFilter[];
|
|
4702
|
+
lambdaFunctionName?: StringFilter[] | undefined;
|
|
4703
4703
|
/**
|
|
4704
4704
|
* <p>Filters the list of Amazon Web Services Lambda functions by the function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">
|
|
4705
4705
|
* layers</a>. A Lambda function can have up to five layers.</p>
|
|
4706
4706
|
* @public
|
|
4707
4707
|
*/
|
|
4708
|
-
lambdaFunctionLayers?: StringFilter[];
|
|
4708
|
+
lambdaFunctionLayers?: StringFilter[] | undefined;
|
|
4709
4709
|
/**
|
|
4710
4710
|
* <p>Filters the list of Amazon Web Services Lambda functions by the runtime environment for the Lambda function.</p>
|
|
4711
4711
|
* @public
|
|
4712
4712
|
*/
|
|
4713
|
-
lambdaFunctionRuntime?: StringFilter[];
|
|
4713
|
+
lambdaFunctionRuntime?: StringFilter[] | undefined;
|
|
4714
4714
|
/**
|
|
4715
4715
|
* <p>Filters the list of Amazon Web Services Lambda functions by the date and time that a user last updated the configuration, in <a href="https://www.iso.org/iso-8601-date-and-time-format.html">ISO 8601 format</a>
|
|
4716
4716
|
* </p>
|
|
4717
4717
|
* @public
|
|
4718
4718
|
*/
|
|
4719
|
-
lambdaFunctionLastModifiedAt?: DateFilter[];
|
|
4719
|
+
lambdaFunctionLastModifiedAt?: DateFilter[] | undefined;
|
|
4720
4720
|
/**
|
|
4721
4721
|
* <p>Filters the list of Amazon Web Services Lambda functions by execution role.</p>
|
|
4722
4722
|
* @public
|
|
4723
4723
|
*/
|
|
4724
|
-
lambdaFunctionExecutionRoleArn?: StringFilter[];
|
|
4724
|
+
lambdaFunctionExecutionRoleArn?: StringFilter[] | undefined;
|
|
4725
4725
|
/**
|
|
4726
4726
|
* <p>Filters the list of Amazon Web Services Lambda findings by the availability of exploits.</p>
|
|
4727
4727
|
* @public
|
|
4728
4728
|
*/
|
|
4729
|
-
exploitAvailable?: StringFilter[];
|
|
4729
|
+
exploitAvailable?: StringFilter[] | undefined;
|
|
4730
4730
|
/**
|
|
4731
4731
|
* <p>The name of the detector used to identify a code vulnerability in a Lambda function used to filter findings.</p>
|
|
4732
4732
|
* @public
|
|
4733
4733
|
*/
|
|
4734
|
-
codeVulnerabilityDetectorName?: StringFilter[];
|
|
4734
|
+
codeVulnerabilityDetectorName?: StringFilter[] | undefined;
|
|
4735
4735
|
/**
|
|
4736
4736
|
* <p>The detector type tag associated with the vulnerability used to filter findings. Detector tags group related vulnerabilities by common themes or tactics. For a list of available tags by programming language, see <a href="https://docs.aws.amazon.com/codeguru/detector-library/java/tags/">Java tags</a>, or <a href="https://docs.aws.amazon.com/codeguru/detector-library/python/tags/">Python tags</a>. </p>
|
|
4737
4737
|
* @public
|
|
4738
4738
|
*/
|
|
4739
|
-
codeVulnerabilityDetectorTags?: StringFilter[];
|
|
4739
|
+
codeVulnerabilityDetectorTags?: StringFilter[] | undefined;
|
|
4740
4740
|
/**
|
|
4741
4741
|
* <p>The file path to the file in a Lambda function that contains a code vulnerability used to filter findings.</p>
|
|
4742
4742
|
* @public
|
|
4743
4743
|
*/
|
|
4744
|
-
codeVulnerabilityFilePath?: StringFilter[];
|
|
4744
|
+
codeVulnerabilityFilePath?: StringFilter[] | undefined;
|
|
4745
4745
|
/**
|
|
4746
4746
|
* <p>The EPSS score used to filter findings.</p>
|
|
4747
4747
|
* @public
|
|
4748
4748
|
*/
|
|
4749
|
-
epssScore?: NumberFilter[];
|
|
4749
|
+
epssScore?: NumberFilter[] | undefined;
|
|
4750
4750
|
}
|
|
4751
4751
|
/**
|
|
4752
4752
|
* @public
|
|
@@ -4761,7 +4761,7 @@ export interface CreateFilterRequest {
|
|
|
4761
4761
|
* <p>A description of the filter.</p>
|
|
4762
4762
|
* @public
|
|
4763
4763
|
*/
|
|
4764
|
-
description?: string;
|
|
4764
|
+
description?: string | undefined;
|
|
4765
4765
|
/**
|
|
4766
4766
|
* <p>Defines the criteria to be used in the filter for querying findings.</p>
|
|
4767
4767
|
* @public
|
|
@@ -4778,12 +4778,12 @@ export interface CreateFilterRequest {
|
|
|
4778
4778
|
* <p>A list of tags for the filter.</p>
|
|
4779
4779
|
* @public
|
|
4780
4780
|
*/
|
|
4781
|
-
tags?: Record<string, string
|
|
4781
|
+
tags?: Record<string, string> | undefined;
|
|
4782
4782
|
/**
|
|
4783
4783
|
* <p>The reason for creating the filter.</p>
|
|
4784
4784
|
* @public
|
|
4785
4785
|
*/
|
|
4786
|
-
reason?: string;
|
|
4786
|
+
reason?: string | undefined;
|
|
4787
4787
|
}
|
|
4788
4788
|
/**
|
|
4789
4789
|
* @public
|
|
@@ -4839,7 +4839,7 @@ export interface Destination {
|
|
|
4839
4839
|
* <p>The prefix that the findings will be written under.</p>
|
|
4840
4840
|
* @public
|
|
4841
4841
|
*/
|
|
4842
|
-
keyPrefix?: string;
|
|
4842
|
+
keyPrefix?: string | undefined;
|
|
4843
4843
|
/**
|
|
4844
4844
|
* <p>The ARN of the KMS key used to encrypt data when exporting findings.</p>
|
|
4845
4845
|
* @public
|
|
@@ -4854,7 +4854,7 @@ export interface CreateFindingsReportRequest {
|
|
|
4854
4854
|
* <p>The filter criteria to apply to the results of the finding report.</p>
|
|
4855
4855
|
* @public
|
|
4856
4856
|
*/
|
|
4857
|
-
filterCriteria?: FilterCriteria;
|
|
4857
|
+
filterCriteria?: FilterCriteria | undefined;
|
|
4858
4858
|
/**
|
|
4859
4859
|
* <p>The format to generate the report in.</p>
|
|
4860
4860
|
* @public
|
|
@@ -4874,7 +4874,7 @@ export interface CreateFindingsReportResponse {
|
|
|
4874
4874
|
* <p>The ID of the report.</p>
|
|
4875
4875
|
* @public
|
|
4876
4876
|
*/
|
|
4877
|
-
reportId?: string;
|
|
4877
|
+
reportId?: string | undefined;
|
|
4878
4878
|
}
|
|
4879
4879
|
/**
|
|
4880
4880
|
* @public
|
|
@@ -4946,7 +4946,7 @@ export interface ResourceMapFilter {
|
|
|
4946
4946
|
* <p>The filter's value.</p>
|
|
4947
4947
|
* @public
|
|
4948
4948
|
*/
|
|
4949
|
-
value?: string;
|
|
4949
|
+
value?: string | undefined;
|
|
4950
4950
|
}
|
|
4951
4951
|
/**
|
|
4952
4952
|
* <p>The resource filter criteria for a Software bill of materials (SBOM) report.</p>
|
|
@@ -4957,42 +4957,42 @@ export interface ResourceFilterCriteria {
|
|
|
4957
4957
|
* <p>The account IDs used as resource filter criteria.</p>
|
|
4958
4958
|
* @public
|
|
4959
4959
|
*/
|
|
4960
|
-
accountId?: ResourceStringFilter[];
|
|
4960
|
+
accountId?: ResourceStringFilter[] | undefined;
|
|
4961
4961
|
/**
|
|
4962
4962
|
* <p>The resource IDs used as resource filter criteria.</p>
|
|
4963
4963
|
* @public
|
|
4964
4964
|
*/
|
|
4965
|
-
resourceId?: ResourceStringFilter[];
|
|
4965
|
+
resourceId?: ResourceStringFilter[] | undefined;
|
|
4966
4966
|
/**
|
|
4967
4967
|
* <p>The resource types used as resource filter criteria.</p>
|
|
4968
4968
|
* @public
|
|
4969
4969
|
*/
|
|
4970
|
-
resourceType?: ResourceStringFilter[];
|
|
4970
|
+
resourceType?: ResourceStringFilter[] | undefined;
|
|
4971
4971
|
/**
|
|
4972
4972
|
* <p>The ECR repository names used as resource filter criteria.</p>
|
|
4973
4973
|
* @public
|
|
4974
4974
|
*/
|
|
4975
|
-
ecrRepositoryName?: ResourceStringFilter[];
|
|
4975
|
+
ecrRepositoryName?: ResourceStringFilter[] | undefined;
|
|
4976
4976
|
/**
|
|
4977
4977
|
* <p>The Amazon Web Services Lambda function name used as resource filter criteria.</p>
|
|
4978
4978
|
* @public
|
|
4979
4979
|
*/
|
|
4980
|
-
lambdaFunctionName?: ResourceStringFilter[];
|
|
4980
|
+
lambdaFunctionName?: ResourceStringFilter[] | undefined;
|
|
4981
4981
|
/**
|
|
4982
4982
|
* <p>The ECR image tags used as resource filter criteria.</p>
|
|
4983
4983
|
* @public
|
|
4984
4984
|
*/
|
|
4985
|
-
ecrImageTags?: ResourceStringFilter[];
|
|
4985
|
+
ecrImageTags?: ResourceStringFilter[] | undefined;
|
|
4986
4986
|
/**
|
|
4987
4987
|
* <p>The EC2 instance tags used as resource filter criteria.</p>
|
|
4988
4988
|
* @public
|
|
4989
4989
|
*/
|
|
4990
|
-
ec2InstanceTags?: ResourceMapFilter[];
|
|
4990
|
+
ec2InstanceTags?: ResourceMapFilter[] | undefined;
|
|
4991
4991
|
/**
|
|
4992
4992
|
* <p>The Amazon Web Services Lambda function tags used as resource filter criteria.</p>
|
|
4993
4993
|
* @public
|
|
4994
4994
|
*/
|
|
4995
|
-
lambdaFunctionTags?: ResourceMapFilter[];
|
|
4995
|
+
lambdaFunctionTags?: ResourceMapFilter[] | undefined;
|
|
4996
4996
|
}
|
|
4997
4997
|
/**
|
|
4998
4998
|
* @public
|
|
@@ -5002,7 +5002,7 @@ export interface CreateSbomExportRequest {
|
|
|
5002
5002
|
* <p>The resource filter criteria for the software bill of materials (SBOM) report.</p>
|
|
5003
5003
|
* @public
|
|
5004
5004
|
*/
|
|
5005
|
-
resourceFilterCriteria?: ResourceFilterCriteria;
|
|
5005
|
+
resourceFilterCriteria?: ResourceFilterCriteria | undefined;
|
|
5006
5006
|
/**
|
|
5007
5007
|
* <p>The output format for the software bill of materials (SBOM) report.</p>
|
|
5008
5008
|
* @public
|
|
@@ -5022,7 +5022,7 @@ export interface CreateSbomExportResponse {
|
|
|
5022
5022
|
* <p>The report ID for the software bill of materials (SBOM) report.</p>
|
|
5023
5023
|
* @public
|
|
5024
5024
|
*/
|
|
5025
|
-
reportId?: string;
|
|
5025
|
+
reportId?: string | undefined;
|
|
5026
5026
|
}
|
|
5027
5027
|
/**
|
|
5028
5028
|
* @public
|
|
@@ -5044,12 +5044,12 @@ export interface Cvss2 {
|
|
|
5044
5044
|
* <p>The CVSS v2 base score for the vulnerability.</p>
|
|
5045
5045
|
* @public
|
|
5046
5046
|
*/
|
|
5047
|
-
baseScore?: number;
|
|
5047
|
+
baseScore?: number | undefined;
|
|
5048
5048
|
/**
|
|
5049
5049
|
* <p>The scoring vector associated with the CVSS v2 score.</p>
|
|
5050
5050
|
* @public
|
|
5051
5051
|
*/
|
|
5052
|
-
scoringVector?: string;
|
|
5052
|
+
scoringVector?: string | undefined;
|
|
5053
5053
|
}
|
|
5054
5054
|
/**
|
|
5055
5055
|
* <p>The Common Vulnerability Scoring System (CVSS) version 3 details for the vulnerability.</p>
|
|
@@ -5060,12 +5060,12 @@ export interface Cvss3 {
|
|
|
5060
5060
|
* <p>The CVSS v3 base score for the vulnerability.</p>
|
|
5061
5061
|
* @public
|
|
5062
5062
|
*/
|
|
5063
|
-
baseScore?: number;
|
|
5063
|
+
baseScore?: number | undefined;
|
|
5064
5064
|
/**
|
|
5065
5065
|
* <p>The scoring vector associated with the CVSS v3 score.</p>
|
|
5066
5066
|
* @public
|
|
5067
5067
|
*/
|
|
5068
|
-
scoringVector?: string;
|
|
5068
|
+
scoringVector?: string | undefined;
|
|
5069
5069
|
}
|
|
5070
5070
|
/**
|
|
5071
5071
|
* <p>The CVSS score for a finding.</p>
|
|
@@ -5123,7 +5123,7 @@ export interface CvssScoreDetails {
|
|
|
5123
5123
|
* <p>The source of the CVSS data.</p>
|
|
5124
5124
|
* @public
|
|
5125
5125
|
*/
|
|
5126
|
-
cvssSource?: string;
|
|
5126
|
+
cvssSource?: string | undefined;
|
|
5127
5127
|
/**
|
|
5128
5128
|
* <p>The CVSS version used in scoring.</p>
|
|
5129
5129
|
* @public
|
|
@@ -5143,7 +5143,7 @@ export interface CvssScoreDetails {
|
|
|
5143
5143
|
* <p>An object that contains details about adjustment Amazon Inspector made to the CVSS score.</p>
|
|
5144
5144
|
* @public
|
|
5145
5145
|
*/
|
|
5146
|
-
adjustments?: CvssScoreAdjustment[];
|
|
5146
|
+
adjustments?: CvssScoreAdjustment[] | undefined;
|
|
5147
5147
|
}
|
|
5148
5148
|
/**
|
|
5149
5149
|
* @public
|
|
@@ -5176,12 +5176,12 @@ export interface DelegatedAdmin {
|
|
|
5176
5176
|
* <p>The Amazon Web Services account ID of the Amazon Inspector delegated administrator for your organization.</p>
|
|
5177
5177
|
* @public
|
|
5178
5178
|
*/
|
|
5179
|
-
accountId?: string;
|
|
5179
|
+
accountId?: string | undefined;
|
|
5180
5180
|
/**
|
|
5181
5181
|
* <p>The status of the Amazon Inspector delegated administrator.</p>
|
|
5182
5182
|
* @public
|
|
5183
5183
|
*/
|
|
5184
|
-
relationshipStatus?: RelationshipStatus;
|
|
5184
|
+
relationshipStatus?: RelationshipStatus | undefined;
|
|
5185
5185
|
}
|
|
5186
5186
|
/**
|
|
5187
5187
|
* @public
|
|
@@ -5204,12 +5204,12 @@ export interface DelegatedAdminAccount {
|
|
|
5204
5204
|
* <p>The Amazon Web Services account ID of the Amazon Inspector delegated administrator for your organization.</p>
|
|
5205
5205
|
* @public
|
|
5206
5206
|
*/
|
|
5207
|
-
accountId?: string;
|
|
5207
|
+
accountId?: string | undefined;
|
|
5208
5208
|
/**
|
|
5209
5209
|
* <p>The status of the Amazon Inspector delegated administrator.</p>
|
|
5210
5210
|
* @public
|
|
5211
5211
|
*/
|
|
5212
|
-
status?: DelegatedAdminStatus;
|
|
5212
|
+
status?: DelegatedAdminStatus | undefined;
|
|
5213
5213
|
}
|
|
5214
5214
|
/**
|
|
5215
5215
|
* @public
|
|
@@ -5264,12 +5264,12 @@ export interface DescribeOrganizationConfigurationResponse {
|
|
|
5264
5264
|
* <p>The scan types are automatically enabled for new members of your organization.</p>
|
|
5265
5265
|
* @public
|
|
5266
5266
|
*/
|
|
5267
|
-
autoEnable?: AutoEnable;
|
|
5267
|
+
autoEnable?: AutoEnable | undefined;
|
|
5268
5268
|
/**
|
|
5269
5269
|
* <p>Represents whether your organization has reached the maximum Amazon Web Services account limit for Amazon Inspector.</p>
|
|
5270
5270
|
* @public
|
|
5271
5271
|
*/
|
|
5272
|
-
maxAccountLimitReached?: boolean;
|
|
5272
|
+
maxAccountLimitReached?: boolean | undefined;
|
|
5273
5273
|
}
|
|
5274
5274
|
/**
|
|
5275
5275
|
* @public
|
|
@@ -5293,12 +5293,12 @@ export interface DisableRequest {
|
|
|
5293
5293
|
* <p>An array of account IDs you want to disable Amazon Inspector scans for.</p>
|
|
5294
5294
|
* @public
|
|
5295
5295
|
*/
|
|
5296
|
-
accountIds?: string[];
|
|
5296
|
+
accountIds?: string[] | undefined;
|
|
5297
5297
|
/**
|
|
5298
5298
|
* <p>The resource scan types you want to disable.</p>
|
|
5299
5299
|
* @public
|
|
5300
5300
|
*/
|
|
5301
|
-
resourceTypes?: ResourceScanType[];
|
|
5301
|
+
resourceTypes?: ResourceScanType[] | undefined;
|
|
5302
5302
|
}
|
|
5303
5303
|
/**
|
|
5304
5304
|
* @public
|
|
@@ -5315,7 +5315,7 @@ export interface DisableResponse {
|
|
|
5315
5315
|
* provided for each account.</p>
|
|
5316
5316
|
* @public
|
|
5317
5317
|
*/
|
|
5318
|
-
failedAccounts?: FailedAccount[];
|
|
5318
|
+
failedAccounts?: FailedAccount[] | undefined;
|
|
5319
5319
|
}
|
|
5320
5320
|
/**
|
|
5321
5321
|
* @public
|
|
@@ -5401,12 +5401,12 @@ export interface Ec2ScanModeState {
|
|
|
5401
5401
|
* <p>The scan method that is applied to the instance.</p>
|
|
5402
5402
|
* @public
|
|
5403
5403
|
*/
|
|
5404
|
-
scanMode?: Ec2ScanMode;
|
|
5404
|
+
scanMode?: Ec2ScanMode | undefined;
|
|
5405
5405
|
/**
|
|
5406
5406
|
* <p>The status of the Amazon EC2 scan mode setting.</p>
|
|
5407
5407
|
* @public
|
|
5408
5408
|
*/
|
|
5409
|
-
scanModeStatus?: Ec2ScanModeStatus;
|
|
5409
|
+
scanModeStatus?: Ec2ScanModeStatus | undefined;
|
|
5410
5410
|
}
|
|
5411
5411
|
/**
|
|
5412
5412
|
* <p>Details about the state of the EC2 scan configuration for your environment.</p>
|
|
@@ -5417,7 +5417,7 @@ export interface Ec2ConfigurationState {
|
|
|
5417
5417
|
* <p>An object that contains details about the state of the Amazon EC2 scan mode.</p>
|
|
5418
5418
|
* @public
|
|
5419
5419
|
*/
|
|
5420
|
-
scanModeState?: Ec2ScanModeState;
|
|
5420
|
+
scanModeState?: Ec2ScanModeState | undefined;
|
|
5421
5421
|
}
|
|
5422
5422
|
/**
|
|
5423
5423
|
* @public
|
|
@@ -5464,7 +5464,7 @@ export interface EcrConfiguration {
|
|
|
5464
5464
|
* <p>The rescan duration configured for image pull date.</p>
|
|
5465
5465
|
* @public
|
|
5466
5466
|
*/
|
|
5467
|
-
pullDateRescanDuration?: EcrPullDateRescanDuration;
|
|
5467
|
+
pullDateRescanDuration?: EcrPullDateRescanDuration | undefined;
|
|
5468
5468
|
}
|
|
5469
5469
|
/**
|
|
5470
5470
|
* @public
|
|
@@ -5490,22 +5490,22 @@ export interface EcrRescanDurationState {
|
|
|
5490
5490
|
* </p>
|
|
5491
5491
|
* @public
|
|
5492
5492
|
*/
|
|
5493
|
-
rescanDuration?: EcrRescanDuration;
|
|
5493
|
+
rescanDuration?: EcrRescanDuration | undefined;
|
|
5494
5494
|
/**
|
|
5495
5495
|
* <p>The status of changes to the ECR automated re-scan duration.</p>
|
|
5496
5496
|
* @public
|
|
5497
5497
|
*/
|
|
5498
|
-
status?: EcrRescanDurationStatus;
|
|
5498
|
+
status?: EcrRescanDurationStatus | undefined;
|
|
5499
5499
|
/**
|
|
5500
5500
|
* <p>A timestamp representing when the last time the ECR scan duration setting was changed.</p>
|
|
5501
5501
|
* @public
|
|
5502
5502
|
*/
|
|
5503
|
-
updatedAt?: Date;
|
|
5503
|
+
updatedAt?: Date | undefined;
|
|
5504
5504
|
/**
|
|
5505
5505
|
* <p>The rescan duration configured for image pull date.</p>
|
|
5506
5506
|
* @public
|
|
5507
5507
|
*/
|
|
5508
|
-
pullDateRescanDuration?: EcrPullDateRescanDuration;
|
|
5508
|
+
pullDateRescanDuration?: EcrPullDateRescanDuration | undefined;
|
|
5509
5509
|
}
|
|
5510
5510
|
/**
|
|
5511
5511
|
* <p>Details about the state of the ECR scans for your environment.</p>
|
|
@@ -5516,7 +5516,7 @@ export interface EcrConfigurationState {
|
|
|
5516
5516
|
* <p>An object that contains details about the state of the ECR re-scan settings.</p>
|
|
5517
5517
|
* @public
|
|
5518
5518
|
*/
|
|
5519
|
-
rescanDurationState?: EcrRescanDurationState;
|
|
5519
|
+
rescanDurationState?: EcrRescanDurationState | undefined;
|
|
5520
5520
|
}
|
|
5521
5521
|
/**
|
|
5522
5522
|
* @public
|
|
@@ -5526,7 +5526,7 @@ export interface EnableRequest {
|
|
|
5526
5526
|
* <p>A list of account IDs you want to enable Amazon Inspector scans for.</p>
|
|
5527
5527
|
* @public
|
|
5528
5528
|
*/
|
|
5529
|
-
accountIds?: string[];
|
|
5529
|
+
accountIds?: string[] | undefined;
|
|
5530
5530
|
/**
|
|
5531
5531
|
* <p>The resource scan types you want to enable.</p>
|
|
5532
5532
|
* @public
|
|
@@ -5536,7 +5536,7 @@ export interface EnableRequest {
|
|
|
5536
5536
|
* <p>The idempotency token for the request.</p>
|
|
5537
5537
|
* @public
|
|
5538
5538
|
*/
|
|
5539
|
-
clientToken?: string;
|
|
5539
|
+
clientToken?: string | undefined;
|
|
5540
5540
|
}
|
|
5541
5541
|
/**
|
|
5542
5542
|
* @public
|
|
@@ -5553,7 +5553,7 @@ export interface EnableResponse {
|
|
|
5553
5553
|
* provided for each account.</p>
|
|
5554
5554
|
* @public
|
|
5555
5555
|
*/
|
|
5556
|
-
failedAccounts?: FailedAccount[];
|
|
5556
|
+
failedAccounts?: FailedAccount[] | undefined;
|
|
5557
5557
|
}
|
|
5558
5558
|
/**
|
|
5559
5559
|
* @public
|
|
@@ -5568,7 +5568,7 @@ export interface EnableDelegatedAdminAccountRequest {
|
|
|
5568
5568
|
* <p>The idempotency token for the request.</p>
|
|
5569
5569
|
* @public
|
|
5570
5570
|
*/
|
|
5571
|
-
clientToken?: string;
|
|
5571
|
+
clientToken?: string | undefined;
|
|
5572
5572
|
}
|
|
5573
5573
|
/**
|
|
5574
5574
|
* @public
|
|
@@ -5589,7 +5589,7 @@ export interface Epss {
|
|
|
5589
5589
|
* <p>The Exploit Prediction Scoring System (EPSS) score.</p>
|
|
5590
5590
|
* @public
|
|
5591
5591
|
*/
|
|
5592
|
-
score?: number;
|
|
5592
|
+
score?: number | undefined;
|
|
5593
5593
|
}
|
|
5594
5594
|
/**
|
|
5595
5595
|
* <p>Details about the Exploit Prediction Scoring System (EPSS) score for a finding.</p>
|
|
@@ -5600,7 +5600,7 @@ export interface EpssDetails {
|
|
|
5600
5600
|
* <p>The EPSS score.</p>
|
|
5601
5601
|
* @public
|
|
5602
5602
|
*/
|
|
5603
|
-
score?: number;
|
|
5603
|
+
score?: number | undefined;
|
|
5604
5604
|
}
|
|
5605
5605
|
/**
|
|
5606
5606
|
* <p>The details of an exploit available for a finding discovered in your environment.</p>
|
|
@@ -5611,7 +5611,7 @@ export interface ExploitabilityDetails {
|
|
|
5611
5611
|
* <p>The date and time of the last exploit associated with a finding discovered in your environment.</p>
|
|
5612
5612
|
* @public
|
|
5613
5613
|
*/
|
|
5614
|
-
lastKnownExploitAt?: Date;
|
|
5614
|
+
lastKnownExploitAt?: Date | undefined;
|
|
5615
5615
|
}
|
|
5616
5616
|
/**
|
|
5617
5617
|
* @public
|
|
@@ -5683,17 +5683,17 @@ export interface Filter {
|
|
|
5683
5683
|
* <p>A description of the filter.</p>
|
|
5684
5684
|
* @public
|
|
5685
5685
|
*/
|
|
5686
|
-
description?: string;
|
|
5686
|
+
description?: string | undefined;
|
|
5687
5687
|
/**
|
|
5688
5688
|
* <p>The reason for the filter.</p>
|
|
5689
5689
|
* @public
|
|
5690
5690
|
*/
|
|
5691
|
-
reason?: string;
|
|
5691
|
+
reason?: string | undefined;
|
|
5692
5692
|
/**
|
|
5693
5693
|
* <p>The tags attached to the filter.</p>
|
|
5694
5694
|
* @public
|
|
5695
5695
|
*/
|
|
5696
|
-
tags?: Record<string, string
|
|
5696
|
+
tags?: Record<string, string> | undefined;
|
|
5697
5697
|
}
|
|
5698
5698
|
/**
|
|
5699
5699
|
* @public
|
|
@@ -5717,7 +5717,7 @@ export interface InspectorScoreDetails {
|
|
|
5717
5717
|
* <p>An object that contains details about the CVSS score given to a finding.</p>
|
|
5718
5718
|
* @public
|
|
5719
5719
|
*/
|
|
5720
|
-
adjustedCvss?: CvssScoreDetails;
|
|
5720
|
+
adjustedCvss?: CvssScoreDetails | undefined;
|
|
5721
5721
|
}
|
|
5722
5722
|
/**
|
|
5723
5723
|
* <p>Details about the step associated with a finding.</p>
|
|
@@ -5744,7 +5744,7 @@ export interface NetworkPath {
|
|
|
5744
5744
|
* <p>The details on the steps in the network path.</p>
|
|
5745
5745
|
* @public
|
|
5746
5746
|
*/
|
|
5747
|
-
steps?: Step[];
|
|
5747
|
+
steps?: Step[] | undefined;
|
|
5748
5748
|
}
|
|
5749
5749
|
/**
|
|
5750
5750
|
* <p>Details about the port range associated with a finding.</p>
|
|
@@ -5842,47 +5842,47 @@ export interface VulnerablePackage {
|
|
|
5842
5842
|
* <p>The source layer hash of the vulnerable package.</p>
|
|
5843
5843
|
* @public
|
|
5844
5844
|
*/
|
|
5845
|
-
sourceLayerHash?: string;
|
|
5845
|
+
sourceLayerHash?: string | undefined;
|
|
5846
5846
|
/**
|
|
5847
5847
|
* <p>The epoch of the vulnerable package.</p>
|
|
5848
5848
|
* @public
|
|
5849
5849
|
*/
|
|
5850
|
-
epoch?: number;
|
|
5850
|
+
epoch?: number | undefined;
|
|
5851
5851
|
/**
|
|
5852
5852
|
* <p>The release of the vulnerable package.</p>
|
|
5853
5853
|
* @public
|
|
5854
5854
|
*/
|
|
5855
|
-
release?: string;
|
|
5855
|
+
release?: string | undefined;
|
|
5856
5856
|
/**
|
|
5857
5857
|
* <p>The architecture of the vulnerable package.</p>
|
|
5858
5858
|
* @public
|
|
5859
5859
|
*/
|
|
5860
|
-
arch?: string;
|
|
5860
|
+
arch?: string | undefined;
|
|
5861
5861
|
/**
|
|
5862
5862
|
* <p>The package manager of the vulnerable package.</p>
|
|
5863
5863
|
* @public
|
|
5864
5864
|
*/
|
|
5865
|
-
packageManager?: PackageManager;
|
|
5865
|
+
packageManager?: PackageManager | undefined;
|
|
5866
5866
|
/**
|
|
5867
5867
|
* <p>The file path of the vulnerable package.</p>
|
|
5868
5868
|
* @public
|
|
5869
5869
|
*/
|
|
5870
|
-
filePath?: string;
|
|
5870
|
+
filePath?: string | undefined;
|
|
5871
5871
|
/**
|
|
5872
5872
|
* <p>The version of the package that contains the vulnerability fix.</p>
|
|
5873
5873
|
* @public
|
|
5874
5874
|
*/
|
|
5875
|
-
fixedInVersion?: string;
|
|
5875
|
+
fixedInVersion?: string | undefined;
|
|
5876
5876
|
/**
|
|
5877
5877
|
* <p>The code to run in your environment to update packages with a fix available.</p>
|
|
5878
5878
|
* @public
|
|
5879
5879
|
*/
|
|
5880
|
-
remediation?: string;
|
|
5880
|
+
remediation?: string | undefined;
|
|
5881
5881
|
/**
|
|
5882
5882
|
* <p>The Amazon Resource Number (ARN) of the Amazon Web Services Lambda function affected by a finding.</p>
|
|
5883
5883
|
* @public
|
|
5884
5884
|
*/
|
|
5885
|
-
sourceLambdaLayerArn?: string;
|
|
5885
|
+
sourceLambdaLayerArn?: string | undefined;
|
|
5886
5886
|
}
|
|
5887
5887
|
/**
|
|
5888
5888
|
* <p>Information about a package vulnerability finding.</p>
|
|
@@ -5898,7 +5898,7 @@ export interface PackageVulnerabilityDetails {
|
|
|
5898
5898
|
* <p>The packages impacted by this vulnerability.</p>
|
|
5899
5899
|
* @public
|
|
5900
5900
|
*/
|
|
5901
|
-
vulnerablePackages?: VulnerablePackage[];
|
|
5901
|
+
vulnerablePackages?: VulnerablePackage[] | undefined;
|
|
5902
5902
|
/**
|
|
5903
5903
|
* <p>The source of the vulnerability information.</p>
|
|
5904
5904
|
* @public
|
|
@@ -5908,37 +5908,37 @@ export interface PackageVulnerabilityDetails {
|
|
|
5908
5908
|
* <p>An object that contains details about the CVSS score of a finding.</p>
|
|
5909
5909
|
* @public
|
|
5910
5910
|
*/
|
|
5911
|
-
cvss?: CvssScore[];
|
|
5911
|
+
cvss?: CvssScore[] | undefined;
|
|
5912
5912
|
/**
|
|
5913
5913
|
* <p>One or more vulnerabilities related to the one identified in this finding.</p>
|
|
5914
5914
|
* @public
|
|
5915
5915
|
*/
|
|
5916
|
-
relatedVulnerabilities?: string[];
|
|
5916
|
+
relatedVulnerabilities?: string[] | undefined;
|
|
5917
5917
|
/**
|
|
5918
5918
|
* <p>A URL to the source of the vulnerability information.</p>
|
|
5919
5919
|
* @public
|
|
5920
5920
|
*/
|
|
5921
|
-
sourceUrl?: string;
|
|
5921
|
+
sourceUrl?: string | undefined;
|
|
5922
5922
|
/**
|
|
5923
5923
|
* <p>The severity the vendor has given to this vulnerability type.</p>
|
|
5924
5924
|
* @public
|
|
5925
5925
|
*/
|
|
5926
|
-
vendorSeverity?: string;
|
|
5926
|
+
vendorSeverity?: string | undefined;
|
|
5927
5927
|
/**
|
|
5928
5928
|
* <p>The date and time that this vulnerability was first added to the vendor's database.</p>
|
|
5929
5929
|
* @public
|
|
5930
5930
|
*/
|
|
5931
|
-
vendorCreatedAt?: Date;
|
|
5931
|
+
vendorCreatedAt?: Date | undefined;
|
|
5932
5932
|
/**
|
|
5933
5933
|
* <p>The date and time the vendor last updated this vulnerability in their database.</p>
|
|
5934
5934
|
* @public
|
|
5935
5935
|
*/
|
|
5936
|
-
vendorUpdatedAt?: Date;
|
|
5936
|
+
vendorUpdatedAt?: Date | undefined;
|
|
5937
5937
|
/**
|
|
5938
5938
|
* <p>One or more URLs that contain details about this vulnerability type.</p>
|
|
5939
5939
|
* @public
|
|
5940
5940
|
*/
|
|
5941
|
-
referenceUrls?: string[];
|
|
5941
|
+
referenceUrls?: string[] | undefined;
|
|
5942
5942
|
}
|
|
5943
5943
|
/**
|
|
5944
5944
|
* <p>Details about the recommended course of action to remediate the finding.</p>
|
|
@@ -5949,12 +5949,12 @@ export interface Recommendation {
|
|
|
5949
5949
|
* <p>The recommended course of action to remediate the finding.</p>
|
|
5950
5950
|
* @public
|
|
5951
5951
|
*/
|
|
5952
|
-
text?: string;
|
|
5952
|
+
text?: string | undefined;
|
|
5953
5953
|
/**
|
|
5954
5954
|
* <p>The URL address to the CVE remediation recommendations.</p>
|
|
5955
5955
|
* @public
|
|
5956
5956
|
*/
|
|
5957
|
-
Url?: string;
|
|
5957
|
+
Url?: string | undefined;
|
|
5958
5958
|
}
|
|
5959
5959
|
/**
|
|
5960
5960
|
* <p>Information on how to remediate a finding.</p>
|
|
@@ -5965,7 +5965,7 @@ export interface Remediation {
|
|
|
5965
5965
|
* <p>An object that contains information about the recommended course of action to remediate the finding.</p>
|
|
5966
5966
|
* @public
|
|
5967
5967
|
*/
|
|
5968
|
-
recommendation?: Recommendation;
|
|
5968
|
+
recommendation?: Recommendation | undefined;
|
|
5969
5969
|
}
|
|
5970
5970
|
/**
|
|
5971
5971
|
* <p>Contains details about the resource involved in the finding.</p>
|
|
@@ -5976,17 +5976,17 @@ export interface ResourceDetails {
|
|
|
5976
5976
|
* <p>An object that contains details about the Amazon EC2 instance involved in the finding.</p>
|
|
5977
5977
|
* @public
|
|
5978
5978
|
*/
|
|
5979
|
-
awsEc2Instance?: AwsEc2InstanceDetails;
|
|
5979
|
+
awsEc2Instance?: AwsEc2InstanceDetails | undefined;
|
|
5980
5980
|
/**
|
|
5981
5981
|
* <p>An object that contains details about the Amazon ECR container image involved in the finding.</p>
|
|
5982
5982
|
* @public
|
|
5983
5983
|
*/
|
|
5984
|
-
awsEcrContainerImage?: AwsEcrContainerImageDetails;
|
|
5984
|
+
awsEcrContainerImage?: AwsEcrContainerImageDetails | undefined;
|
|
5985
5985
|
/**
|
|
5986
5986
|
* <p>A summary of the information about an Amazon Web Services Lambda function affected by a finding.</p>
|
|
5987
5987
|
* @public
|
|
5988
5988
|
*/
|
|
5989
|
-
awsLambdaFunction?: AwsLambdaFunctionDetails;
|
|
5989
|
+
awsLambdaFunction?: AwsLambdaFunctionDetails | undefined;
|
|
5990
5990
|
}
|
|
5991
5991
|
/**
|
|
5992
5992
|
* @public
|
|
@@ -6021,22 +6021,22 @@ export interface Resource {
|
|
|
6021
6021
|
* <p>The partition of the resource.</p>
|
|
6022
6022
|
* @public
|
|
6023
6023
|
*/
|
|
6024
|
-
partition?: string;
|
|
6024
|
+
partition?: string | undefined;
|
|
6025
6025
|
/**
|
|
6026
6026
|
* <p>The Amazon Web Services Region the impacted resource is located in.</p>
|
|
6027
6027
|
* @public
|
|
6028
6028
|
*/
|
|
6029
|
-
region?: string;
|
|
6029
|
+
region?: string | undefined;
|
|
6030
6030
|
/**
|
|
6031
6031
|
* <p>The tags attached to the resource.</p>
|
|
6032
6032
|
* @public
|
|
6033
6033
|
*/
|
|
6034
|
-
tags?: Record<string, string
|
|
6034
|
+
tags?: Record<string, string> | undefined;
|
|
6035
6035
|
/**
|
|
6036
6036
|
* <p>An object that contains details about the resource involved in a finding.</p>
|
|
6037
6037
|
* @public
|
|
6038
6038
|
*/
|
|
6039
|
-
details?: ResourceDetails;
|
|
6039
|
+
details?: ResourceDetails | undefined;
|
|
6040
6040
|
}
|
|
6041
6041
|
/**
|
|
6042
6042
|
* @public
|
|
@@ -6109,7 +6109,7 @@ export interface Finding {
|
|
|
6109
6109
|
* <p>The title of the finding.</p>
|
|
6110
6110
|
* @public
|
|
6111
6111
|
*/
|
|
6112
|
-
title?: string;
|
|
6112
|
+
title?: string | undefined;
|
|
6113
6113
|
/**
|
|
6114
6114
|
* <p>An object that contains the details about how to remediate a finding.</p>
|
|
6115
6115
|
* @public
|
|
@@ -6137,7 +6137,7 @@ export interface Finding {
|
|
|
6137
6137
|
* <p>The date and time the finding was last updated at.</p>
|
|
6138
6138
|
* @public
|
|
6139
6139
|
*/
|
|
6140
|
-
updatedAt?: Date;
|
|
6140
|
+
updatedAt?: Date | undefined;
|
|
6141
6141
|
/**
|
|
6142
6142
|
* <p>The status of the finding.</p>
|
|
6143
6143
|
* @public
|
|
@@ -6152,47 +6152,47 @@ export interface Finding {
|
|
|
6152
6152
|
* <p>The Amazon Inspector score given to the finding.</p>
|
|
6153
6153
|
* @public
|
|
6154
6154
|
*/
|
|
6155
|
-
inspectorScore?: number;
|
|
6155
|
+
inspectorScore?: number | undefined;
|
|
6156
6156
|
/**
|
|
6157
6157
|
* <p>An object that contains details of the Amazon Inspector score.</p>
|
|
6158
6158
|
* @public
|
|
6159
6159
|
*/
|
|
6160
|
-
inspectorScoreDetails?: InspectorScoreDetails;
|
|
6160
|
+
inspectorScoreDetails?: InspectorScoreDetails | undefined;
|
|
6161
6161
|
/**
|
|
6162
6162
|
* <p>An object that contains the details of a network reachability finding.</p>
|
|
6163
6163
|
* @public
|
|
6164
6164
|
*/
|
|
6165
|
-
networkReachabilityDetails?: NetworkReachabilityDetails;
|
|
6165
|
+
networkReachabilityDetails?: NetworkReachabilityDetails | undefined;
|
|
6166
6166
|
/**
|
|
6167
6167
|
* <p>An object that contains the details of a package vulnerability finding.</p>
|
|
6168
6168
|
* @public
|
|
6169
6169
|
*/
|
|
6170
|
-
packageVulnerabilityDetails?: PackageVulnerabilityDetails;
|
|
6170
|
+
packageVulnerabilityDetails?: PackageVulnerabilityDetails | undefined;
|
|
6171
6171
|
/**
|
|
6172
6172
|
* <p>Details on whether a fix is available through a version update. This value can be <code>YES</code>, <code>NO</code>, or <code>PARTIAL</code>. A <code>PARTIAL</code> fix means that some, but not all, of the packages identified in the finding have fixes available through updated versions.</p>
|
|
6173
6173
|
* @public
|
|
6174
6174
|
*/
|
|
6175
|
-
fixAvailable?: FixAvailable;
|
|
6175
|
+
fixAvailable?: FixAvailable | undefined;
|
|
6176
6176
|
/**
|
|
6177
6177
|
* <p>If a finding discovered in your environment has an exploit available.</p>
|
|
6178
6178
|
* @public
|
|
6179
6179
|
*/
|
|
6180
|
-
exploitAvailable?: ExploitAvailable;
|
|
6180
|
+
exploitAvailable?: ExploitAvailable | undefined;
|
|
6181
6181
|
/**
|
|
6182
6182
|
* <p>The details of an exploit available for a finding discovered in your environment.</p>
|
|
6183
6183
|
* @public
|
|
6184
6184
|
*/
|
|
6185
|
-
exploitabilityDetails?: ExploitabilityDetails;
|
|
6185
|
+
exploitabilityDetails?: ExploitabilityDetails | undefined;
|
|
6186
6186
|
/**
|
|
6187
6187
|
* <p>Details about the code vulnerability identified in a Lambda function used to filter findings.</p>
|
|
6188
6188
|
* @public
|
|
6189
6189
|
*/
|
|
6190
|
-
codeVulnerabilityDetails?: CodeVulnerabilityDetails;
|
|
6190
|
+
codeVulnerabilityDetails?: CodeVulnerabilityDetails | undefined;
|
|
6191
6191
|
/**
|
|
6192
6192
|
* <p>The finding's EPSS score.</p>
|
|
6193
6193
|
* @public
|
|
6194
6194
|
*/
|
|
6195
|
-
epss?: EpssDetails;
|
|
6195
|
+
epss?: EpssDetails | undefined;
|
|
6196
6196
|
}
|
|
6197
6197
|
/**
|
|
6198
6198
|
* @public
|
|
@@ -6207,7 +6207,7 @@ export interface GetCisScanReportRequest {
|
|
|
6207
6207
|
* <p>The target accounts.</p>
|
|
6208
6208
|
* @public
|
|
6209
6209
|
*/
|
|
6210
|
-
targetAccounts?: string[];
|
|
6210
|
+
targetAccounts?: string[] | undefined;
|
|
6211
6211
|
/**
|
|
6212
6212
|
* <p>
|
|
6213
6213
|
* The format of the report.
|
|
@@ -6216,7 +6216,7 @@ export interface GetCisScanReportRequest {
|
|
|
6216
6216
|
* </p>
|
|
6217
6217
|
* @public
|
|
6218
6218
|
*/
|
|
6219
|
-
reportFormat?: CisReportFormat;
|
|
6219
|
+
reportFormat?: CisReportFormat | undefined;
|
|
6220
6220
|
}
|
|
6221
6221
|
/**
|
|
6222
6222
|
* @public
|
|
@@ -6228,12 +6228,12 @@ export interface GetCisScanReportResponse {
|
|
|
6228
6228
|
* </p>
|
|
6229
6229
|
* @public
|
|
6230
6230
|
*/
|
|
6231
|
-
url?: string;
|
|
6231
|
+
url?: string | undefined;
|
|
6232
6232
|
/**
|
|
6233
6233
|
* <p>The status.</p>
|
|
6234
6234
|
* @public
|
|
6235
6235
|
*/
|
|
6236
|
-
status?: CisReportStatus;
|
|
6236
|
+
status?: CisReportStatus | undefined;
|
|
6237
6237
|
}
|
|
6238
6238
|
/**
|
|
6239
6239
|
* @public
|
|
@@ -6258,27 +6258,27 @@ export interface GetCisScanResultDetailsRequest {
|
|
|
6258
6258
|
* <p>The filter criteria.</p>
|
|
6259
6259
|
* @public
|
|
6260
6260
|
*/
|
|
6261
|
-
filterCriteria?: CisScanResultDetailsFilterCriteria;
|
|
6261
|
+
filterCriteria?: CisScanResultDetailsFilterCriteria | undefined;
|
|
6262
6262
|
/**
|
|
6263
6263
|
* <p>The sort by order.</p>
|
|
6264
6264
|
* @public
|
|
6265
6265
|
*/
|
|
6266
|
-
sortBy?: CisScanResultDetailsSortBy;
|
|
6266
|
+
sortBy?: CisScanResultDetailsSortBy | undefined;
|
|
6267
6267
|
/**
|
|
6268
6268
|
* <p>The sort order.</p>
|
|
6269
6269
|
* @public
|
|
6270
6270
|
*/
|
|
6271
|
-
sortOrder?: CisSortOrder;
|
|
6271
|
+
sortOrder?: CisSortOrder | undefined;
|
|
6272
6272
|
/**
|
|
6273
6273
|
* <p>The pagination token from a previous request that's used to retrieve the next page of results.</p>
|
|
6274
6274
|
* @public
|
|
6275
6275
|
*/
|
|
6276
|
-
nextToken?: string;
|
|
6276
|
+
nextToken?: string | undefined;
|
|
6277
6277
|
/**
|
|
6278
6278
|
* <p>The maximum number of CIS scan result details to be returned in a single page of results.</p>
|
|
6279
6279
|
* @public
|
|
6280
6280
|
*/
|
|
6281
|
-
maxResults?: number;
|
|
6281
|
+
maxResults?: number | undefined;
|
|
6282
6282
|
}
|
|
6283
6283
|
/**
|
|
6284
6284
|
* @public
|
|
@@ -6288,12 +6288,12 @@ export interface GetCisScanResultDetailsResponse {
|
|
|
6288
6288
|
* <p>The scan result details.</p>
|
|
6289
6289
|
* @public
|
|
6290
6290
|
*/
|
|
6291
|
-
scanResultDetails?: CisScanResultDetails[];
|
|
6291
|
+
scanResultDetails?: CisScanResultDetails[] | undefined;
|
|
6292
6292
|
/**
|
|
6293
6293
|
* <p>The pagination token from a previous request that's used to retrieve the next page of results.</p>
|
|
6294
6294
|
* @public
|
|
6295
6295
|
*/
|
|
6296
|
-
nextToken?: string;
|
|
6296
|
+
nextToken?: string | undefined;
|
|
6297
6297
|
}
|
|
6298
6298
|
/**
|
|
6299
6299
|
* @public
|
|
@@ -6308,12 +6308,12 @@ export interface GetConfigurationResponse {
|
|
|
6308
6308
|
* <p>Specifies how the ECR automated re-scan duration is currently configured for your environment.</p>
|
|
6309
6309
|
* @public
|
|
6310
6310
|
*/
|
|
6311
|
-
ecrConfiguration?: EcrConfigurationState;
|
|
6311
|
+
ecrConfiguration?: EcrConfigurationState | undefined;
|
|
6312
6312
|
/**
|
|
6313
6313
|
* <p>Specifies how the Amazon EC2 automated scan mode is currently configured for your environment.</p>
|
|
6314
6314
|
* @public
|
|
6315
6315
|
*/
|
|
6316
|
-
ec2Configuration?: Ec2ConfigurationState;
|
|
6316
|
+
ec2Configuration?: Ec2ConfigurationState | undefined;
|
|
6317
6317
|
}
|
|
6318
6318
|
/**
|
|
6319
6319
|
* @public
|
|
@@ -6328,7 +6328,7 @@ export interface GetDelegatedAdminAccountResponse {
|
|
|
6328
6328
|
* <p>The Amazon Web Services account ID of the Amazon Inspector delegated administrator.</p>
|
|
6329
6329
|
* @public
|
|
6330
6330
|
*/
|
|
6331
|
-
delegatedAdmin?: DelegatedAdmin;
|
|
6331
|
+
delegatedAdmin?: DelegatedAdmin | undefined;
|
|
6332
6332
|
}
|
|
6333
6333
|
/**
|
|
6334
6334
|
* @public
|
|
@@ -6343,22 +6343,22 @@ export interface GetEc2DeepInspectionConfigurationResponse {
|
|
|
6343
6343
|
* <p>The Amazon Inspector deep inspection custom paths for your account.</p>
|
|
6344
6344
|
* @public
|
|
6345
6345
|
*/
|
|
6346
|
-
packagePaths?: string[];
|
|
6346
|
+
packagePaths?: string[] | undefined;
|
|
6347
6347
|
/**
|
|
6348
6348
|
* <p>The Amazon Inspector deep inspection custom paths for your organization.</p>
|
|
6349
6349
|
* @public
|
|
6350
6350
|
*/
|
|
6351
|
-
orgPackagePaths?: string[];
|
|
6351
|
+
orgPackagePaths?: string[] | undefined;
|
|
6352
6352
|
/**
|
|
6353
6353
|
* <p>The activation status of Amazon Inspector deep inspection in your account.</p>
|
|
6354
6354
|
* @public
|
|
6355
6355
|
*/
|
|
6356
|
-
status?: Ec2DeepInspectionStatus;
|
|
6356
|
+
status?: Ec2DeepInspectionStatus | undefined;
|
|
6357
6357
|
/**
|
|
6358
6358
|
* <p>An error message explaining why Amazon Inspector deep inspection configurations could not be retrieved for your account.</p>
|
|
6359
6359
|
* @public
|
|
6360
6360
|
*/
|
|
6361
|
-
errorMessage?: string;
|
|
6361
|
+
errorMessage?: string | undefined;
|
|
6362
6362
|
}
|
|
6363
6363
|
/**
|
|
6364
6364
|
* @public
|
|
@@ -6393,7 +6393,7 @@ export interface GetFindingsReportStatusRequest {
|
|
|
6393
6393
|
* <p>The ID of the report to retrieve the status of.</p>
|
|
6394
6394
|
* @public
|
|
6395
6395
|
*/
|
|
6396
|
-
reportId?: string;
|
|
6396
|
+
reportId?: string | undefined;
|
|
6397
6397
|
}
|
|
6398
6398
|
/**
|
|
6399
6399
|
* @public
|
|
@@ -6419,32 +6419,32 @@ export interface GetFindingsReportStatusResponse {
|
|
|
6419
6419
|
* <p>The ID of the report.</p>
|
|
6420
6420
|
* @public
|
|
6421
6421
|
*/
|
|
6422
|
-
reportId?: string;
|
|
6422
|
+
reportId?: string | undefined;
|
|
6423
6423
|
/**
|
|
6424
6424
|
* <p>The status of the report.</p>
|
|
6425
6425
|
* @public
|
|
6426
6426
|
*/
|
|
6427
|
-
status?: ExternalReportStatus;
|
|
6427
|
+
status?: ExternalReportStatus | undefined;
|
|
6428
6428
|
/**
|
|
6429
6429
|
* <p>The error code of the report.</p>
|
|
6430
6430
|
* @public
|
|
6431
6431
|
*/
|
|
6432
|
-
errorCode?: ReportingErrorCode;
|
|
6432
|
+
errorCode?: ReportingErrorCode | undefined;
|
|
6433
6433
|
/**
|
|
6434
6434
|
* <p>The error message of the report.</p>
|
|
6435
6435
|
* @public
|
|
6436
6436
|
*/
|
|
6437
|
-
errorMessage?: string;
|
|
6437
|
+
errorMessage?: string | undefined;
|
|
6438
6438
|
/**
|
|
6439
6439
|
* <p>The destination of the report.</p>
|
|
6440
6440
|
* @public
|
|
6441
6441
|
*/
|
|
6442
|
-
destination?: Destination;
|
|
6442
|
+
destination?: Destination | undefined;
|
|
6443
6443
|
/**
|
|
6444
6444
|
* <p>The filter criteria associated with the report.</p>
|
|
6445
6445
|
* @public
|
|
6446
6446
|
*/
|
|
6447
|
-
filterCriteria?: FilterCriteria;
|
|
6447
|
+
filterCriteria?: FilterCriteria | undefined;
|
|
6448
6448
|
}
|
|
6449
6449
|
/**
|
|
6450
6450
|
* @public
|
|
@@ -6465,22 +6465,22 @@ export interface Member {
|
|
|
6465
6465
|
* <p>The Amazon Web Services account ID of the member account.</p>
|
|
6466
6466
|
* @public
|
|
6467
6467
|
*/
|
|
6468
|
-
accountId?: string;
|
|
6468
|
+
accountId?: string | undefined;
|
|
6469
6469
|
/**
|
|
6470
6470
|
* <p>The status of the member account.</p>
|
|
6471
6471
|
* @public
|
|
6472
6472
|
*/
|
|
6473
|
-
relationshipStatus?: RelationshipStatus;
|
|
6473
|
+
relationshipStatus?: RelationshipStatus | undefined;
|
|
6474
6474
|
/**
|
|
6475
6475
|
* <p>The Amazon Web Services account ID of the Amazon Inspector delegated administrator for this member account.</p>
|
|
6476
6476
|
* @public
|
|
6477
6477
|
*/
|
|
6478
|
-
delegatedAdminAccountId?: string;
|
|
6478
|
+
delegatedAdminAccountId?: string | undefined;
|
|
6479
6479
|
/**
|
|
6480
6480
|
* <p>A timestamp showing when the status of this member was last updated.</p>
|
|
6481
6481
|
* @public
|
|
6482
6482
|
*/
|
|
6483
|
-
updatedAt?: Date;
|
|
6483
|
+
updatedAt?: Date | undefined;
|
|
6484
6484
|
}
|
|
6485
6485
|
/**
|
|
6486
6486
|
* @public
|
|
@@ -6490,7 +6490,7 @@ export interface GetMemberResponse {
|
|
|
6490
6490
|
* <p>Details of the retrieved member account.</p>
|
|
6491
6491
|
* @public
|
|
6492
6492
|
*/
|
|
6493
|
-
member?: Member;
|
|
6493
|
+
member?: Member | undefined;
|
|
6494
6494
|
}
|
|
6495
6495
|
/**
|
|
6496
6496
|
* @public
|
|
@@ -6510,37 +6510,37 @@ export interface GetSbomExportResponse {
|
|
|
6510
6510
|
* <p>The report ID of the software bill of materials (SBOM) report.</p>
|
|
6511
6511
|
* @public
|
|
6512
6512
|
*/
|
|
6513
|
-
reportId?: string;
|
|
6513
|
+
reportId?: string | undefined;
|
|
6514
6514
|
/**
|
|
6515
6515
|
* <p>The format of the software bill of materials (SBOM) report.</p>
|
|
6516
6516
|
* @public
|
|
6517
6517
|
*/
|
|
6518
|
-
format?: SbomReportFormat;
|
|
6518
|
+
format?: SbomReportFormat | undefined;
|
|
6519
6519
|
/**
|
|
6520
6520
|
* <p>The status of the software bill of materials (SBOM) report.</p>
|
|
6521
6521
|
* @public
|
|
6522
6522
|
*/
|
|
6523
|
-
status?: ExternalReportStatus;
|
|
6523
|
+
status?: ExternalReportStatus | undefined;
|
|
6524
6524
|
/**
|
|
6525
6525
|
* <p>An error code.</p>
|
|
6526
6526
|
* @public
|
|
6527
6527
|
*/
|
|
6528
|
-
errorCode?: ReportingErrorCode;
|
|
6528
|
+
errorCode?: ReportingErrorCode | undefined;
|
|
6529
6529
|
/**
|
|
6530
6530
|
* <p>An error message.</p>
|
|
6531
6531
|
* @public
|
|
6532
6532
|
*/
|
|
6533
|
-
errorMessage?: string;
|
|
6533
|
+
errorMessage?: string | undefined;
|
|
6534
6534
|
/**
|
|
6535
6535
|
* <p>Contains details of the Amazon S3 bucket and KMS key used to export findings</p>
|
|
6536
6536
|
* @public
|
|
6537
6537
|
*/
|
|
6538
|
-
s3Destination?: Destination;
|
|
6538
|
+
s3Destination?: Destination | undefined;
|
|
6539
6539
|
/**
|
|
6540
6540
|
* <p>Contains details about the resource filter criteria used for the software bill of materials (SBOM) report.</p>
|
|
6541
6541
|
* @public
|
|
6542
6542
|
*/
|
|
6543
|
-
filterCriteria?: ResourceFilterCriteria;
|
|
6543
|
+
filterCriteria?: ResourceFilterCriteria | undefined;
|
|
6544
6544
|
}
|
|
6545
6545
|
/**
|
|
6546
6546
|
* @public
|
|
@@ -6563,17 +6563,17 @@ export interface ListAccountPermissionsRequest {
|
|
|
6563
6563
|
* <p>The service scan type to check permissions for.</p>
|
|
6564
6564
|
* @public
|
|
6565
6565
|
*/
|
|
6566
|
-
service?: Service;
|
|
6566
|
+
service?: Service | undefined;
|
|
6567
6567
|
/**
|
|
6568
6568
|
* <p>The maximum number of results the response can return. If your request would return more than the maximum the response will return a <code>nextToken</code> value, use this value when you call the action again to get the remaining results.</p>
|
|
6569
6569
|
* @public
|
|
6570
6570
|
*/
|
|
6571
|
-
maxResults?: number;
|
|
6571
|
+
maxResults?: number | undefined;
|
|
6572
6572
|
/**
|
|
6573
6573
|
* <p>A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the <code>maxResults</code> maximum value it will also return a <code>nextToken</code> value. For subsequent calls, use the NextToken value returned from the previous request to continue listing results after the first page.</p>
|
|
6574
6574
|
* @public
|
|
6575
6575
|
*/
|
|
6576
|
-
nextToken?: string;
|
|
6576
|
+
nextToken?: string | undefined;
|
|
6577
6577
|
}
|
|
6578
6578
|
/**
|
|
6579
6579
|
* @public
|
|
@@ -6621,7 +6621,7 @@ export interface ListAccountPermissionsResponse {
|
|
|
6621
6621
|
* results after the first page.</p>
|
|
6622
6622
|
* @public
|
|
6623
6623
|
*/
|
|
6624
|
-
nextToken?: string;
|
|
6624
|
+
nextToken?: string | undefined;
|
|
6625
6625
|
}
|
|
6626
6626
|
/**
|
|
6627
6627
|
* <p>A list of CIS scan configurations filter criteria.</p>
|
|
@@ -6632,17 +6632,17 @@ export interface ListCisScanConfigurationsFilterCriteria {
|
|
|
6632
6632
|
* <p>The list of scan name filters.</p>
|
|
6633
6633
|
* @public
|
|
6634
6634
|
*/
|
|
6635
|
-
scanNameFilters?: CisStringFilter[];
|
|
6635
|
+
scanNameFilters?: CisStringFilter[] | undefined;
|
|
6636
6636
|
/**
|
|
6637
6637
|
* <p>The list of target resource tag filters.</p>
|
|
6638
6638
|
* @public
|
|
6639
6639
|
*/
|
|
6640
|
-
targetResourceTagFilters?: TagFilter[];
|
|
6640
|
+
targetResourceTagFilters?: TagFilter[] | undefined;
|
|
6641
6641
|
/**
|
|
6642
6642
|
* <p>The list of scan configuration ARN filters.</p>
|
|
6643
6643
|
* @public
|
|
6644
6644
|
*/
|
|
6645
|
-
scanConfigurationArnFilters?: CisStringFilter[];
|
|
6645
|
+
scanConfigurationArnFilters?: CisStringFilter[] | undefined;
|
|
6646
6646
|
}
|
|
6647
6647
|
/**
|
|
6648
6648
|
* @public
|
|
@@ -6652,27 +6652,27 @@ export interface ListCisScanConfigurationsRequest {
|
|
|
6652
6652
|
* <p>The CIS scan configuration filter criteria.</p>
|
|
6653
6653
|
* @public
|
|
6654
6654
|
*/
|
|
6655
|
-
filterCriteria?: ListCisScanConfigurationsFilterCriteria;
|
|
6655
|
+
filterCriteria?: ListCisScanConfigurationsFilterCriteria | undefined;
|
|
6656
6656
|
/**
|
|
6657
6657
|
* <p>The CIS scan configuration sort by order.</p>
|
|
6658
6658
|
* @public
|
|
6659
6659
|
*/
|
|
6660
|
-
sortBy?: CisScanConfigurationsSortBy;
|
|
6660
|
+
sortBy?: CisScanConfigurationsSortBy | undefined;
|
|
6661
6661
|
/**
|
|
6662
6662
|
* <p>The CIS scan configuration sort order order.</p>
|
|
6663
6663
|
* @public
|
|
6664
6664
|
*/
|
|
6665
|
-
sortOrder?: CisSortOrder;
|
|
6665
|
+
sortOrder?: CisSortOrder | undefined;
|
|
6666
6666
|
/**
|
|
6667
6667
|
* <p>The pagination token from a previous request that's used to retrieve the next page of results.</p>
|
|
6668
6668
|
* @public
|
|
6669
6669
|
*/
|
|
6670
|
-
nextToken?: string;
|
|
6670
|
+
nextToken?: string | undefined;
|
|
6671
6671
|
/**
|
|
6672
6672
|
* <p>The maximum number of CIS scan configurations to be returned in a single page of results.</p>
|
|
6673
6673
|
* @public
|
|
6674
6674
|
*/
|
|
6675
|
-
maxResults?: number;
|
|
6675
|
+
maxResults?: number | undefined;
|
|
6676
6676
|
}
|
|
6677
6677
|
/**
|
|
6678
6678
|
* @public
|
|
@@ -6682,12 +6682,12 @@ export interface ListCisScanConfigurationsResponse {
|
|
|
6682
6682
|
* <p>The CIS scan configuration scan configurations.</p>
|
|
6683
6683
|
* @public
|
|
6684
6684
|
*/
|
|
6685
|
-
scanConfigurations?: CisScanConfiguration[];
|
|
6685
|
+
scanConfigurations?: CisScanConfiguration[] | undefined;
|
|
6686
6686
|
/**
|
|
6687
6687
|
* <p>The pagination token from a previous request that's used to retrieve the next page of results.</p>
|
|
6688
6688
|
* @public
|
|
6689
6689
|
*/
|
|
6690
|
-
nextToken?: string;
|
|
6690
|
+
nextToken?: string | undefined;
|
|
6691
6691
|
}
|
|
6692
6692
|
/**
|
|
6693
6693
|
* @public
|
|
@@ -6702,27 +6702,27 @@ export interface ListCisScanResultsAggregatedByChecksRequest {
|
|
|
6702
6702
|
* <p>The filter criteria.</p>
|
|
6703
6703
|
* @public
|
|
6704
6704
|
*/
|
|
6705
|
-
filterCriteria?: CisScanResultsAggregatedByChecksFilterCriteria;
|
|
6705
|
+
filterCriteria?: CisScanResultsAggregatedByChecksFilterCriteria | undefined;
|
|
6706
6706
|
/**
|
|
6707
6707
|
* <p>The sort by order.</p>
|
|
6708
6708
|
* @public
|
|
6709
6709
|
*/
|
|
6710
|
-
sortBy?: CisScanResultsAggregatedByChecksSortBy;
|
|
6710
|
+
sortBy?: CisScanResultsAggregatedByChecksSortBy | undefined;
|
|
6711
6711
|
/**
|
|
6712
6712
|
* <p>The sort order.</p>
|
|
6713
6713
|
* @public
|
|
6714
6714
|
*/
|
|
6715
|
-
sortOrder?: CisSortOrder;
|
|
6715
|
+
sortOrder?: CisSortOrder | undefined;
|
|
6716
6716
|
/**
|
|
6717
6717
|
* <p>The pagination token from a previous request that's used to retrieve the next page of results.</p>
|
|
6718
6718
|
* @public
|
|
6719
6719
|
*/
|
|
6720
|
-
nextToken?: string;
|
|
6720
|
+
nextToken?: string | undefined;
|
|
6721
6721
|
/**
|
|
6722
6722
|
* <p>The maximum number of scan results aggregated by checks to be returned in a single page of results.</p>
|
|
6723
6723
|
* @public
|
|
6724
6724
|
*/
|
|
6725
|
-
maxResults?: number;
|
|
6725
|
+
maxResults?: number | undefined;
|
|
6726
6726
|
}
|
|
6727
6727
|
/**
|
|
6728
6728
|
* @public
|
|
@@ -6732,10 +6732,10 @@ export interface ListCisScanResultsAggregatedByChecksResponse {
|
|
|
6732
6732
|
* <p>The check aggregations.</p>
|
|
6733
6733
|
* @public
|
|
6734
6734
|
*/
|
|
6735
|
-
checkAggregations?: CisCheckAggregation[];
|
|
6735
|
+
checkAggregations?: CisCheckAggregation[] | undefined;
|
|
6736
6736
|
/**
|
|
6737
6737
|
* <p>The pagination token from a previous request that's used to retrieve the next page of results.</p>
|
|
6738
6738
|
* @public
|
|
6739
6739
|
*/
|
|
6740
|
-
nextToken?: string;
|
|
6740
|
+
nextToken?: string | undefined;
|
|
6741
6741
|
}
|