@aws-sdk/client-inspector2 3.381.0 → 3.382.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.
@@ -34,18 +34,22 @@ export type Status = (typeof Status)[keyof typeof Status];
34
34
  */
35
35
  export interface ResourceStatus {
36
36
  /**
37
+ * @public
37
38
  * <p>The status of Amazon Inspector scanning for Amazon EC2 resources.</p>
38
39
  */
39
40
  ec2: Status | string | undefined;
40
41
  /**
42
+ * @public
41
43
  * <p>The status of Amazon Inspector scanning for Amazon ECR resources.</p>
42
44
  */
43
45
  ecr: Status | string | undefined;
44
46
  /**
47
+ * @public
45
48
  * <p>The status of Amazon Inspector scanning for AWS Lambda function.</p>
46
49
  */
47
50
  lambda?: Status | string;
48
51
  /**
52
+ * @public
49
53
  * <p>The status of Amazon Inspector scanning for custom application code for Amazon Web Services Lambda functions.
50
54
  * </p>
51
55
  */
@@ -57,14 +61,17 @@ export interface ResourceStatus {
57
61
  */
58
62
  export interface Account {
59
63
  /**
64
+ * @public
60
65
  * <p>The ID of the Amazon Web Services account.</p>
61
66
  */
62
67
  accountId: string | undefined;
63
68
  /**
69
+ * @public
64
70
  * <p>The status of Amazon Inspector for the account.</p>
65
71
  */
66
72
  status: Status | string | undefined;
67
73
  /**
74
+ * @public
68
75
  * <p>Details of the status of Amazon Inspector scans by resource type.</p>
69
76
  */
70
77
  resourceStatus: ResourceStatus | undefined;
@@ -127,18 +134,22 @@ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
127
134
  */
128
135
  export interface AccountAggregation {
129
136
  /**
137
+ * @public
130
138
  * <p>The type of finding.</p>
131
139
  */
132
140
  findingType?: AggregationFindingType | string;
133
141
  /**
142
+ * @public
134
143
  * <p>The type of resource.</p>
135
144
  */
136
145
  resourceType?: AggregationResourceType | string;
137
146
  /**
147
+ * @public
138
148
  * <p>The sort order (ascending or descending).</p>
139
149
  */
140
150
  sortOrder?: SortOrder | string;
141
151
  /**
152
+ * @public
142
153
  * <p>The value to sort by.</p>
143
154
  */
144
155
  sortBy?: AccountSortBy | string;
@@ -149,18 +160,22 @@ export interface AccountAggregation {
149
160
  */
150
161
  export interface SeverityCounts {
151
162
  /**
163
+ * @public
152
164
  * <p>The total count of findings from all severities.</p>
153
165
  */
154
166
  all?: number;
155
167
  /**
168
+ * @public
156
169
  * <p>The total count of medium severity findings.</p>
157
170
  */
158
171
  medium?: number;
159
172
  /**
173
+ * @public
160
174
  * <p>The total count of high severity findings.</p>
161
175
  */
162
176
  high?: number;
163
177
  /**
178
+ * @public
164
179
  * <p>The total count of critical severity findings.</p>
165
180
  */
166
181
  critical?: number;
@@ -171,10 +186,12 @@ export interface SeverityCounts {
171
186
  */
172
187
  export interface AccountAggregationResponse {
173
188
  /**
189
+ * @public
174
190
  * <p>The Amazon Web Services account ID.</p>
175
191
  */
176
192
  accountId?: string;
177
193
  /**
194
+ * @public
178
195
  * <p>The number of findings by severity.</p>
179
196
  */
180
197
  severityCounts?: SeverityCounts;
@@ -209,14 +226,17 @@ export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
209
226
  */
210
227
  export interface State {
211
228
  /**
229
+ * @public
212
230
  * <p>The status of Amazon Inspector for the account.</p>
213
231
  */
214
232
  status: Status | string | undefined;
215
233
  /**
234
+ * @public
216
235
  * <p>The error code explaining why the account failed to enable Amazon Inspector.</p>
217
236
  */
218
237
  errorCode: ErrorCode | string | undefined;
219
238
  /**
239
+ * @public
220
240
  * <p>The error message received when the account failed to enable Amazon Inspector.</p>
221
241
  */
222
242
  errorMessage: string | undefined;
@@ -227,18 +247,22 @@ export interface State {
227
247
  */
228
248
  export interface ResourceState {
229
249
  /**
250
+ * @public
230
251
  * <p>An object detailing the state of Amazon Inspector scanning for Amazon EC2 resources.</p>
231
252
  */
232
253
  ec2: State | undefined;
233
254
  /**
255
+ * @public
234
256
  * <p>An object detailing the state of Amazon Inspector scanning for Amazon ECR resources.</p>
235
257
  */
236
258
  ecr: State | undefined;
237
259
  /**
260
+ * @public
238
261
  * <p>An object that described the state of Amazon Inspector scans for an account.</p>
239
262
  */
240
263
  lambda?: State;
241
264
  /**
265
+ * @public
242
266
  * <p>An object that described the state of Amazon Inspector scans for an account.</p>
243
267
  */
244
268
  lambdaCode?: State;
@@ -249,14 +273,17 @@ export interface ResourceState {
249
273
  */
250
274
  export interface AccountState {
251
275
  /**
276
+ * @public
252
277
  * <p>The Amazon Web Services account ID.</p>
253
278
  */
254
279
  accountId: string | undefined;
255
280
  /**
281
+ * @public
256
282
  * <p>An object detailing the status of Amazon Inspector for the account.</p>
257
283
  */
258
284
  state: State | undefined;
259
285
  /**
286
+ * @public
260
287
  * <p>An object detailing which resources Amazon Inspector is enabled to scan for the account.</p>
261
288
  */
262
289
  resourceState: ResourceState | undefined;
@@ -280,10 +307,12 @@ export type StringComparison = (typeof StringComparison)[keyof typeof StringComp
280
307
  */
281
308
  export interface StringFilter {
282
309
  /**
310
+ * @public
283
311
  * <p>The operator to use when comparing values in the filter.</p>
284
312
  */
285
313
  comparison: StringComparison | string | undefined;
286
314
  /**
315
+ * @public
287
316
  * <p>The value to filter on.</p>
288
317
  */
289
318
  value: string | undefined;
@@ -308,14 +337,17 @@ export type AmiSortBy = (typeof AmiSortBy)[keyof typeof AmiSortBy];
308
337
  */
309
338
  export interface AmiAggregation {
310
339
  /**
340
+ * @public
311
341
  * <p>The IDs of AMIs to aggregate findings for.</p>
312
342
  */
313
343
  amis?: StringFilter[];
314
344
  /**
345
+ * @public
315
346
  * <p>The order to sort results by.</p>
316
347
  */
317
348
  sortOrder?: SortOrder | string;
318
349
  /**
350
+ * @public
319
351
  * <p>The value to sort results by.</p>
320
352
  */
321
353
  sortBy?: AmiSortBy | string;
@@ -339,30 +371,37 @@ export type AwsEcrContainerSortBy = (typeof AwsEcrContainerSortBy)[keyof typeof
339
371
  */
340
372
  export interface AwsEcrContainerAggregation {
341
373
  /**
374
+ * @public
342
375
  * <p>The container resource IDs.</p>
343
376
  */
344
377
  resourceIds?: StringFilter[];
345
378
  /**
379
+ * @public
346
380
  * <p>The image SHA values.</p>
347
381
  */
348
382
  imageShas?: StringFilter[];
349
383
  /**
384
+ * @public
350
385
  * <p>The container repositories.</p>
351
386
  */
352
387
  repositories?: StringFilter[];
353
388
  /**
389
+ * @public
354
390
  * <p>The architecture of the containers.</p>
355
391
  */
356
392
  architectures?: StringFilter[];
357
393
  /**
394
+ * @public
358
395
  * <p>The image tags.</p>
359
396
  */
360
397
  imageTags?: StringFilter[];
361
398
  /**
399
+ * @public
362
400
  * <p>The sort order (ascending or descending).</p>
363
401
  */
364
402
  sortOrder?: SortOrder | string;
365
403
  /**
404
+ * @public
366
405
  * <p>The value to sort by.</p>
367
406
  */
368
407
  sortBy?: AwsEcrContainerSortBy | string;
@@ -384,14 +423,17 @@ export type MapComparison = (typeof MapComparison)[keyof typeof MapComparison];
384
423
  */
385
424
  export interface MapFilter {
386
425
  /**
426
+ * @public
387
427
  * <p>The operator to use when comparing values in the filter.</p>
388
428
  */
389
429
  comparison: MapComparison | string | undefined;
390
430
  /**
431
+ * @public
391
432
  * <p>The tag key used in the filter.</p>
392
433
  */
393
434
  key: string | undefined;
394
435
  /**
436
+ * @public
395
437
  * <p>The tag value used in the filter.</p>
396
438
  */
397
439
  value?: string;
@@ -416,28 +458,34 @@ export type Ec2InstanceSortBy = (typeof Ec2InstanceSortBy)[keyof typeof Ec2Insta
416
458
  */
417
459
  export interface Ec2InstanceAggregation {
418
460
  /**
461
+ * @public
419
462
  * <p>The AMI IDs associated with the Amazon EC2 instances to aggregate findings for.</p>
420
463
  */
421
464
  amis?: StringFilter[];
422
465
  /**
466
+ * @public
423
467
  * <p>The operating system types to aggregate findings for. Valid values must be uppercase and
424
468
  * underscore separated, examples are <code>ORACLE_LINUX_7</code> and
425
469
  * <code>ALPINE_LINUX_3_8</code>.</p>
426
470
  */
427
471
  operatingSystems?: StringFilter[];
428
472
  /**
473
+ * @public
429
474
  * <p>The Amazon EC2 instance IDs to aggregate findings for.</p>
430
475
  */
431
476
  instanceIds?: StringFilter[];
432
477
  /**
478
+ * @public
433
479
  * <p>The Amazon EC2 instance tags to aggregate findings for.</p>
434
480
  */
435
481
  instanceTags?: MapFilter[];
436
482
  /**
483
+ * @public
437
484
  * <p>The order to sort results by.</p>
438
485
  */
439
486
  sortOrder?: SortOrder | string;
440
487
  /**
488
+ * @public
441
489
  * <p>The value to sort results by.</p>
442
490
  */
443
491
  sortBy?: Ec2InstanceSortBy | string;
@@ -461,18 +509,22 @@ export type FindingTypeSortBy = (typeof FindingTypeSortBy)[keyof typeof FindingT
461
509
  */
462
510
  export interface FindingTypeAggregation {
463
511
  /**
512
+ * @public
464
513
  * <p>The finding type to aggregate.</p>
465
514
  */
466
515
  findingType?: AggregationFindingType | string;
467
516
  /**
517
+ * @public
468
518
  * <p>The resource type to aggregate.</p>
469
519
  */
470
520
  resourceType?: AggregationResourceType | string;
471
521
  /**
522
+ * @public
472
523
  * <p>The order to sort results by.</p>
473
524
  */
474
525
  sortOrder?: SortOrder | string;
475
526
  /**
527
+ * @public
476
528
  * <p>The value to sort results by.</p>
477
529
  */
478
530
  sortBy?: FindingTypeSortBy | string;
@@ -496,22 +548,27 @@ export type ImageLayerSortBy = (typeof ImageLayerSortBy)[keyof typeof ImageLayer
496
548
  */
497
549
  export interface ImageLayerAggregation {
498
550
  /**
551
+ * @public
499
552
  * <p>The repository associated with the container image hosting the layers.</p>
500
553
  */
501
554
  repositories?: StringFilter[];
502
555
  /**
556
+ * @public
503
557
  * <p>The ID of the container image layer.</p>
504
558
  */
505
559
  resourceIds?: StringFilter[];
506
560
  /**
561
+ * @public
507
562
  * <p>The hashes associated with the layers.</p>
508
563
  */
509
564
  layerHashes?: StringFilter[];
510
565
  /**
566
+ * @public
511
567
  * <p>The order to sort results by.</p>
512
568
  */
513
569
  sortOrder?: SortOrder | string;
514
570
  /**
571
+ * @public
515
572
  * <p>The value to sort results by.</p>
516
573
  */
517
574
  sortBy?: ImageLayerSortBy | string;
@@ -535,26 +592,32 @@ export type LambdaFunctionSortBy = (typeof LambdaFunctionSortBy)[keyof typeof La
535
592
  */
536
593
  export interface LambdaFunctionAggregation {
537
594
  /**
595
+ * @public
538
596
  * <p>The resource IDs to include in the aggregation results.</p>
539
597
  */
540
598
  resourceIds?: StringFilter[];
541
599
  /**
600
+ * @public
542
601
  * <p>The AWS Lambda function names to include in the aggregation results.</p>
543
602
  */
544
603
  functionNames?: StringFilter[];
545
604
  /**
605
+ * @public
546
606
  * <p>Returns findings aggregated by AWS Lambda function runtime environments.</p>
547
607
  */
548
608
  runtimes?: StringFilter[];
549
609
  /**
610
+ * @public
550
611
  * <p>The tags to include in the aggregation results.</p>
551
612
  */
552
613
  functionTags?: MapFilter[];
553
614
  /**
615
+ * @public
554
616
  * <p>The order to use for sorting the results.</p>
555
617
  */
556
618
  sortOrder?: SortOrder | string;
557
619
  /**
620
+ * @public
558
621
  * <p>The finding severity to use for sorting the results.</p>
559
622
  */
560
623
  sortBy?: LambdaFunctionSortBy | string;
@@ -578,23 +641,28 @@ export type LambdaLayerSortBy = (typeof LambdaLayerSortBy)[keyof typeof LambdaLa
578
641
  */
579
642
  export interface LambdaLayerAggregation {
580
643
  /**
644
+ * @public
581
645
  * <p>The names of the AWS Lambda functions associated with the layers.</p>
582
646
  */
583
647
  functionNames?: StringFilter[];
584
648
  /**
649
+ * @public
585
650
  * <p>The resource IDs for the AWS Lambda function layers.</p>
586
651
  */
587
652
  resourceIds?: StringFilter[];
588
653
  /**
654
+ * @public
589
655
  * <p>The Amazon Resource Name (ARN) of the AWS Lambda function layer.
590
656
  * </p>
591
657
  */
592
658
  layerArns?: StringFilter[];
593
659
  /**
660
+ * @public
594
661
  * <p>The order to use for sorting the results.</p>
595
662
  */
596
663
  sortOrder?: SortOrder | string;
597
664
  /**
665
+ * @public
598
666
  * <p>The finding severity to use for sorting the results.</p>
599
667
  */
600
668
  sortBy?: LambdaLayerSortBy | string;
@@ -618,14 +686,17 @@ export type PackageSortBy = (typeof PackageSortBy)[keyof typeof PackageSortBy];
618
686
  */
619
687
  export interface PackageAggregation {
620
688
  /**
689
+ * @public
621
690
  * <p>The names of packages to aggregate findings on.</p>
622
691
  */
623
692
  packageNames?: StringFilter[];
624
693
  /**
694
+ * @public
625
695
  * <p>The order to sort results by.</p>
626
696
  */
627
697
  sortOrder?: SortOrder | string;
628
698
  /**
699
+ * @public
629
700
  * <p>The value to sort results by.</p>
630
701
  */
631
702
  sortBy?: PackageSortBy | string;
@@ -650,14 +721,17 @@ export type RepositorySortBy = (typeof RepositorySortBy)[keyof typeof Repository
650
721
  */
651
722
  export interface RepositoryAggregation {
652
723
  /**
724
+ * @public
653
725
  * <p>The names of repositories to aggregate findings on.</p>
654
726
  */
655
727
  repositories?: StringFilter[];
656
728
  /**
729
+ * @public
657
730
  * <p>The order to sort results by.</p>
658
731
  */
659
732
  sortOrder?: SortOrder | string;
660
733
  /**
734
+ * @public
661
735
  * <p>The value to sort results by.</p>
662
736
  */
663
737
  sortBy?: RepositorySortBy | string;
@@ -681,26 +755,32 @@ export type TitleSortBy = (typeof TitleSortBy)[keyof typeof TitleSortBy];
681
755
  */
682
756
  export interface TitleAggregation {
683
757
  /**
758
+ * @public
684
759
  * <p>The finding titles to aggregate on.</p>
685
760
  */
686
761
  titles?: StringFilter[];
687
762
  /**
763
+ * @public
688
764
  * <p>The vulnerability IDs of the findings.</p>
689
765
  */
690
766
  vulnerabilityIds?: StringFilter[];
691
767
  /**
768
+ * @public
692
769
  * <p>The resource type to aggregate on.</p>
693
770
  */
694
771
  resourceType?: AggregationResourceType | string;
695
772
  /**
773
+ * @public
696
774
  * <p>The order to sort results by.</p>
697
775
  */
698
776
  sortOrder?: SortOrder | string;
699
777
  /**
778
+ * @public
700
779
  * <p>The value to sort results by.</p>
701
780
  */
702
781
  sortBy?: TitleSortBy | string;
703
782
  /**
783
+ * @public
704
784
  * <p>The type of finding to aggregate on.</p>
705
785
  */
706
786
  findingType?: AggregationFindingType | string;
@@ -715,6 +795,7 @@ export type AggregationRequest = AggregationRequest.AccountAggregationMember | A
715
795
  */
716
796
  export declare namespace AggregationRequest {
717
797
  /**
798
+ * @public
718
799
  * <p>An object that contains details about an aggregation request based on Amazon Web Services account
719
800
  * IDs.</p>
720
801
  */
@@ -733,6 +814,7 @@ export declare namespace AggregationRequest {
733
814
  $unknown?: never;
734
815
  }
735
816
  /**
817
+ * @public
736
818
  * <p>An object that contains details about an aggregation request based on Amazon Machine
737
819
  * Images (AMIs).</p>
738
820
  */
@@ -751,6 +833,7 @@ export declare namespace AggregationRequest {
751
833
  $unknown?: never;
752
834
  }
753
835
  /**
836
+ * @public
754
837
  * <p>An object that contains details about an aggregation request based on Amazon ECR container
755
838
  * images.</p>
756
839
  */
@@ -769,6 +852,7 @@ export declare namespace AggregationRequest {
769
852
  $unknown?: never;
770
853
  }
771
854
  /**
855
+ * @public
772
856
  * <p>An object that contains details about an aggregation request based on Amazon EC2
773
857
  * instances.</p>
774
858
  */
@@ -787,6 +871,7 @@ export declare namespace AggregationRequest {
787
871
  $unknown?: never;
788
872
  }
789
873
  /**
874
+ * @public
790
875
  * <p>An object that contains details about an aggregation request based on finding types.</p>
791
876
  */
792
877
  interface FindingTypeAggregationMember {
@@ -804,6 +889,7 @@ export declare namespace AggregationRequest {
804
889
  $unknown?: never;
805
890
  }
806
891
  /**
892
+ * @public
807
893
  * <p>An object that contains details about an aggregation request based on container image
808
894
  * layers.</p>
809
895
  */
@@ -822,6 +908,7 @@ export declare namespace AggregationRequest {
822
908
  $unknown?: never;
823
909
  }
824
910
  /**
911
+ * @public
825
912
  * <p>An object that contains details about an aggregation request based on operating system
826
913
  * package type.</p>
827
914
  */
@@ -840,6 +927,7 @@ export declare namespace AggregationRequest {
840
927
  $unknown?: never;
841
928
  }
842
929
  /**
930
+ * @public
843
931
  * <p>An object that contains details about an aggregation request based on Amazon ECR repositories.</p>
844
932
  */
845
933
  interface RepositoryAggregationMember {
@@ -857,6 +945,7 @@ export declare namespace AggregationRequest {
857
945
  $unknown?: never;
858
946
  }
859
947
  /**
948
+ * @public
860
949
  * <p>An object that contains details about an aggregation request based on finding title.</p>
861
950
  */
862
951
  interface TitleAggregationMember {
@@ -874,6 +963,7 @@ export declare namespace AggregationRequest {
874
963
  $unknown?: never;
875
964
  }
876
965
  /**
966
+ * @public
877
967
  * <p>Returns an object with findings aggregated by AWS Lambda layer.</p>
878
968
  */
879
969
  interface LambdaLayerAggregationMember {
@@ -891,6 +981,7 @@ export declare namespace AggregationRequest {
891
981
  $unknown?: never;
892
982
  }
893
983
  /**
984
+ * @public
894
985
  * <p>Returns an object with findings aggregated by AWS Lambda function.</p>
895
986
  */
896
987
  interface LambdaFunctionAggregationMember {
@@ -907,6 +998,9 @@ export declare namespace AggregationRequest {
907
998
  lambdaFunctionAggregation: LambdaFunctionAggregation;
908
999
  $unknown?: never;
909
1000
  }
1001
+ /**
1002
+ * @public
1003
+ */
910
1004
  interface $UnknownMember {
911
1005
  accountAggregation?: never;
912
1006
  amiAggregation?: never;
@@ -943,18 +1037,22 @@ export declare namespace AggregationRequest {
943
1037
  */
944
1038
  export interface AmiAggregationResponse {
945
1039
  /**
1040
+ * @public
946
1041
  * <p>The ID of the AMI that findings were aggregated for.</p>
947
1042
  */
948
1043
  ami: string | undefined;
949
1044
  /**
1045
+ * @public
950
1046
  * <p>The Amazon Web Services account ID for the AMI.</p>
951
1047
  */
952
1048
  accountId?: string;
953
1049
  /**
1050
+ * @public
954
1051
  * <p>An object that contains the count of matched findings per severity.</p>
955
1052
  */
956
1053
  severityCounts?: SeverityCounts;
957
1054
  /**
1055
+ * @public
958
1056
  * <p>The IDs of Amazon EC2 instances using this AMI.</p>
959
1057
  */
960
1058
  affectedInstances?: number;
@@ -965,30 +1063,37 @@ export interface AmiAggregationResponse {
965
1063
  */
966
1064
  export interface AwsEcrContainerAggregationResponse {
967
1065
  /**
1066
+ * @public
968
1067
  * <p>The resource ID of the container.</p>
969
1068
  */
970
1069
  resourceId: string | undefined;
971
1070
  /**
1071
+ * @public
972
1072
  * <p>The SHA value of the container image.</p>
973
1073
  */
974
1074
  imageSha?: string;
975
1075
  /**
1076
+ * @public
976
1077
  * <p>The container repository.</p>
977
1078
  */
978
1079
  repository?: string;
979
1080
  /**
1081
+ * @public
980
1082
  * <p>The architecture of the container.</p>
981
1083
  */
982
1084
  architecture?: string;
983
1085
  /**
1086
+ * @public
984
1087
  * <p>The container image stags.</p>
985
1088
  */
986
1089
  imageTags?: string[];
987
1090
  /**
1091
+ * @public
988
1092
  * <p>The Amazon Web Services account ID of the account that owns the container.</p>
989
1093
  */
990
1094
  accountId?: string;
991
1095
  /**
1096
+ * @public
992
1097
  * <p>The number of finding by severity.</p>
993
1098
  */
994
1099
  severityCounts?: SeverityCounts;
@@ -999,30 +1104,37 @@ export interface AwsEcrContainerAggregationResponse {
999
1104
  */
1000
1105
  export interface Ec2InstanceAggregationResponse {
1001
1106
  /**
1107
+ * @public
1002
1108
  * <p>The Amazon EC2 instance ID.</p>
1003
1109
  */
1004
1110
  instanceId: string | undefined;
1005
1111
  /**
1112
+ * @public
1006
1113
  * <p>The Amazon Machine Image (AMI) of the Amazon EC2 instance.</p>
1007
1114
  */
1008
1115
  ami?: string;
1009
1116
  /**
1117
+ * @public
1010
1118
  * <p>The operating system of the Amazon EC2 instance.</p>
1011
1119
  */
1012
1120
  operatingSystem?: string;
1013
1121
  /**
1122
+ * @public
1014
1123
  * <p>The tags attached to the instance.</p>
1015
1124
  */
1016
1125
  instanceTags?: Record<string, string>;
1017
1126
  /**
1127
+ * @public
1018
1128
  * <p>The Amazon Web Services account for the Amazon EC2 instance.</p>
1019
1129
  */
1020
1130
  accountId?: string;
1021
1131
  /**
1132
+ * @public
1022
1133
  * <p>An object that contains the count of matched findings per severity.</p>
1023
1134
  */
1024
1135
  severityCounts?: SeverityCounts;
1025
1136
  /**
1137
+ * @public
1026
1138
  * <p>The number of network findings for the Amazon EC2 instance.</p>
1027
1139
  */
1028
1140
  networkFindings?: number;
@@ -1033,10 +1145,12 @@ export interface Ec2InstanceAggregationResponse {
1033
1145
  */
1034
1146
  export interface FindingTypeAggregationResponse {
1035
1147
  /**
1148
+ * @public
1036
1149
  * <p>The ID of the Amazon Web Services account associated with the findings.</p>
1037
1150
  */
1038
1151
  accountId?: string;
1039
1152
  /**
1153
+ * @public
1040
1154
  * <p>The value to sort results by.</p>
1041
1155
  */
1042
1156
  severityCounts?: SeverityCounts;
@@ -1047,22 +1161,27 @@ export interface FindingTypeAggregationResponse {
1047
1161
  */
1048
1162
  export interface ImageLayerAggregationResponse {
1049
1163
  /**
1164
+ * @public
1050
1165
  * <p>The repository the layer resides in.</p>
1051
1166
  */
1052
1167
  repository: string | undefined;
1053
1168
  /**
1169
+ * @public
1054
1170
  * <p>The resource ID of the container image layer.</p>
1055
1171
  */
1056
1172
  resourceId: string | undefined;
1057
1173
  /**
1174
+ * @public
1058
1175
  * <p>The layer hash.</p>
1059
1176
  */
1060
1177
  layerHash: string | undefined;
1061
1178
  /**
1179
+ * @public
1062
1180
  * <p>The ID of the Amazon Web Services account that owns the container image hosting the layer image.</p>
1063
1181
  */
1064
1182
  accountId: string | undefined;
1065
1183
  /**
1184
+ * @public
1066
1185
  * <p>An object that represents the count of matched findings per severity.</p>
1067
1186
  */
1068
1187
  severityCounts?: SeverityCounts;
@@ -1073,31 +1192,38 @@ export interface ImageLayerAggregationResponse {
1073
1192
  */
1074
1193
  export interface LambdaFunctionAggregationResponse {
1075
1194
  /**
1195
+ * @public
1076
1196
  * <p>The resource IDs included in the aggregation results.</p>
1077
1197
  */
1078
1198
  resourceId: string | undefined;
1079
1199
  /**
1200
+ * @public
1080
1201
  * <p>The AWS Lambda function names included in the aggregation results.</p>
1081
1202
  */
1082
1203
  functionName?: string;
1083
1204
  /**
1205
+ * @public
1084
1206
  * <p>The runtimes included in the aggregation results.</p>
1085
1207
  */
1086
1208
  runtime?: string;
1087
1209
  /**
1210
+ * @public
1088
1211
  * <p>The tags included in the aggregation results.</p>
1089
1212
  */
1090
1213
  lambdaTags?: Record<string, string>;
1091
1214
  /**
1215
+ * @public
1092
1216
  * <p>The ID of the AWS account that owns the AWS Lambda function.
1093
1217
  * </p>
1094
1218
  */
1095
1219
  accountId?: string;
1096
1220
  /**
1221
+ * @public
1097
1222
  * <p>An object that contains the counts of aggregated finding per severity.</p>
1098
1223
  */
1099
1224
  severityCounts?: SeverityCounts;
1100
1225
  /**
1226
+ * @public
1101
1227
  * <p>The date that the AWS Lambda function included in the aggregation results was last changed.</p>
1102
1228
  */
1103
1229
  lastModifiedAt?: Date;
@@ -1108,22 +1234,27 @@ export interface LambdaFunctionAggregationResponse {
1108
1234
  */
1109
1235
  export interface LambdaLayerAggregationResponse {
1110
1236
  /**
1237
+ * @public
1111
1238
  * <p>The names of the AWS Lambda functions associated with the layers.</p>
1112
1239
  */
1113
1240
  functionName: string | undefined;
1114
1241
  /**
1242
+ * @public
1115
1243
  * <p>The Resource ID of the AWS Lambda function layer.</p>
1116
1244
  */
1117
1245
  resourceId: string | undefined;
1118
1246
  /**
1247
+ * @public
1119
1248
  * <p>The Amazon Resource Name (ARN) of the AWS Lambda function layer.</p>
1120
1249
  */
1121
1250
  layerArn: string | undefined;
1122
1251
  /**
1252
+ * @public
1123
1253
  * <p>The account ID of the AWS Lambda function layer.</p>
1124
1254
  */
1125
1255
  accountId: string | undefined;
1126
1256
  /**
1257
+ * @public
1127
1258
  * <p>An object that contains the counts of aggregated finding per severity.</p>
1128
1259
  */
1129
1260
  severityCounts?: SeverityCounts;
@@ -1134,14 +1265,17 @@ export interface LambdaLayerAggregationResponse {
1134
1265
  */
1135
1266
  export interface PackageAggregationResponse {
1136
1267
  /**
1268
+ * @public
1137
1269
  * <p>The name of the operating system package.</p>
1138
1270
  */
1139
1271
  packageName: string | undefined;
1140
1272
  /**
1273
+ * @public
1141
1274
  * <p>The ID of the Amazon Web Services account associated with the findings.</p>
1142
1275
  */
1143
1276
  accountId?: string;
1144
1277
  /**
1278
+ * @public
1145
1279
  * <p>An object that contains the count of matched findings per severity.</p>
1146
1280
  */
1147
1281
  severityCounts?: SeverityCounts;
@@ -1152,18 +1286,22 @@ export interface PackageAggregationResponse {
1152
1286
  */
1153
1287
  export interface RepositoryAggregationResponse {
1154
1288
  /**
1289
+ * @public
1155
1290
  * <p>The name of the repository associated with the findings.</p>
1156
1291
  */
1157
1292
  repository: string | undefined;
1158
1293
  /**
1294
+ * @public
1159
1295
  * <p>The ID of the Amazon Web Services account associated with the findings.</p>
1160
1296
  */
1161
1297
  accountId?: string;
1162
1298
  /**
1299
+ * @public
1163
1300
  * <p>An object that represent the count of matched findings per severity.</p>
1164
1301
  */
1165
1302
  severityCounts?: SeverityCounts;
1166
1303
  /**
1304
+ * @public
1167
1305
  * <p>The number of container images impacted by the findings.</p>
1168
1306
  */
1169
1307
  affectedImages?: number;
@@ -1174,18 +1312,22 @@ export interface RepositoryAggregationResponse {
1174
1312
  */
1175
1313
  export interface TitleAggregationResponse {
1176
1314
  /**
1315
+ * @public
1177
1316
  * <p>The title that the findings were aggregated on.</p>
1178
1317
  */
1179
1318
  title: string | undefined;
1180
1319
  /**
1320
+ * @public
1181
1321
  * <p>The vulnerability ID of the finding.</p>
1182
1322
  */
1183
1323
  vulnerabilityId?: string;
1184
1324
  /**
1325
+ * @public
1185
1326
  * <p>The ID of the Amazon Web Services account associated with the findings.</p>
1186
1327
  */
1187
1328
  accountId?: string;
1188
1329
  /**
1330
+ * @public
1189
1331
  * <p>An object that represent the count of matched findings per severity.</p>
1190
1332
  */
1191
1333
  severityCounts?: SeverityCounts;
@@ -1200,6 +1342,7 @@ export type AggregationResponse = AggregationResponse.AccountAggregationMember |
1200
1342
  */
1201
1343
  export declare namespace AggregationResponse {
1202
1344
  /**
1345
+ * @public
1203
1346
  * <p>An object that contains details about an aggregation response based on Amazon Web Services account
1204
1347
  * IDs.</p>
1205
1348
  */
@@ -1218,6 +1361,7 @@ export declare namespace AggregationResponse {
1218
1361
  $unknown?: never;
1219
1362
  }
1220
1363
  /**
1364
+ * @public
1221
1365
  * <p>An object that contains details about an aggregation response based on Amazon Machine
1222
1366
  * Images (AMIs).</p>
1223
1367
  */
@@ -1236,6 +1380,7 @@ export declare namespace AggregationResponse {
1236
1380
  $unknown?: never;
1237
1381
  }
1238
1382
  /**
1383
+ * @public
1239
1384
  * <p>An object that contains details about an aggregation response based on Amazon ECR container
1240
1385
  * images.</p>
1241
1386
  */
@@ -1254,6 +1399,7 @@ export declare namespace AggregationResponse {
1254
1399
  $unknown?: never;
1255
1400
  }
1256
1401
  /**
1402
+ * @public
1257
1403
  * <p>An object that contains details about an aggregation response based on Amazon EC2
1258
1404
  * instances.</p>
1259
1405
  */
@@ -1272,6 +1418,7 @@ export declare namespace AggregationResponse {
1272
1418
  $unknown?: never;
1273
1419
  }
1274
1420
  /**
1421
+ * @public
1275
1422
  * <p>An object that contains details about an aggregation response based on finding types.</p>
1276
1423
  */
1277
1424
  interface FindingTypeAggregationMember {
@@ -1289,6 +1436,7 @@ export declare namespace AggregationResponse {
1289
1436
  $unknown?: never;
1290
1437
  }
1291
1438
  /**
1439
+ * @public
1292
1440
  * <p>An object that contains details about an aggregation response based on container image
1293
1441
  * layers.</p>
1294
1442
  */
@@ -1307,6 +1455,7 @@ export declare namespace AggregationResponse {
1307
1455
  $unknown?: never;
1308
1456
  }
1309
1457
  /**
1458
+ * @public
1310
1459
  * <p>An object that contains details about an aggregation response based on operating system
1311
1460
  * package type.</p>
1312
1461
  */
@@ -1325,6 +1474,7 @@ export declare namespace AggregationResponse {
1325
1474
  $unknown?: never;
1326
1475
  }
1327
1476
  /**
1477
+ * @public
1328
1478
  * <p>An object that contains details about an aggregation response based on Amazon ECR
1329
1479
  * repositories.</p>
1330
1480
  */
@@ -1343,6 +1493,7 @@ export declare namespace AggregationResponse {
1343
1493
  $unknown?: never;
1344
1494
  }
1345
1495
  /**
1496
+ * @public
1346
1497
  * <p>An object that contains details about an aggregation response based on finding title.</p>
1347
1498
  */
1348
1499
  interface TitleAggregationMember {
@@ -1360,6 +1511,7 @@ export declare namespace AggregationResponse {
1360
1511
  $unknown?: never;
1361
1512
  }
1362
1513
  /**
1514
+ * @public
1363
1515
  * <p>An aggregation of findings by AWS Lambda layer.</p>
1364
1516
  */
1365
1517
  interface LambdaLayerAggregationMember {
@@ -1377,6 +1529,7 @@ export declare namespace AggregationResponse {
1377
1529
  $unknown?: never;
1378
1530
  }
1379
1531
  /**
1532
+ * @public
1380
1533
  * <p>An aggregation of findings by AWS Lambda function.</p>
1381
1534
  */
1382
1535
  interface LambdaFunctionAggregationMember {
@@ -1393,6 +1546,9 @@ export declare namespace AggregationResponse {
1393
1546
  lambdaFunctionAggregation: LambdaFunctionAggregationResponse;
1394
1547
  $unknown?: never;
1395
1548
  }
1549
+ /**
1550
+ * @public
1551
+ */
1396
1552
  interface $UnknownMember {
1397
1553
  accountAggregation?: never;
1398
1554
  amiAggregation?: never;
@@ -1461,6 +1617,7 @@ export type Architecture = (typeof Architecture)[keyof typeof Architecture];
1461
1617
  */
1462
1618
  export interface AssociateMemberRequest {
1463
1619
  /**
1620
+ * @public
1464
1621
  * <p>The Amazon Web Services account ID of the member account to be associated.</p>
1465
1622
  */
1466
1623
  accountId: string | undefined;
@@ -1470,6 +1627,7 @@ export interface AssociateMemberRequest {
1470
1627
  */
1471
1628
  export interface AssociateMemberResponse {
1472
1629
  /**
1630
+ * @public
1473
1631
  * <p>The Amazon Web Services account ID of the successfully associated member account.</p>
1474
1632
  */
1475
1633
  accountId: string | undefined;
@@ -1483,6 +1641,7 @@ export declare class InternalServerException extends __BaseException {
1483
1641
  readonly $fault: "server";
1484
1642
  $retryable: {};
1485
1643
  /**
1644
+ * @public
1486
1645
  * <p>The number of seconds to wait before retrying the request.</p>
1487
1646
  */
1488
1647
  retryAfterSeconds?: number;
@@ -1502,6 +1661,7 @@ export declare class ThrottlingException extends __BaseException {
1502
1661
  throttling: boolean;
1503
1662
  };
1504
1663
  /**
1664
+ * @public
1505
1665
  * <p>The number of seconds to wait before retrying the request.</p>
1506
1666
  */
1507
1667
  retryAfterSeconds?: number;
@@ -1516,10 +1676,12 @@ export declare class ThrottlingException extends __BaseException {
1516
1676
  */
1517
1677
  export interface ValidationExceptionField {
1518
1678
  /**
1679
+ * @public
1519
1680
  * <p>The name of the validation exception.</p>
1520
1681
  */
1521
1682
  name: string | undefined;
1522
1683
  /**
1684
+ * @public
1523
1685
  * <p>The validation exception message.</p>
1524
1686
  */
1525
1687
  message: string | undefined;
@@ -1546,10 +1708,12 @@ export declare class ValidationException extends __BaseException {
1546
1708
  readonly name: "ValidationException";
1547
1709
  readonly $fault: "client";
1548
1710
  /**
1711
+ * @public
1549
1712
  * <p>The reason for the validation failure.</p>
1550
1713
  */
1551
1714
  reason: ValidationExceptionReason | string | undefined;
1552
1715
  /**
1716
+ * @public
1553
1717
  * <p>The fields that failed validation.</p>
1554
1718
  */
1555
1719
  fields?: ValidationExceptionField[];
@@ -1564,18 +1728,22 @@ export declare class ValidationException extends __BaseException {
1564
1728
  */
1565
1729
  export interface AtigData {
1566
1730
  /**
1731
+ * @public
1567
1732
  * <p>The date and time this vulnerability was first observed.</p>
1568
1733
  */
1569
1734
  firstSeen?: Date;
1570
1735
  /**
1736
+ * @public
1571
1737
  * <p>The date and time this vulnerability was last observed.</p>
1572
1738
  */
1573
1739
  lastSeen?: Date;
1574
1740
  /**
1741
+ * @public
1575
1742
  * <p>The commercial sectors this vulnerability targets.</p>
1576
1743
  */
1577
1744
  targets?: string[];
1578
1745
  /**
1746
+ * @public
1579
1747
  * <p>The <a href="https://attack.mitre.org/">MITRE ATT&amp;CK</a> tactics, techniques, and procedures (TTPs) associated with vulnerability.</p>
1580
1748
  */
1581
1749
  ttps?: string[];
@@ -1586,21 +1754,25 @@ export interface AtigData {
1586
1754
  */
1587
1755
  export interface AutoEnable {
1588
1756
  /**
1757
+ * @public
1589
1758
  * <p>Represents whether Amazon EC2 scans are automatically enabled for new members of your Amazon Inspector
1590
1759
  * organization.</p>
1591
1760
  */
1592
1761
  ec2: boolean | undefined;
1593
1762
  /**
1763
+ * @public
1594
1764
  * <p>Represents whether Amazon ECR scans are automatically enabled for new members of your Amazon Inspector
1595
1765
  * organization.</p>
1596
1766
  */
1597
1767
  ecr: boolean | undefined;
1598
1768
  /**
1769
+ * @public
1599
1770
  * <p>Represents whether AWS Lambda standard scans are automatically enabled for new members of your Amazon Inspector organization.
1600
1771
  * </p>
1601
1772
  */
1602
1773
  lambda?: boolean;
1603
1774
  /**
1775
+ * @public
1604
1776
  * <p>Represents whether AWS Lambda code scans are automatically enabled for new members of your Amazon Inspector organization.
1605
1777
  *
1606
1778
  * </p>
@@ -1613,42 +1785,52 @@ export interface AutoEnable {
1613
1785
  */
1614
1786
  export interface AwsEc2InstanceDetails {
1615
1787
  /**
1788
+ * @public
1616
1789
  * <p>The type of the Amazon EC2 instance.</p>
1617
1790
  */
1618
1791
  type?: string;
1619
1792
  /**
1793
+ * @public
1620
1794
  * <p>The image ID of the Amazon EC2 instance.</p>
1621
1795
  */
1622
1796
  imageId?: string;
1623
1797
  /**
1798
+ * @public
1624
1799
  * <p>The IPv4 addresses of the Amazon EC2 instance.</p>
1625
1800
  */
1626
1801
  ipV4Addresses?: string[];
1627
1802
  /**
1803
+ * @public
1628
1804
  * <p>The IPv6 addresses of the Amazon EC2 instance.</p>
1629
1805
  */
1630
1806
  ipV6Addresses?: string[];
1631
1807
  /**
1808
+ * @public
1632
1809
  * <p>The name of the key pair used to launch the Amazon EC2 instance.</p>
1633
1810
  */
1634
1811
  keyName?: string;
1635
1812
  /**
1813
+ * @public
1636
1814
  * <p>The IAM instance profile ARN of the Amazon EC2 instance.</p>
1637
1815
  */
1638
1816
  iamInstanceProfileArn?: string;
1639
1817
  /**
1818
+ * @public
1640
1819
  * <p>The VPC ID of the Amazon EC2 instance.</p>
1641
1820
  */
1642
1821
  vpcId?: string;
1643
1822
  /**
1823
+ * @public
1644
1824
  * <p>The subnet ID of the Amazon EC2 instance.</p>
1645
1825
  */
1646
1826
  subnetId?: string;
1647
1827
  /**
1828
+ * @public
1648
1829
  * <p>The date and time the Amazon EC2 instance was launched at.</p>
1649
1830
  */
1650
1831
  launchedAt?: Date;
1651
1832
  /**
1833
+ * @public
1652
1834
  * <p>The platform of the Amazon EC2 instance.</p>
1653
1835
  */
1654
1836
  platform?: string;
@@ -1659,34 +1841,42 @@ export interface AwsEc2InstanceDetails {
1659
1841
  */
1660
1842
  export interface AwsEcrContainerImageDetails {
1661
1843
  /**
1844
+ * @public
1662
1845
  * <p>The name of the repository the Amazon ECR container image resides in.</p>
1663
1846
  */
1664
1847
  repositoryName: string | undefined;
1665
1848
  /**
1849
+ * @public
1666
1850
  * <p>The image tags attached to the Amazon ECR container image.</p>
1667
1851
  */
1668
1852
  imageTags?: string[];
1669
1853
  /**
1854
+ * @public
1670
1855
  * <p>The date and time the Amazon ECR container image was pushed.</p>
1671
1856
  */
1672
1857
  pushedAt?: Date;
1673
1858
  /**
1859
+ * @public
1674
1860
  * <p>The image author of the Amazon ECR container image.</p>
1675
1861
  */
1676
1862
  author?: string;
1677
1863
  /**
1864
+ * @public
1678
1865
  * <p>The architecture of the Amazon ECR container image.</p>
1679
1866
  */
1680
1867
  architecture?: string;
1681
1868
  /**
1869
+ * @public
1682
1870
  * <p>The image hash of the Amazon ECR container image.</p>
1683
1871
  */
1684
1872
  imageHash: string | undefined;
1685
1873
  /**
1874
+ * @public
1686
1875
  * <p>The registry for the Amazon ECR container image.</p>
1687
1876
  */
1688
1877
  registry: string | undefined;
1689
1878
  /**
1879
+ * @public
1690
1880
  * <p>The platform of the Amazon ECR container image.</p>
1691
1881
  */
1692
1882
  platform?: string;
@@ -1734,14 +1924,17 @@ export type Runtime = (typeof Runtime)[keyof typeof Runtime];
1734
1924
  */
1735
1925
  export interface LambdaVpcConfig {
1736
1926
  /**
1927
+ * @public
1737
1928
  * <p>A list of VPC subnet IDs.</p>
1738
1929
  */
1739
1930
  subnetIds?: string[];
1740
1931
  /**
1932
+ * @public
1741
1933
  * <p>The VPC security groups and subnets that are attached to an AWS Lambda function. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-vpc.html">VPC Settings</a>.</p>
1742
1934
  */
1743
1935
  securityGroupIds?: string[];
1744
1936
  /**
1937
+ * @public
1745
1938
  * <p>The ID of the VPC.</p>
1746
1939
  */
1747
1940
  vpcId?: string;
@@ -1752,44 +1945,54 @@ export interface LambdaVpcConfig {
1752
1945
  */
1753
1946
  export interface AwsLambdaFunctionDetails {
1754
1947
  /**
1948
+ * @public
1755
1949
  * <p>The name of the AWS Lambda function.</p>
1756
1950
  */
1757
1951
  functionName: string | undefined;
1758
1952
  /**
1953
+ * @public
1759
1954
  * <p>The runtime environment for the AWS Lambda function.</p>
1760
1955
  */
1761
1956
  runtime: Runtime | string | undefined;
1762
1957
  /**
1958
+ * @public
1763
1959
  * <p>The SHA256 hash of the AWS Lambda function's deployment package.</p>
1764
1960
  */
1765
1961
  codeSha256: string | undefined;
1766
1962
  /**
1963
+ * @public
1767
1964
  * <p>The version of the AWS Lambda function.</p>
1768
1965
  */
1769
1966
  version: string | undefined;
1770
1967
  /**
1968
+ * @public
1771
1969
  * <p>The AWS Lambda function's execution role.</p>
1772
1970
  */
1773
1971
  executionRoleArn: string | undefined;
1774
1972
  /**
1973
+ * @public
1775
1974
  * <p>The AWS Lambda function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">
1776
1975
  * layers</a>. A Lambda function can have up to five layers.</p>
1777
1976
  */
1778
1977
  layers?: string[];
1779
1978
  /**
1979
+ * @public
1780
1980
  * <p>The AWS Lambda function's networking configuration.</p>
1781
1981
  */
1782
1982
  vpcConfig?: LambdaVpcConfig;
1783
1983
  /**
1984
+ * @public
1784
1985
  * <p>The type of deployment package. Set to <code>Image</code> for container image and set <code>Zip</code> for .zip file archive.</p>
1785
1986
  */
1786
1987
  packageType?: PackageType | string;
1787
1988
  /**
1989
+ * @public
1788
1990
  * <p>The instruction set architecture that the AWS Lambda function supports. Architecture is a string array with one of the
1789
1991
  * valid values. The default architecture value is <code>x86_64</code>.</p>
1790
1992
  */
1791
1993
  architectures?: (Architecture | string)[];
1792
1994
  /**
1995
+ * @public
1793
1996
  * <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>
1794
1997
  * </p>
1795
1998
  */
@@ -1812,6 +2015,7 @@ export declare class BadRequestException extends __BaseException {
1812
2015
  */
1813
2016
  export interface BatchGetAccountStatusRequest {
1814
2017
  /**
2018
+ * @public
1815
2019
  * <p>The 12-digit Amazon Web Services account IDs of the accounts to retrieve Amazon Inspector status for.</p>
1816
2020
  */
1817
2021
  accountIds?: string[];
@@ -1822,22 +2026,27 @@ export interface BatchGetAccountStatusRequest {
1822
2026
  */
1823
2027
  export interface FailedAccount {
1824
2028
  /**
2029
+ * @public
1825
2030
  * <p>The Amazon Web Services account ID.</p>
1826
2031
  */
1827
2032
  accountId: string | undefined;
1828
2033
  /**
2034
+ * @public
1829
2035
  * <p>The status of Amazon Inspector for the account.</p>
1830
2036
  */
1831
2037
  status?: Status | string;
1832
2038
  /**
2039
+ * @public
1833
2040
  * <p>An object detailing which resources Amazon Inspector is enabled to scan for the account.</p>
1834
2041
  */
1835
2042
  resourceStatus?: ResourceStatus;
1836
2043
  /**
2044
+ * @public
1837
2045
  * <p>The error code explaining why the account failed to enable Amazon Inspector.</p>
1838
2046
  */
1839
2047
  errorCode: ErrorCode | string | undefined;
1840
2048
  /**
2049
+ * @public
1841
2050
  * <p>The error message received when the account failed to enable Amazon Inspector.</p>
1842
2051
  */
1843
2052
  errorMessage: string | undefined;
@@ -1847,10 +2056,12 @@ export interface FailedAccount {
1847
2056
  */
1848
2057
  export interface BatchGetAccountStatusResponse {
1849
2058
  /**
2059
+ * @public
1850
2060
  * <p>An array of objects that provide details on the status of Amazon Inspector for each of the requested accounts.</p>
1851
2061
  */
1852
2062
  accounts: AccountState[] | undefined;
1853
2063
  /**
2064
+ * @public
1854
2065
  * <p>An array of objects detailing any accounts that failed to enable Amazon Inspector and why.</p>
1855
2066
  */
1856
2067
  failedAccounts?: FailedAccount[];
@@ -1872,6 +2083,7 @@ export declare class ResourceNotFoundException extends __BaseException {
1872
2083
  */
1873
2084
  export interface BatchGetCodeSnippetRequest {
1874
2085
  /**
2086
+ * @public
1875
2087
  * <p>An array of finding ARNs for the findings you want to retrieve code snippets from.</p>
1876
2088
  */
1877
2089
  findingArns: string[] | undefined;
@@ -1882,10 +2094,12 @@ export interface BatchGetCodeSnippetRequest {
1882
2094
  */
1883
2095
  export interface CodeLine {
1884
2096
  /**
2097
+ * @public
1885
2098
  * <p>The content of a line of code</p>
1886
2099
  */
1887
2100
  content: string | undefined;
1888
2101
  /**
2102
+ * @public
1889
2103
  * <p>The line number that a section of code is located at.</p>
1890
2104
  */
1891
2105
  lineNumber: number | undefined;
@@ -1896,10 +2110,12 @@ export interface CodeLine {
1896
2110
  */
1897
2111
  export interface SuggestedFix {
1898
2112
  /**
2113
+ * @public
1899
2114
  * <p>The fix's description.</p>
1900
2115
  */
1901
2116
  description?: string;
1902
2117
  /**
2118
+ * @public
1903
2119
  * <p>The fix's code.</p>
1904
2120
  */
1905
2121
  code?: string;
@@ -1910,22 +2126,27 @@ export interface SuggestedFix {
1910
2126
  */
1911
2127
  export interface CodeSnippetResult {
1912
2128
  /**
2129
+ * @public
1913
2130
  * <p>The ARN of a finding that the code snippet is associated with.</p>
1914
2131
  */
1915
2132
  findingArn?: string;
1916
2133
  /**
2134
+ * @public
1917
2135
  * <p>The line number of the first line of a code snippet.</p>
1918
2136
  */
1919
2137
  startLine?: number;
1920
2138
  /**
2139
+ * @public
1921
2140
  * <p>The line number of the last line of a code snippet.</p>
1922
2141
  */
1923
2142
  endLine?: number;
1924
2143
  /**
2144
+ * @public
1925
2145
  * <p>Contains information on the retrieved code snippet.</p>
1926
2146
  */
1927
2147
  codeSnippet?: CodeLine[];
1928
2148
  /**
2149
+ * @public
1929
2150
  * <p>Details of a suggested code fix.</p>
1930
2151
  */
1931
2152
  suggestedFixes?: SuggestedFix[];
@@ -1950,14 +2171,17 @@ export type CodeSnippetErrorCode = (typeof CodeSnippetErrorCode)[keyof typeof Co
1950
2171
  */
1951
2172
  export interface CodeSnippetError {
1952
2173
  /**
2174
+ * @public
1953
2175
  * <p>The ARN of the finding that a code snippet couldn't be retrieved for.</p>
1954
2176
  */
1955
2177
  findingArn: string | undefined;
1956
2178
  /**
2179
+ * @public
1957
2180
  * <p>The error code for the error that prevented a code snippet from being retrieved.</p>
1958
2181
  */
1959
2182
  errorCode: CodeSnippetErrorCode | string | undefined;
1960
2183
  /**
2184
+ * @public
1961
2185
  * <p>The error message received when Amazon Inspector failed to retrieve a code snippet.</p>
1962
2186
  */
1963
2187
  errorMessage: string | undefined;
@@ -1967,10 +2191,12 @@ export interface CodeSnippetError {
1967
2191
  */
1968
2192
  export interface BatchGetCodeSnippetResponse {
1969
2193
  /**
2194
+ * @public
1970
2195
  * <p>The retrieved code snippets associated with the provided finding ARNs.</p>
1971
2196
  */
1972
2197
  codeSnippetResults?: CodeSnippetResult[];
1973
2198
  /**
2199
+ * @public
1974
2200
  * <p>Any errors Amazon Inspector encountered while trying to retrieve the requested code snippets.</p>
1975
2201
  */
1976
2202
  errors?: CodeSnippetError[];
@@ -1980,6 +2206,7 @@ export interface BatchGetCodeSnippetResponse {
1980
2206
  */
1981
2207
  export interface BatchGetFindingDetailsRequest {
1982
2208
  /**
2209
+ * @public
1983
2210
  * <p>A list of finding ARNs.</p>
1984
2211
  */
1985
2212
  findingArns: string[] | undefined;
@@ -2004,14 +2231,17 @@ export type FindingDetailsErrorCode = (typeof FindingDetailsErrorCode)[keyof typ
2004
2231
  */
2005
2232
  export interface FindingDetailsError {
2006
2233
  /**
2234
+ * @public
2007
2235
  * <p>The finding ARN that returned an error.</p>
2008
2236
  */
2009
2237
  findingArn: string | undefined;
2010
2238
  /**
2239
+ * @public
2011
2240
  * <p>The error code.</p>
2012
2241
  */
2013
2242
  errorCode: FindingDetailsErrorCode | string | undefined;
2014
2243
  /**
2244
+ * @public
2015
2245
  * <p>The error message.</p>
2016
2246
  */
2017
2247
  errorMessage: string | undefined;
@@ -2022,14 +2252,17 @@ export interface FindingDetailsError {
2022
2252
  */
2023
2253
  export interface CisaData {
2024
2254
  /**
2255
+ * @public
2025
2256
  * <p>The date and time CISA added this vulnerability to their catalogue.</p>
2026
2257
  */
2027
2258
  dateAdded?: Date;
2028
2259
  /**
2260
+ * @public
2029
2261
  * <p>The date and time CISA expects a fix to have been provided vulnerability.</p>
2030
2262
  */
2031
2263
  dateDue?: Date;
2032
2264
  /**
2265
+ * @public
2033
2266
  * <p>The remediation action recommended by CISA for this vulnerability.</p>
2034
2267
  */
2035
2268
  action?: string;
@@ -2040,14 +2273,17 @@ export interface CisaData {
2040
2273
  */
2041
2274
  export interface Evidence {
2042
2275
  /**
2276
+ * @public
2043
2277
  * <p>The evidence rule.</p>
2044
2278
  */
2045
2279
  evidenceRule?: string;
2046
2280
  /**
2281
+ * @public
2047
2282
  * <p>The evidence details.</p>
2048
2283
  */
2049
2284
  evidenceDetail?: string;
2050
2285
  /**
2286
+ * @public
2051
2287
  * <p>The evidence severity.</p>
2052
2288
  */
2053
2289
  severity?: string;
@@ -2058,10 +2294,12 @@ export interface Evidence {
2058
2294
  */
2059
2295
  export interface ExploitObserved {
2060
2296
  /**
2297
+ * @public
2061
2298
  * <p>The date an time when the exploit was last seen.</p>
2062
2299
  */
2063
2300
  lastSeen?: Date;
2064
2301
  /**
2302
+ * @public
2065
2303
  * <p>The date an time when the exploit was first seen.</p>
2066
2304
  */
2067
2305
  firstSeen?: Date;
@@ -2072,42 +2310,52 @@ export interface ExploitObserved {
2072
2310
  */
2073
2311
  export interface FindingDetail {
2074
2312
  /**
2313
+ * @public
2075
2314
  * <p>The finding ARN that the vulnerability details are associated with.</p>
2076
2315
  */
2077
2316
  findingArn?: string;
2078
2317
  /**
2318
+ * @public
2079
2319
  * <p>The Cybersecurity and Infrastructure Security Agency (CISA) details for a specific vulnerability.</p>
2080
2320
  */
2081
2321
  cisaData?: CisaData;
2082
2322
  /**
2323
+ * @public
2083
2324
  * <p>The risk score of the vulnerability.</p>
2084
2325
  */
2085
2326
  riskScore?: number;
2086
2327
  /**
2328
+ * @public
2087
2329
  * <p>Information on the evidence of the vulnerability.</p>
2088
2330
  */
2089
2331
  evidences?: Evidence[];
2090
2332
  /**
2333
+ * @public
2091
2334
  * <p>The MITRE adversary tactics, techniques, or procedures (TTPs) associated with the vulnerability.</p>
2092
2335
  */
2093
2336
  ttps?: string[];
2094
2337
  /**
2338
+ * @public
2095
2339
  * <p>The known malware tools or kits that can exploit the vulnerability.</p>
2096
2340
  */
2097
2341
  tools?: string[];
2098
2342
  /**
2343
+ * @public
2099
2344
  * <p>Contains information on when this exploit was observed.</p>
2100
2345
  */
2101
2346
  exploitObserved?: ExploitObserved;
2102
2347
  /**
2348
+ * @public
2103
2349
  * <p>The reference URLs for the vulnerability data.</p>
2104
2350
  */
2105
2351
  referenceUrls?: string[];
2106
2352
  /**
2353
+ * @public
2107
2354
  * <p>The Common Weakness Enumerations (CWEs) associated with the vulnerability.</p>
2108
2355
  */
2109
2356
  cwes?: string[];
2110
2357
  /**
2358
+ * @public
2111
2359
  * <p>The Exploit Prediction Scoring System (EPSS) score of the vulnerability.</p>
2112
2360
  */
2113
2361
  epssScore?: number;
@@ -2117,10 +2365,12 @@ export interface FindingDetail {
2117
2365
  */
2118
2366
  export interface BatchGetFindingDetailsResponse {
2119
2367
  /**
2368
+ * @public
2120
2369
  * <p>A finding's vulnerability details.</p>
2121
2370
  */
2122
2371
  findingDetails?: FindingDetail[];
2123
2372
  /**
2373
+ * @public
2124
2374
  * <p>Error information for findings that details could not be returned for.</p>
2125
2375
  */
2126
2376
  errors?: FindingDetailsError[];
@@ -2130,6 +2380,7 @@ export interface BatchGetFindingDetailsResponse {
2130
2380
  */
2131
2381
  export interface BatchGetFreeTrialInfoRequest {
2132
2382
  /**
2383
+ * @public
2133
2384
  * <p>The account IDs to get free trial status for.</p>
2134
2385
  */
2135
2386
  accountIds: string[] | undefined;
@@ -2166,18 +2417,22 @@ export type FreeTrialType = (typeof FreeTrialType)[keyof typeof FreeTrialType];
2166
2417
  */
2167
2418
  export interface FreeTrialInfo {
2168
2419
  /**
2420
+ * @public
2169
2421
  * <p>The type of scan covered by the Amazon Inspector free trail.</p>
2170
2422
  */
2171
2423
  type: FreeTrialType | string | undefined;
2172
2424
  /**
2425
+ * @public
2173
2426
  * <p>The date and time that the Amazon Inspector free trail started for a given account.</p>
2174
2427
  */
2175
2428
  start: Date | undefined;
2176
2429
  /**
2430
+ * @public
2177
2431
  * <p>The date and time that the Amazon Inspector free trail ends for a given account.</p>
2178
2432
  */
2179
2433
  end: Date | undefined;
2180
2434
  /**
2435
+ * @public
2181
2436
  * <p>The order to sort results by.</p>
2182
2437
  */
2183
2438
  status: FreeTrialStatus | string | undefined;
@@ -2188,10 +2443,12 @@ export interface FreeTrialInfo {
2188
2443
  */
2189
2444
  export interface FreeTrialAccountInfo {
2190
2445
  /**
2446
+ * @public
2191
2447
  * <p>The account associated with the Amazon Inspector free trial information.</p>
2192
2448
  */
2193
2449
  accountId: string | undefined;
2194
2450
  /**
2451
+ * @public
2195
2452
  * <p>Contains information about the Amazon Inspector free trial for an account.</p>
2196
2453
  */
2197
2454
  freeTrialInfo: FreeTrialInfo[] | undefined;
@@ -2214,14 +2471,17 @@ export type FreeTrialInfoErrorCode = (typeof FreeTrialInfoErrorCode)[keyof typeo
2214
2471
  */
2215
2472
  export interface FreeTrialInfoError {
2216
2473
  /**
2474
+ * @public
2217
2475
  * <p>The account associated with the Amazon Inspector free trial information.</p>
2218
2476
  */
2219
2477
  accountId: string | undefined;
2220
2478
  /**
2479
+ * @public
2221
2480
  * <p>The error code.</p>
2222
2481
  */
2223
2482
  code: FreeTrialInfoErrorCode | string | undefined;
2224
2483
  /**
2484
+ * @public
2225
2485
  * <p>The error message returned.</p>
2226
2486
  */
2227
2487
  message: string | undefined;
@@ -2231,11 +2491,13 @@ export interface FreeTrialInfoError {
2231
2491
  */
2232
2492
  export interface BatchGetFreeTrialInfoResponse {
2233
2493
  /**
2494
+ * @public
2234
2495
  * <p>An array of objects that provide Amazon Inspector free trial details for each of the requested accounts.
2235
2496
  * </p>
2236
2497
  */
2237
2498
  accounts: FreeTrialAccountInfo[] | undefined;
2238
2499
  /**
2500
+ * @public
2239
2501
  * <p>An array of objects detailing any accounts that free trial data could not be returned for.</p>
2240
2502
  */
2241
2503
  failedAccounts: FreeTrialInfoError[] | undefined;
@@ -2245,6 +2507,7 @@ export interface BatchGetFreeTrialInfoResponse {
2245
2507
  */
2246
2508
  export interface BatchGetMemberEc2DeepInspectionStatusRequest {
2247
2509
  /**
2510
+ * @public
2248
2511
  * <p>The unique identifiers for the Amazon Web Services accounts to retrieve Amazon Inspector deep inspection activation status for.
2249
2512
  *
2250
2513
  * </p>
@@ -2271,14 +2534,17 @@ export type Ec2DeepInspectionStatus = (typeof Ec2DeepInspectionStatus)[keyof typ
2271
2534
  */
2272
2535
  export interface MemberAccountEc2DeepInspectionStatusState {
2273
2536
  /**
2537
+ * @public
2274
2538
  * <p>The unique identifier for the Amazon Web Services account of the organization member</p>
2275
2539
  */
2276
2540
  accountId: string | undefined;
2277
2541
  /**
2542
+ * @public
2278
2543
  * <p>The state of Amazon Inspector deep inspection in the member account.</p>
2279
2544
  */
2280
2545
  status?: Ec2DeepInspectionStatus | string;
2281
2546
  /**
2547
+ * @public
2282
2548
  * <p>The error message explaining why the account failed to activate Amazon Inspector deep inspection.</p>
2283
2549
  */
2284
2550
  errorMessage?: string;
@@ -2289,14 +2555,17 @@ export interface MemberAccountEc2DeepInspectionStatusState {
2289
2555
  */
2290
2556
  export interface FailedMemberAccountEc2DeepInspectionStatusState {
2291
2557
  /**
2558
+ * @public
2292
2559
  * <p>The unique identifier for the Amazon Web Services account of the organization member that failed to activate Amazon Inspector deep inspection.</p>
2293
2560
  */
2294
2561
  accountId: string | undefined;
2295
2562
  /**
2563
+ * @public
2296
2564
  * <p>The status of EC2 scanning in the account that failed to activate Amazon Inspector deep inspection.</p>
2297
2565
  */
2298
2566
  ec2ScanStatus?: Status | string;
2299
2567
  /**
2568
+ * @public
2300
2569
  * <p>The error message explaining why the account failed to activate Amazon Inspector deep inspection.</p>
2301
2570
  */
2302
2571
  errorMessage?: string;
@@ -2306,12 +2575,14 @@ export interface FailedMemberAccountEc2DeepInspectionStatusState {
2306
2575
  */
2307
2576
  export interface BatchGetMemberEc2DeepInspectionStatusResponse {
2308
2577
  /**
2578
+ * @public
2309
2579
  * <p>An array of objects that provide details on the activation status of Amazon Inspector deep inspection for each of the requested accounts.
2310
2580
  *
2311
2581
  * </p>
2312
2582
  */
2313
2583
  accountIds?: MemberAccountEc2DeepInspectionStatusState[];
2314
2584
  /**
2585
+ * @public
2315
2586
  * <p>An array of objects that provide details on any accounts that failed to activate Amazon Inspector deep inspection and why.
2316
2587
  *
2317
2588
  * </p>
@@ -2324,10 +2595,12 @@ export interface BatchGetMemberEc2DeepInspectionStatusResponse {
2324
2595
  */
2325
2596
  export interface MemberAccountEc2DeepInspectionStatus {
2326
2597
  /**
2598
+ * @public
2327
2599
  * <p>The unique identifier for the Amazon Web Services account of the organization member.</p>
2328
2600
  */
2329
2601
  accountId: string | undefined;
2330
2602
  /**
2603
+ * @public
2331
2604
  * <p>Whether Amazon Inspector deep inspection is active in the account. If <code>TRUE</code> Amazon Inspector deep inspection is active, if <code>FALSE</code> it is not active.</p>
2332
2605
  */
2333
2606
  activateDeepInspection: boolean | undefined;
@@ -2337,6 +2610,7 @@ export interface MemberAccountEc2DeepInspectionStatus {
2337
2610
  */
2338
2611
  export interface BatchUpdateMemberEc2DeepInspectionStatusRequest {
2339
2612
  /**
2613
+ * @public
2340
2614
  * <p>The unique identifiers for the Amazon Web Services accounts to change Amazon Inspector deep inspection status for.</p>
2341
2615
  */
2342
2616
  accountIds: MemberAccountEc2DeepInspectionStatus[] | undefined;
@@ -2346,11 +2620,13 @@ export interface BatchUpdateMemberEc2DeepInspectionStatusRequest {
2346
2620
  */
2347
2621
  export interface BatchUpdateMemberEc2DeepInspectionStatusResponse {
2348
2622
  /**
2623
+ * @public
2349
2624
  * <p>An array of objects that provide details for each of the accounts that Amazon Inspector deep inspection status was successfully changed for.
2350
2625
  * </p>
2351
2626
  */
2352
2627
  accountIds?: MemberAccountEc2DeepInspectionStatusState[];
2353
2628
  /**
2629
+ * @public
2354
2630
  * <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.
2355
2631
  * </p>
2356
2632
  */
@@ -2361,6 +2637,7 @@ export interface BatchUpdateMemberEc2DeepInspectionStatusResponse {
2361
2637
  */
2362
2638
  export interface CancelFindingsReportRequest {
2363
2639
  /**
2640
+ * @public
2364
2641
  * <p>The ID of the report to be canceled.</p>
2365
2642
  */
2366
2643
  reportId: string | undefined;
@@ -2370,6 +2647,7 @@ export interface CancelFindingsReportRequest {
2370
2647
  */
2371
2648
  export interface CancelFindingsReportResponse {
2372
2649
  /**
2650
+ * @public
2373
2651
  * <p>The ID of the canceled report.</p>
2374
2652
  */
2375
2653
  reportId: string | undefined;
@@ -2379,6 +2657,7 @@ export interface CancelFindingsReportResponse {
2379
2657
  */
2380
2658
  export interface CancelSbomExportRequest {
2381
2659
  /**
2660
+ * @public
2382
2661
  * <p>The report ID of the SBOM export to cancel.</p>
2383
2662
  */
2384
2663
  reportId: string | undefined;
@@ -2388,6 +2667,7 @@ export interface CancelSbomExportRequest {
2388
2667
  */
2389
2668
  export interface CancelSbomExportResponse {
2390
2669
  /**
2670
+ * @public
2391
2671
  * <p>The report ID of the canceled SBOM export.</p>
2392
2672
  */
2393
2673
  reportId?: string;
@@ -2398,18 +2678,22 @@ export interface CancelSbomExportResponse {
2398
2678
  */
2399
2679
  export interface CodeFilePath {
2400
2680
  /**
2681
+ * @public
2401
2682
  * <p>The name of the file the code vulnerability was found in.</p>
2402
2683
  */
2403
2684
  fileName: string | undefined;
2404
2685
  /**
2686
+ * @public
2405
2687
  * <p>The file path to the code that a vulnerability was found in.</p>
2406
2688
  */
2407
2689
  filePath: string | undefined;
2408
2690
  /**
2691
+ * @public
2409
2692
  * <p>The line number of the first line of code that a vulnerability was found in.</p>
2410
2693
  */
2411
2694
  startLine: number | undefined;
2412
2695
  /**
2696
+ * @public
2413
2697
  * <p>The line number of the last line of code that a vulnerability was found in.</p>
2414
2698
  */
2415
2699
  endLine: number | undefined;
@@ -2420,35 +2704,43 @@ export interface CodeFilePath {
2420
2704
  */
2421
2705
  export interface CodeVulnerabilityDetails {
2422
2706
  /**
2707
+ * @public
2423
2708
  * <p>Contains information on where the code vulnerability is located in your code.</p>
2424
2709
  */
2425
2710
  filePath: CodeFilePath | undefined;
2426
2711
  /**
2712
+ * @public
2427
2713
  * <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>
2428
2714
  */
2429
2715
  detectorTags?: string[];
2430
2716
  /**
2717
+ * @public
2431
2718
  * <p>A URL containing supporting documentation about the code vulnerability detected.</p>
2432
2719
  */
2433
2720
  referenceUrls?: string[];
2434
2721
  /**
2722
+ * @public
2435
2723
  * <p>The identifier for a rule that was used to detect the code vulnerability.</p>
2436
2724
  */
2437
2725
  ruleId?: string;
2438
2726
  /**
2727
+ * @public
2439
2728
  * <p>The Amazon Resource Name (ARN) of the Lambda layer that the code vulnerability was detected in.</p>
2440
2729
  */
2441
2730
  sourceLambdaLayerArn?: string;
2442
2731
  /**
2732
+ * @public
2443
2733
  * <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
2444
2734
  * Detector Library</a>.</p>
2445
2735
  */
2446
2736
  detectorId: string | undefined;
2447
2737
  /**
2738
+ * @public
2448
2739
  * <p>The name of the detector used to identify the code vulnerability. For more information on detectors see <a href="https://docs.aws.amazon.com/codeguru/detector-library">CodeGuru Detector Library</a>.</p>
2449
2740
  */
2450
2741
  detectorName: string | undefined;
2451
2742
  /**
2743
+ * @public
2452
2744
  * <p>The Common Weakness Enumeration (CWE) item associated with the detected vulnerability.</p>
2453
2745
  */
2454
2746
  cwes: string[] | undefined;
@@ -2461,10 +2753,12 @@ export declare class ConflictException extends __BaseException {
2461
2753
  readonly name: "ConflictException";
2462
2754
  readonly $fault: "client";
2463
2755
  /**
2756
+ * @public
2464
2757
  * <p>The ID of the conflicting resource.</p>
2465
2758
  */
2466
2759
  resourceId: string | undefined;
2467
2760
  /**
2761
+ * @public
2468
2762
  * <p>The type of the conflicting resource.</p>
2469
2763
  */
2470
2764
  resourceType: string | undefined;
@@ -2494,10 +2788,12 @@ export type GroupKey = (typeof GroupKey)[keyof typeof GroupKey];
2494
2788
  */
2495
2789
  export interface Counts {
2496
2790
  /**
2791
+ * @public
2497
2792
  * <p>The number of resources.</p>
2498
2793
  */
2499
2794
  count?: number;
2500
2795
  /**
2796
+ * @public
2501
2797
  * <p>The key associated with this group</p>
2502
2798
  */
2503
2799
  groupKey?: GroupKey | string;
@@ -2508,10 +2804,12 @@ export interface Counts {
2508
2804
  */
2509
2805
  export interface CoverageDateFilter {
2510
2806
  /**
2807
+ * @public
2511
2808
  * <p>A timestamp representing the start of the time period to filter results by.</p>
2512
2809
  */
2513
2810
  startInclusive?: Date;
2514
2811
  /**
2812
+ * @public
2515
2813
  * <p>A timestamp representing the end of the time period to filter results by.</p>
2516
2814
  */
2517
2815
  endInclusive?: Date;
@@ -2534,10 +2832,12 @@ export type CoverageStringComparison = (typeof CoverageStringComparison)[keyof t
2534
2832
  */
2535
2833
  export interface CoverageStringFilter {
2536
2834
  /**
2835
+ * @public
2537
2836
  * <p>The operator to compare strings on.</p>
2538
2837
  */
2539
2838
  comparison: CoverageStringComparison | string | undefined;
2540
2839
  /**
2840
+ * @public
2541
2841
  * <p>The value to compare strings on.</p>
2542
2842
  */
2543
2843
  value: string | undefined;
@@ -2559,14 +2859,17 @@ export type CoverageMapComparison = (typeof CoverageMapComparison)[keyof typeof
2559
2859
  */
2560
2860
  export interface CoverageMapFilter {
2561
2861
  /**
2862
+ * @public
2562
2863
  * <p>The operator to compare coverage on.</p>
2563
2864
  */
2564
2865
  comparison: CoverageMapComparison | string | undefined;
2565
2866
  /**
2867
+ * @public
2566
2868
  * <p>The tag key associated with the coverage map filter.</p>
2567
2869
  */
2568
2870
  key: string | undefined;
2569
2871
  /**
2872
+ * @public
2570
2873
  * <p>The tag value associated with the coverage map filter.</p>
2571
2874
  */
2572
2875
  value?: string;
@@ -2577,54 +2880,67 @@ export interface CoverageMapFilter {
2577
2880
  */
2578
2881
  export interface CoverageFilterCriteria {
2579
2882
  /**
2883
+ * @public
2580
2884
  * <p>The scan status code to filter on.</p>
2581
2885
  */
2582
2886
  scanStatusCode?: CoverageStringFilter[];
2583
2887
  /**
2888
+ * @public
2584
2889
  * <p>The scan status reason to filter on.</p>
2585
2890
  */
2586
2891
  scanStatusReason?: CoverageStringFilter[];
2587
2892
  /**
2893
+ * @public
2588
2894
  * <p>An array of Amazon Web Services account IDs to return coverage statistics for.</p>
2589
2895
  */
2590
2896
  accountId?: CoverageStringFilter[];
2591
2897
  /**
2898
+ * @public
2592
2899
  * <p>An array of Amazon Web Services resource IDs to return coverage statistics for.</p>
2593
2900
  */
2594
2901
  resourceId?: CoverageStringFilter[];
2595
2902
  /**
2903
+ * @public
2596
2904
  * <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> or <code>AWS_ECR_REPOSITORY</code>.</p>
2597
2905
  */
2598
2906
  resourceType?: CoverageStringFilter[];
2599
2907
  /**
2908
+ * @public
2600
2909
  * <p>An array of Amazon Inspector scan types to return coverage statistics for.</p>
2601
2910
  */
2602
2911
  scanType?: CoverageStringFilter[];
2603
2912
  /**
2913
+ * @public
2604
2914
  * <p>The Amazon ECR repository name to filter on.</p>
2605
2915
  */
2606
2916
  ecrRepositoryName?: CoverageStringFilter[];
2607
2917
  /**
2918
+ * @public
2608
2919
  * <p>The Amazon ECR image tags to filter on.</p>
2609
2920
  */
2610
2921
  ecrImageTags?: CoverageStringFilter[];
2611
2922
  /**
2923
+ * @public
2612
2924
  * <p>The Amazon EC2 instance tags to filter on.</p>
2613
2925
  */
2614
2926
  ec2InstanceTags?: CoverageMapFilter[];
2615
2927
  /**
2928
+ * @public
2616
2929
  * <p>Returns coverage statistics for AWS Lambda functions filtered by function names.</p>
2617
2930
  */
2618
2931
  lambdaFunctionName?: CoverageStringFilter[];
2619
2932
  /**
2933
+ * @public
2620
2934
  * <p>Returns coverage statistics for AWS Lambda functions filtered by tag.</p>
2621
2935
  */
2622
2936
  lambdaFunctionTags?: CoverageMapFilter[];
2623
2937
  /**
2938
+ * @public
2624
2939
  * <p>Returns coverage statistics for AWS Lambda functions filtered by runtime.</p>
2625
2940
  */
2626
2941
  lambdaFunctionRuntime?: CoverageStringFilter[];
2627
2942
  /**
2943
+ * @public
2628
2944
  * <p>Filters Amazon Web Services resources based on whether Amazon Inspector has checked them for vulnerabilities within the specified time range.</p>
2629
2945
  */
2630
2946
  lastScannedAt?: CoverageDateFilter[];
@@ -2662,14 +2978,17 @@ export type Ec2Platform = (typeof Ec2Platform)[keyof typeof Ec2Platform];
2662
2978
  */
2663
2979
  export interface Ec2Metadata {
2664
2980
  /**
2981
+ * @public
2665
2982
  * <p>The tags attached to the instance.</p>
2666
2983
  */
2667
2984
  tags?: Record<string, string>;
2668
2985
  /**
2986
+ * @public
2669
2987
  * <p>The ID of the Amazon Machine Image (AMI) used to launch the instance.</p>
2670
2988
  */
2671
2989
  amiId?: string;
2672
2990
  /**
2991
+ * @public
2673
2992
  * <p>The platform of the instance.</p>
2674
2993
  */
2675
2994
  platform?: Ec2Platform | string;
@@ -2680,6 +2999,7 @@ export interface Ec2Metadata {
2680
2999
  */
2681
3000
  export interface EcrContainerImageMetadata {
2682
3001
  /**
3002
+ * @public
2683
3003
  * <p>Tags associated with the Amazon ECR image metadata.</p>
2684
3004
  */
2685
3005
  tags?: string[];
@@ -2703,10 +3023,12 @@ export type EcrScanFrequency = (typeof EcrScanFrequency)[keyof typeof EcrScanFre
2703
3023
  */
2704
3024
  export interface EcrRepositoryMetadata {
2705
3025
  /**
3026
+ * @public
2706
3027
  * <p>The name of the Amazon ECR repository.</p>
2707
3028
  */
2708
3029
  name?: string;
2709
3030
  /**
3031
+ * @public
2710
3032
  * <p>The frequency of scans.</p>
2711
3033
  */
2712
3034
  scanFrequency?: EcrScanFrequency | string;
@@ -2717,18 +3039,22 @@ export interface EcrRepositoryMetadata {
2717
3039
  */
2718
3040
  export interface LambdaFunctionMetadata {
2719
3041
  /**
3042
+ * @public
2720
3043
  * <p>The resource tags on an AWS Lambda function.</p>
2721
3044
  */
2722
3045
  functionTags?: Record<string, string>;
2723
3046
  /**
3047
+ * @public
2724
3048
  * <p>The layers for an AWS Lambda function. A Lambda function can have up to five layers.</p>
2725
3049
  */
2726
3050
  layers?: string[];
2727
3051
  /**
3052
+ * @public
2728
3053
  * <p>The name of a function.</p>
2729
3054
  */
2730
3055
  functionName?: string;
2731
3056
  /**
3057
+ * @public
2732
3058
  * <p>An AWS Lambda function's runtime.</p>
2733
3059
  */
2734
3060
  runtime?: Runtime | string;
@@ -2739,18 +3065,22 @@ export interface LambdaFunctionMetadata {
2739
3065
  */
2740
3066
  export interface ResourceScanMetadata {
2741
3067
  /**
3068
+ * @public
2742
3069
  * <p>An object that contains details about the repository an Amazon ECR image resides in.</p>
2743
3070
  */
2744
3071
  ecrRepository?: EcrRepositoryMetadata;
2745
3072
  /**
3073
+ * @public
2746
3074
  * <p>An object that contains details about the container metadata for an Amazon ECR image.</p>
2747
3075
  */
2748
3076
  ecrImage?: EcrContainerImageMetadata;
2749
3077
  /**
3078
+ * @public
2750
3079
  * <p>An object that contains metadata details for an Amazon EC2 instance.</p>
2751
3080
  */
2752
3081
  ec2?: Ec2Metadata;
2753
3082
  /**
3083
+ * @public
2754
3084
  * <p>An object that contains metadata details for an AWS Lambda function.</p>
2755
3085
  */
2756
3086
  lambdaFunction?: LambdaFunctionMetadata;
@@ -2807,10 +3137,12 @@ export type ScanStatusCode = (typeof ScanStatusCode)[keyof typeof ScanStatusCode
2807
3137
  */
2808
3138
  export interface ScanStatus {
2809
3139
  /**
3140
+ * @public
2810
3141
  * <p>The status code of the scan.</p>
2811
3142
  */
2812
3143
  statusCode: ScanStatusCode | string | undefined;
2813
3144
  /**
3145
+ * @public
2814
3146
  * <p>The reason for the scan.</p>
2815
3147
  */
2816
3148
  reason: ScanStatusReason | string | undefined;
@@ -2834,30 +3166,37 @@ export type ScanType = (typeof ScanType)[keyof typeof ScanType];
2834
3166
  */
2835
3167
  export interface CoveredResource {
2836
3168
  /**
3169
+ * @public
2837
3170
  * <p>The type of the covered resource.</p>
2838
3171
  */
2839
3172
  resourceType: CoverageResourceType | string | undefined;
2840
3173
  /**
3174
+ * @public
2841
3175
  * <p>The ID of the covered resource.</p>
2842
3176
  */
2843
3177
  resourceId: string | undefined;
2844
3178
  /**
3179
+ * @public
2845
3180
  * <p>The Amazon Web Services account ID of the covered resource.</p>
2846
3181
  */
2847
3182
  accountId: string | undefined;
2848
3183
  /**
3184
+ * @public
2849
3185
  * <p>The Amazon Inspector scan type covering the resource.</p>
2850
3186
  */
2851
3187
  scanType: ScanType | string | undefined;
2852
3188
  /**
3189
+ * @public
2853
3190
  * <p>The status of the scan covering the resource.</p>
2854
3191
  */
2855
3192
  scanStatus?: ScanStatus;
2856
3193
  /**
3194
+ * @public
2857
3195
  * <p>An object that contains details about the metadata.</p>
2858
3196
  */
2859
3197
  resourceMetadata?: ResourceScanMetadata;
2860
3198
  /**
3199
+ * @public
2861
3200
  * <p>The date and time the resource was last checked for vulnerabilities.</p>
2862
3201
  */
2863
3202
  lastScannedAt?: Date;
@@ -2880,10 +3219,12 @@ export type FilterAction = (typeof FilterAction)[keyof typeof FilterAction];
2880
3219
  */
2881
3220
  export interface DateFilter {
2882
3221
  /**
3222
+ * @public
2883
3223
  * <p>A timestamp representing the start of the time period filtered on.</p>
2884
3224
  */
2885
3225
  startInclusive?: Date;
2886
3226
  /**
3227
+ * @public
2887
3228
  * <p>A timestamp representing the end of the time period filtered on.</p>
2888
3229
  */
2889
3230
  endInclusive?: Date;
@@ -2894,10 +3235,12 @@ export interface DateFilter {
2894
3235
  */
2895
3236
  export interface NumberFilter {
2896
3237
  /**
3238
+ * @public
2897
3239
  * <p>The highest number to be included in the filter.</p>
2898
3240
  */
2899
3241
  upperInclusive?: number;
2900
3242
  /**
3243
+ * @public
2901
3244
  * <p>The lowest number to be included in the filter.</p>
2902
3245
  */
2903
3246
  lowerInclusive?: number;
@@ -2908,10 +3251,12 @@ export interface NumberFilter {
2908
3251
  */
2909
3252
  export interface PortRangeFilter {
2910
3253
  /**
3254
+ * @public
2911
3255
  * <p>The port number the port range begins at.</p>
2912
3256
  */
2913
3257
  beginInclusive?: number;
2914
3258
  /**
3259
+ * @public
2915
3260
  * <p>The port number the port range ends at.</p>
2916
3261
  */
2917
3262
  endInclusive?: number;
@@ -2922,30 +3267,37 @@ export interface PortRangeFilter {
2922
3267
  */
2923
3268
  export interface PackageFilter {
2924
3269
  /**
3270
+ * @public
2925
3271
  * <p>An object that contains details on the name of the package to filter on.</p>
2926
3272
  */
2927
3273
  name?: StringFilter;
2928
3274
  /**
3275
+ * @public
2929
3276
  * <p>The package version to filter on.</p>
2930
3277
  */
2931
3278
  version?: StringFilter;
2932
3279
  /**
3280
+ * @public
2933
3281
  * <p>An object that contains details on the package epoch to filter on.</p>
2934
3282
  */
2935
3283
  epoch?: NumberFilter;
2936
3284
  /**
3285
+ * @public
2937
3286
  * <p>An object that contains details on the package release to filter on.</p>
2938
3287
  */
2939
3288
  release?: StringFilter;
2940
3289
  /**
3290
+ * @public
2941
3291
  * <p>An object that contains details on the package architecture type to filter on.</p>
2942
3292
  */
2943
3293
  architecture?: StringFilter;
2944
3294
  /**
3295
+ * @public
2945
3296
  * <p>An object that contains details on the source layer hash to filter on.</p>
2946
3297
  */
2947
3298
  sourceLayerHash?: StringFilter;
2948
3299
  /**
3300
+ * @public
2949
3301
  * <p>An object that describes the details of a string filter.</p>
2950
3302
  */
2951
3303
  sourceLambdaLayerArn?: StringFilter;
@@ -2956,172 +3308,214 @@ export interface PackageFilter {
2956
3308
  */
2957
3309
  export interface FilterCriteria {
2958
3310
  /**
3311
+ * @public
2959
3312
  * <p>Details on the finding ARNs used to filter findings.</p>
2960
3313
  */
2961
3314
  findingArn?: StringFilter[];
2962
3315
  /**
3316
+ * @public
2963
3317
  * <p>Details of the Amazon Web Services account IDs used to filter findings.</p>
2964
3318
  */
2965
3319
  awsAccountId?: StringFilter[];
2966
3320
  /**
3321
+ * @public
2967
3322
  * <p>Details on the finding types used to filter findings.</p>
2968
3323
  */
2969
3324
  findingType?: StringFilter[];
2970
3325
  /**
3326
+ * @public
2971
3327
  * <p>Details on the severity used to filter findings.</p>
2972
3328
  */
2973
3329
  severity?: StringFilter[];
2974
3330
  /**
3331
+ * @public
2975
3332
  * <p>Details on the date and time a finding was first seen used to filter findings.</p>
2976
3333
  */
2977
3334
  firstObservedAt?: DateFilter[];
2978
3335
  /**
3336
+ * @public
2979
3337
  * <p>Details on the date and time a finding was last seen used to filter findings.</p>
2980
3338
  */
2981
3339
  lastObservedAt?: DateFilter[];
2982
3340
  /**
3341
+ * @public
2983
3342
  * <p>Details on the date and time a finding was last updated at used to filter findings.</p>
2984
3343
  */
2985
3344
  updatedAt?: DateFilter[];
2986
3345
  /**
3346
+ * @public
2987
3347
  * <p>Details on the finding status types used to filter findings.</p>
2988
3348
  */
2989
3349
  findingStatus?: StringFilter[];
2990
3350
  /**
3351
+ * @public
2991
3352
  * <p>Details on the finding title used to filter findings.</p>
2992
3353
  */
2993
3354
  title?: StringFilter[];
2994
3355
  /**
3356
+ * @public
2995
3357
  * <p>The Amazon Inspector score to filter on.</p>
2996
3358
  */
2997
3359
  inspectorScore?: NumberFilter[];
2998
3360
  /**
3361
+ * @public
2999
3362
  * <p>Details on the resource types used to filter findings.</p>
3000
3363
  */
3001
3364
  resourceType?: StringFilter[];
3002
3365
  /**
3366
+ * @public
3003
3367
  * <p>Details on the resource IDs used to filter findings.</p>
3004
3368
  */
3005
3369
  resourceId?: StringFilter[];
3006
3370
  /**
3371
+ * @public
3007
3372
  * <p>Details on the resource tags used to filter findings.</p>
3008
3373
  */
3009
3374
  resourceTags?: MapFilter[];
3010
3375
  /**
3376
+ * @public
3011
3377
  * <p>Details of the Amazon EC2 instance image IDs used to filter findings.</p>
3012
3378
  */
3013
3379
  ec2InstanceImageId?: StringFilter[];
3014
3380
  /**
3381
+ * @public
3015
3382
  * <p>Details of the Amazon EC2 instance VPC IDs used to filter findings.</p>
3016
3383
  */
3017
3384
  ec2InstanceVpcId?: StringFilter[];
3018
3385
  /**
3386
+ * @public
3019
3387
  * <p>Details of the Amazon EC2 instance subnet IDs used to filter findings.</p>
3020
3388
  */
3021
3389
  ec2InstanceSubnetId?: StringFilter[];
3022
3390
  /**
3391
+ * @public
3023
3392
  * <p>Details on the Amazon ECR image push date and time used to filter findings.</p>
3024
3393
  */
3025
3394
  ecrImagePushedAt?: DateFilter[];
3026
3395
  /**
3396
+ * @public
3027
3397
  * <p>Details of the Amazon ECR image architecture types used to filter findings.</p>
3028
3398
  */
3029
3399
  ecrImageArchitecture?: StringFilter[];
3030
3400
  /**
3401
+ * @public
3031
3402
  * <p>Details on the Amazon ECR registry used to filter findings.</p>
3032
3403
  */
3033
3404
  ecrImageRegistry?: StringFilter[];
3034
3405
  /**
3406
+ * @public
3035
3407
  * <p>Details on the name of the Amazon ECR repository used to filter findings.</p>
3036
3408
  */
3037
3409
  ecrImageRepositoryName?: StringFilter[];
3038
3410
  /**
3411
+ * @public
3039
3412
  * <p>The tags attached to the Amazon ECR container image.</p>
3040
3413
  */
3041
3414
  ecrImageTags?: StringFilter[];
3042
3415
  /**
3416
+ * @public
3043
3417
  * <p>Details of the Amazon ECR image hashes used to filter findings.</p>
3044
3418
  */
3045
3419
  ecrImageHash?: StringFilter[];
3046
3420
  /**
3421
+ * @public
3047
3422
  * <p>Details on the port ranges used to filter findings.</p>
3048
3423
  */
3049
3424
  portRange?: PortRangeFilter[];
3050
3425
  /**
3426
+ * @public
3051
3427
  * <p>Details on network protocol used to filter findings.</p>
3052
3428
  */
3053
3429
  networkProtocol?: StringFilter[];
3054
3430
  /**
3431
+ * @public
3055
3432
  * <p>Details of the component IDs used to filter findings.</p>
3056
3433
  */
3057
3434
  componentId?: StringFilter[];
3058
3435
  /**
3436
+ * @public
3059
3437
  * <p>Details of the component types used to filter findings.</p>
3060
3438
  */
3061
3439
  componentType?: StringFilter[];
3062
3440
  /**
3441
+ * @public
3063
3442
  * <p>Details on the vulnerability ID used to filter findings.</p>
3064
3443
  */
3065
3444
  vulnerabilityId?: StringFilter[];
3066
3445
  /**
3446
+ * @public
3067
3447
  * <p>Details on the vulnerability type used to filter findings.</p>
3068
3448
  */
3069
3449
  vulnerabilitySource?: StringFilter[];
3070
3450
  /**
3451
+ * @public
3071
3452
  * <p>Details on the vendor severity used to filter findings.</p>
3072
3453
  */
3073
3454
  vendorSeverity?: StringFilter[];
3074
3455
  /**
3456
+ * @public
3075
3457
  * <p>Details on the vulnerable packages used to filter findings.</p>
3076
3458
  */
3077
3459
  vulnerablePackages?: PackageFilter[];
3078
3460
  /**
3461
+ * @public
3079
3462
  * <p>Details on the related vulnerabilities used to filter findings.</p>
3080
3463
  */
3081
3464
  relatedVulnerabilities?: StringFilter[];
3082
3465
  /**
3466
+ * @public
3083
3467
  * <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>
3084
3468
  */
3085
3469
  fixAvailable?: StringFilter[];
3086
3470
  /**
3471
+ * @public
3087
3472
  * <p>Filters the list of AWS Lambda functions by the name of the function.</p>
3088
3473
  */
3089
3474
  lambdaFunctionName?: StringFilter[];
3090
3475
  /**
3476
+ * @public
3091
3477
  * <p>Filters the list of AWS Lambda functions by the function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">
3092
3478
  * layers</a>. A Lambda function can have up to five layers.</p>
3093
3479
  */
3094
3480
  lambdaFunctionLayers?: StringFilter[];
3095
3481
  /**
3482
+ * @public
3096
3483
  * <p>Filters the list of AWS Lambda functions by the runtime environment for the Lambda function.</p>
3097
3484
  */
3098
3485
  lambdaFunctionRuntime?: StringFilter[];
3099
3486
  /**
3487
+ * @public
3100
3488
  * <p>Filters the list of AWS 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>
3101
3489
  * </p>
3102
3490
  */
3103
3491
  lambdaFunctionLastModifiedAt?: DateFilter[];
3104
3492
  /**
3493
+ * @public
3105
3494
  * <p>Filters the list of AWS Lambda functions by execution role.</p>
3106
3495
  */
3107
3496
  lambdaFunctionExecutionRoleArn?: StringFilter[];
3108
3497
  /**
3498
+ * @public
3109
3499
  * <p>Filters the list of AWS Lambda findings by the availability of exploits.</p>
3110
3500
  */
3111
3501
  exploitAvailable?: StringFilter[];
3112
3502
  /**
3503
+ * @public
3113
3504
  * <p>The name of the detector used to identify a code vulnerability in a Lambda function used to filter findings.</p>
3114
3505
  */
3115
3506
  codeVulnerabilityDetectorName?: StringFilter[];
3116
3507
  /**
3508
+ * @public
3117
3509
  * <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>
3118
3510
  */
3119
3511
  codeVulnerabilityDetectorTags?: StringFilter[];
3120
3512
  /**
3513
+ * @public
3121
3514
  * <p>The file path to the file in a Lambda function that contains a code vulnerability used to filter findings.</p>
3122
3515
  */
3123
3516
  codeVulnerabilityFilePath?: StringFilter[];
3124
3517
  /**
3518
+ * @public
3125
3519
  * <p>The EPSS score used to filter findings.</p>
3126
3520
  */
3127
3521
  epssScore?: NumberFilter[];
@@ -3131,28 +3525,34 @@ export interface FilterCriteria {
3131
3525
  */
3132
3526
  export interface CreateFilterRequest {
3133
3527
  /**
3528
+ * @public
3134
3529
  * <p>Defines the action that is to be applied to the findings that match the filter.</p>
3135
3530
  */
3136
3531
  action: FilterAction | string | undefined;
3137
3532
  /**
3533
+ * @public
3138
3534
  * <p>A description of the filter.</p>
3139
3535
  */
3140
3536
  description?: string;
3141
3537
  /**
3538
+ * @public
3142
3539
  * <p>Defines the criteria to be used in the filter for querying findings.</p>
3143
3540
  */
3144
3541
  filterCriteria: FilterCriteria | undefined;
3145
3542
  /**
3543
+ * @public
3146
3544
  * <p>The name of the filter. Minimum length of 3. Maximum length of 64. Valid characters
3147
3545
  * include alphanumeric characters, dot (.), underscore (_), and dash (-). Spaces are not
3148
3546
  * allowed.</p>
3149
3547
  */
3150
3548
  name: string | undefined;
3151
3549
  /**
3550
+ * @public
3152
3551
  * <p>A list of tags for the filter.</p>
3153
3552
  */
3154
3553
  tags?: Record<string, string>;
3155
3554
  /**
3555
+ * @public
3156
3556
  * <p>The reason for creating the filter.</p>
3157
3557
  */
3158
3558
  reason?: string;
@@ -3162,6 +3562,7 @@ export interface CreateFilterRequest {
3162
3562
  */
3163
3563
  export interface CreateFilterResponse {
3164
3564
  /**
3565
+ * @public
3165
3566
  * <p>The Amazon Resource Number (ARN) of the successfully created filter.</p>
3166
3567
  */
3167
3568
  arn: string | undefined;
@@ -3175,6 +3576,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
3175
3576
  readonly name: "ServiceQuotaExceededException";
3176
3577
  readonly $fault: "client";
3177
3578
  /**
3579
+ * @public
3178
3580
  * <p>The ID of the resource that exceeds a service quota.</p>
3179
3581
  */
3180
3582
  resourceId: string | undefined;
@@ -3201,14 +3603,17 @@ export type ReportFormat = (typeof ReportFormat)[keyof typeof ReportFormat];
3201
3603
  */
3202
3604
  export interface Destination {
3203
3605
  /**
3606
+ * @public
3204
3607
  * <p>The name of the Amazon S3 bucket to export findings to.</p>
3205
3608
  */
3206
3609
  bucketName: string | undefined;
3207
3610
  /**
3611
+ * @public
3208
3612
  * <p>The prefix that the findings will be written under.</p>
3209
3613
  */
3210
3614
  keyPrefix?: string;
3211
3615
  /**
3616
+ * @public
3212
3617
  * <p>The ARN of the KMS key used to encrypt data when exporting findings.</p>
3213
3618
  */
3214
3619
  kmsKeyArn: string | undefined;
@@ -3218,14 +3623,17 @@ export interface Destination {
3218
3623
  */
3219
3624
  export interface CreateFindingsReportRequest {
3220
3625
  /**
3626
+ * @public
3221
3627
  * <p>The filter criteria to apply to the results of the finding report.</p>
3222
3628
  */
3223
3629
  filterCriteria?: FilterCriteria;
3224
3630
  /**
3631
+ * @public
3225
3632
  * <p>The format to generate the report in.</p>
3226
3633
  */
3227
3634
  reportFormat: ReportFormat | string | undefined;
3228
3635
  /**
3636
+ * @public
3229
3637
  * <p>The Amazon S3 export destination for the report.</p>
3230
3638
  */
3231
3639
  s3Destination: Destination | undefined;
@@ -3235,6 +3643,7 @@ export interface CreateFindingsReportRequest {
3235
3643
  */
3236
3644
  export interface CreateFindingsReportResponse {
3237
3645
  /**
3646
+ * @public
3238
3647
  * <p>The ID of the report.</p>
3239
3648
  */
3240
3649
  reportId?: string;
@@ -3269,10 +3678,12 @@ export type ResourceStringComparison = (typeof ResourceStringComparison)[keyof t
3269
3678
  */
3270
3679
  export interface ResourceStringFilter {
3271
3680
  /**
3681
+ * @public
3272
3682
  * <p>The filter's comparison.</p>
3273
3683
  */
3274
3684
  comparison: ResourceStringComparison | string | undefined;
3275
3685
  /**
3686
+ * @public
3276
3687
  * <p>The filter's value.</p>
3277
3688
  */
3278
3689
  value: string | undefined;
@@ -3294,14 +3705,17 @@ export type ResourceMapComparison = (typeof ResourceMapComparison)[keyof typeof
3294
3705
  */
3295
3706
  export interface ResourceMapFilter {
3296
3707
  /**
3708
+ * @public
3297
3709
  * <p>The filter's comparison.</p>
3298
3710
  */
3299
3711
  comparison: ResourceMapComparison | string | undefined;
3300
3712
  /**
3713
+ * @public
3301
3714
  * <p>The filter's key.</p>
3302
3715
  */
3303
3716
  key: string | undefined;
3304
3717
  /**
3718
+ * @public
3305
3719
  * <p>The filter's value.</p>
3306
3720
  */
3307
3721
  value?: string;
@@ -3312,34 +3726,42 @@ export interface ResourceMapFilter {
3312
3726
  */
3313
3727
  export interface ResourceFilterCriteria {
3314
3728
  /**
3729
+ * @public
3315
3730
  * <p>The account IDs used as resource filter criteria.</p>
3316
3731
  */
3317
3732
  accountId?: ResourceStringFilter[];
3318
3733
  /**
3734
+ * @public
3319
3735
  * <p>The resource IDs used as resource filter criteria.</p>
3320
3736
  */
3321
3737
  resourceId?: ResourceStringFilter[];
3322
3738
  /**
3739
+ * @public
3323
3740
  * <p>The resource types used as resource filter criteria.</p>
3324
3741
  */
3325
3742
  resourceType?: ResourceStringFilter[];
3326
3743
  /**
3744
+ * @public
3327
3745
  * <p>The ECR repository names used as resource filter criteria.</p>
3328
3746
  */
3329
3747
  ecrRepositoryName?: ResourceStringFilter[];
3330
3748
  /**
3749
+ * @public
3331
3750
  * <p>The AWS Lambda function name used as resource filter criteria.</p>
3332
3751
  */
3333
3752
  lambdaFunctionName?: ResourceStringFilter[];
3334
3753
  /**
3754
+ * @public
3335
3755
  * <p>The ECR image tags used as resource filter criteria.</p>
3336
3756
  */
3337
3757
  ecrImageTags?: ResourceStringFilter[];
3338
3758
  /**
3759
+ * @public
3339
3760
  * <p>The EC2 instance tags used as resource filter criteria.</p>
3340
3761
  */
3341
3762
  ec2InstanceTags?: ResourceMapFilter[];
3342
3763
  /**
3764
+ * @public
3343
3765
  * <p>The AWS Lambda function tags used as resource filter criteria.</p>
3344
3766
  */
3345
3767
  lambdaFunctionTags?: ResourceMapFilter[];
@@ -3349,14 +3771,17 @@ export interface ResourceFilterCriteria {
3349
3771
  */
3350
3772
  export interface CreateSbomExportRequest {
3351
3773
  /**
3774
+ * @public
3352
3775
  * <p>The resource filter criteria for the software bill of materials (SBOM) report.</p>
3353
3776
  */
3354
3777
  resourceFilterCriteria?: ResourceFilterCriteria;
3355
3778
  /**
3779
+ * @public
3356
3780
  * <p>The output format for the software bill of materials (SBOM) report.</p>
3357
3781
  */
3358
3782
  reportFormat: SbomReportFormat | string | undefined;
3359
3783
  /**
3784
+ * @public
3360
3785
  * <p>Contains details of the Amazon S3 bucket and KMS key used to export findings.</p>
3361
3786
  */
3362
3787
  s3Destination: Destination | undefined;
@@ -3366,6 +3791,7 @@ export interface CreateSbomExportRequest {
3366
3791
  */
3367
3792
  export interface CreateSbomExportResponse {
3368
3793
  /**
3794
+ * @public
3369
3795
  * <p>The report ID for the software bill of materials (SBOM) report.</p>
3370
3796
  */
3371
3797
  reportId?: string;
@@ -3387,10 +3813,12 @@ export type Currency = (typeof Currency)[keyof typeof Currency];
3387
3813
  */
3388
3814
  export interface Cvss2 {
3389
3815
  /**
3816
+ * @public
3390
3817
  * <p>The CVSS v2 base score for the vulnerability.</p>
3391
3818
  */
3392
3819
  baseScore?: number;
3393
3820
  /**
3821
+ * @public
3394
3822
  * <p>The scoring vector associated with the CVSS v2 score.</p>
3395
3823
  */
3396
3824
  scoringVector?: string;
@@ -3401,10 +3829,12 @@ export interface Cvss2 {
3401
3829
  */
3402
3830
  export interface Cvss3 {
3403
3831
  /**
3832
+ * @public
3404
3833
  * <p>The CVSS v3 base score for the vulnerability.</p>
3405
3834
  */
3406
3835
  baseScore?: number;
3407
3836
  /**
3837
+ * @public
3408
3838
  * <p>The scoring vector associated with the CVSS v3 score.</p>
3409
3839
  */
3410
3840
  scoringVector?: string;
@@ -3415,18 +3845,22 @@ export interface Cvss3 {
3415
3845
  */
3416
3846
  export interface CvssScore {
3417
3847
  /**
3848
+ * @public
3418
3849
  * <p>The base CVSS score used for the finding.</p>
3419
3850
  */
3420
3851
  baseScore: number | undefined;
3421
3852
  /**
3853
+ * @public
3422
3854
  * <p>The vector string of the CVSS score.</p>
3423
3855
  */
3424
3856
  scoringVector: string | undefined;
3425
3857
  /**
3858
+ * @public
3426
3859
  * <p>The version of CVSS used for the score.</p>
3427
3860
  */
3428
3861
  version: string | undefined;
3429
3862
  /**
3863
+ * @public
3430
3864
  * <p>The source of the CVSS score.</p>
3431
3865
  */
3432
3866
  source: string | undefined;
@@ -3437,10 +3871,12 @@ export interface CvssScore {
3437
3871
  */
3438
3872
  export interface CvssScoreAdjustment {
3439
3873
  /**
3874
+ * @public
3440
3875
  * <p>The metric used to adjust the CVSS score.</p>
3441
3876
  */
3442
3877
  metric: string | undefined;
3443
3878
  /**
3879
+ * @public
3444
3880
  * <p>The reason the CVSS score has been adjustment.</p>
3445
3881
  */
3446
3882
  reason: string | undefined;
@@ -3451,26 +3887,32 @@ export interface CvssScoreAdjustment {
3451
3887
  */
3452
3888
  export interface CvssScoreDetails {
3453
3889
  /**
3890
+ * @public
3454
3891
  * <p>The source for the CVSS score.</p>
3455
3892
  */
3456
3893
  scoreSource: string | undefined;
3457
3894
  /**
3895
+ * @public
3458
3896
  * <p>The source of the CVSS data.</p>
3459
3897
  */
3460
3898
  cvssSource?: string;
3461
3899
  /**
3900
+ * @public
3462
3901
  * <p>The CVSS version used in scoring.</p>
3463
3902
  */
3464
3903
  version: string | undefined;
3465
3904
  /**
3905
+ * @public
3466
3906
  * <p>The CVSS score.</p>
3467
3907
  */
3468
3908
  score: number | undefined;
3469
3909
  /**
3910
+ * @public
3470
3911
  * <p>The vector for the CVSS score.</p>
3471
3912
  */
3472
3913
  scoringVector: string | undefined;
3473
3914
  /**
3915
+ * @public
3474
3916
  * <p>An object that contains details about adjustment Amazon Inspector made to the CVSS score.</p>
3475
3917
  */
3476
3918
  adjustments?: CvssScoreAdjustment[];
@@ -3503,10 +3945,12 @@ export type RelationshipStatus = (typeof RelationshipStatus)[keyof typeof Relati
3503
3945
  */
3504
3946
  export interface DelegatedAdmin {
3505
3947
  /**
3948
+ * @public
3506
3949
  * <p>The Amazon Web Services account ID of the Amazon Inspector delegated administrator for your organization.</p>
3507
3950
  */
3508
3951
  accountId?: string;
3509
3952
  /**
3953
+ * @public
3510
3954
  * <p>The status of the Amazon Inspector delegated administrator.</p>
3511
3955
  */
3512
3956
  relationshipStatus?: RelationshipStatus | string;
@@ -3529,10 +3973,12 @@ export type DelegatedAdminStatus = (typeof DelegatedAdminStatus)[keyof typeof De
3529
3973
  */
3530
3974
  export interface DelegatedAdminAccount {
3531
3975
  /**
3976
+ * @public
3532
3977
  * <p>The Amazon Web Services account ID of the Amazon Inspector delegated administrator for your organization.</p>
3533
3978
  */
3534
3979
  accountId?: string;
3535
3980
  /**
3981
+ * @public
3536
3982
  * <p>The status of the Amazon Inspector delegated administrator.</p>
3537
3983
  */
3538
3984
  status?: DelegatedAdminStatus | string;
@@ -3542,6 +3988,7 @@ export interface DelegatedAdminAccount {
3542
3988
  */
3543
3989
  export interface DeleteFilterRequest {
3544
3990
  /**
3991
+ * @public
3545
3992
  * <p>The Amazon Resource Number (ARN) of the filter to be deleted.</p>
3546
3993
  */
3547
3994
  arn: string | undefined;
@@ -3551,6 +3998,7 @@ export interface DeleteFilterRequest {
3551
3998
  */
3552
3999
  export interface DeleteFilterResponse {
3553
4000
  /**
4001
+ * @public
3554
4002
  * <p>The Amazon Resource Number (ARN) of the filter that has been deleted.</p>
3555
4003
  */
3556
4004
  arn: string | undefined;
@@ -3565,10 +4013,12 @@ export interface DescribeOrganizationConfigurationRequest {
3565
4013
  */
3566
4014
  export interface DescribeOrganizationConfigurationResponse {
3567
4015
  /**
4016
+ * @public
3568
4017
  * <p>The scan types are automatically enabled for new members of your organization.</p>
3569
4018
  */
3570
4019
  autoEnable?: AutoEnable;
3571
4020
  /**
4021
+ * @public
3572
4022
  * <p>Represents whether your organization has reached the maximum Amazon Web Services account limit for Amazon Inspector.</p>
3573
4023
  */
3574
4024
  maxAccountLimitReached?: boolean;
@@ -3592,10 +4042,12 @@ export type ResourceScanType = (typeof ResourceScanType)[keyof typeof ResourceSc
3592
4042
  */
3593
4043
  export interface DisableRequest {
3594
4044
  /**
4045
+ * @public
3595
4046
  * <p>An array of account IDs you want to disable Amazon Inspector scans for.</p>
3596
4047
  */
3597
4048
  accountIds?: string[];
3598
4049
  /**
4050
+ * @public
3599
4051
  * <p>The resource scan types you want to disable.</p>
3600
4052
  */
3601
4053
  resourceTypes?: (ResourceScanType | string)[];
@@ -3605,11 +4057,13 @@ export interface DisableRequest {
3605
4057
  */
3606
4058
  export interface DisableResponse {
3607
4059
  /**
4060
+ * @public
3608
4061
  * <p>Information on the accounts that have had Amazon Inspector scans successfully disabled. Details are
3609
4062
  * provided for each account.</p>
3610
4063
  */
3611
4064
  accounts: Account[] | undefined;
3612
4065
  /**
4066
+ * @public
3613
4067
  * <p>Information on any accounts for which Amazon Inspector scans could not be disabled. Details are
3614
4068
  * provided for each account.</p>
3615
4069
  */
@@ -3620,6 +4074,7 @@ export interface DisableResponse {
3620
4074
  */
3621
4075
  export interface DisableDelegatedAdminAccountRequest {
3622
4076
  /**
4077
+ * @public
3623
4078
  * <p>The Amazon Web Services account ID of the current Amazon Inspector delegated administrator.</p>
3624
4079
  */
3625
4080
  delegatedAdminAccountId: string | undefined;
@@ -3629,6 +4084,7 @@ export interface DisableDelegatedAdminAccountRequest {
3629
4084
  */
3630
4085
  export interface DisableDelegatedAdminAccountResponse {
3631
4086
  /**
4087
+ * @public
3632
4088
  * <p>The Amazon Web Services account ID of the successfully disabled delegated administrator.</p>
3633
4089
  */
3634
4090
  delegatedAdminAccountId: string | undefined;
@@ -3638,6 +4094,7 @@ export interface DisableDelegatedAdminAccountResponse {
3638
4094
  */
3639
4095
  export interface DisassociateMemberRequest {
3640
4096
  /**
4097
+ * @public
3641
4098
  * <p>The Amazon Web Services account ID of the member account to disassociate.</p>
3642
4099
  */
3643
4100
  accountId: string | undefined;
@@ -3647,6 +4104,7 @@ export interface DisassociateMemberRequest {
3647
4104
  */
3648
4105
  export interface DisassociateMemberResponse {
3649
4106
  /**
4107
+ * @public
3650
4108
  * <p>The Amazon Web Services account ID of the successfully disassociated member.</p>
3651
4109
  */
3652
4110
  accountId: string | undefined;
@@ -3670,6 +4128,7 @@ export type EcrRescanDuration = (typeof EcrRescanDuration)[keyof typeof EcrResca
3670
4128
  */
3671
4129
  export interface EcrConfiguration {
3672
4130
  /**
4131
+ * @public
3673
4132
  * <p>The ECR automated re-scan duration defines how long an ECR image will be actively scanned by Amazon Inspector. When the number of days since an image was last pushed exceeds the automated re-scan duration the monitoring state of that image becomes <code>inactive</code> and all associated findings are scheduled for closure.</p>
3674
4133
  */
3675
4134
  rescanDuration: EcrRescanDuration | string | undefined;
@@ -3693,14 +4152,17 @@ export type EcrRescanDurationStatus = (typeof EcrRescanDurationStatus)[keyof typ
3693
4152
  */
3694
4153
  export interface EcrRescanDurationState {
3695
4154
  /**
4155
+ * @public
3696
4156
  * <p>The ECR automated re-scan duration defines how long an ECR image will be actively scanned by Amazon Inspector. When the number of days since an image was last pushed exceeds the automated re-scan duration the monitoring state of that image becomes <code>inactive</code> and all associated findings are scheduled for closure.</p>
3697
4157
  */
3698
4158
  rescanDuration?: EcrRescanDuration | string;
3699
4159
  /**
4160
+ * @public
3700
4161
  * <p>The status of changes to the ECR automated re-scan duration.</p>
3701
4162
  */
3702
4163
  status?: EcrRescanDurationStatus | string;
3703
4164
  /**
4165
+ * @public
3704
4166
  * <p>A timestamp representing when the last time the ECR scan duration setting was changed.</p>
3705
4167
  */
3706
4168
  updatedAt?: Date;
@@ -3711,6 +4173,7 @@ export interface EcrRescanDurationState {
3711
4173
  */
3712
4174
  export interface EcrConfigurationState {
3713
4175
  /**
4176
+ * @public
3714
4177
  * <p>An object that contains details about the state of the ECR automated re-scan setting.</p>
3715
4178
  */
3716
4179
  rescanDurationState?: EcrRescanDurationState;
@@ -3720,14 +4183,17 @@ export interface EcrConfigurationState {
3720
4183
  */
3721
4184
  export interface EnableRequest {
3722
4185
  /**
4186
+ * @public
3723
4187
  * <p>A list of account IDs you want to enable Amazon Inspector scans for.</p>
3724
4188
  */
3725
4189
  accountIds?: string[];
3726
4190
  /**
4191
+ * @public
3727
4192
  * <p>The resource scan types you want to enable.</p>
3728
4193
  */
3729
4194
  resourceTypes: (ResourceScanType | string)[] | undefined;
3730
4195
  /**
4196
+ * @public
3731
4197
  * <p>The idempotency token for the request.</p>
3732
4198
  */
3733
4199
  clientToken?: string;
@@ -3737,11 +4203,13 @@ export interface EnableRequest {
3737
4203
  */
3738
4204
  export interface EnableResponse {
3739
4205
  /**
4206
+ * @public
3740
4207
  * <p>Information on the accounts that have had Amazon Inspector scans successfully enabled. Details are
3741
4208
  * provided for each account.</p>
3742
4209
  */
3743
4210
  accounts: Account[] | undefined;
3744
4211
  /**
4212
+ * @public
3745
4213
  * <p>Information on any accounts for which Amazon Inspector scans could not be enabled. Details are
3746
4214
  * provided for each account.</p>
3747
4215
  */
@@ -3752,10 +4220,12 @@ export interface EnableResponse {
3752
4220
  */
3753
4221
  export interface EnableDelegatedAdminAccountRequest {
3754
4222
  /**
4223
+ * @public
3755
4224
  * <p>The Amazon Web Services account ID of the Amazon Inspector delegated administrator.</p>
3756
4225
  */
3757
4226
  delegatedAdminAccountId: string | undefined;
3758
4227
  /**
4228
+ * @public
3759
4229
  * <p>The idempotency token for the request.</p>
3760
4230
  */
3761
4231
  clientToken?: string;
@@ -3765,6 +4235,7 @@ export interface EnableDelegatedAdminAccountRequest {
3765
4235
  */
3766
4236
  export interface EnableDelegatedAdminAccountResponse {
3767
4237
  /**
4238
+ * @public
3768
4239
  * <p>The Amazon Web Services account ID of the successfully Amazon Inspector delegated administrator.</p>
3769
4240
  */
3770
4241
  delegatedAdminAccountId: string | undefined;
@@ -3775,6 +4246,7 @@ export interface EnableDelegatedAdminAccountResponse {
3775
4246
  */
3776
4247
  export interface Epss {
3777
4248
  /**
4249
+ * @public
3778
4250
  * <p>The Exploit Prediction Scoring System (EPSS) score.</p>
3779
4251
  */
3780
4252
  score?: number;
@@ -3785,6 +4257,7 @@ export interface Epss {
3785
4257
  */
3786
4258
  export interface EpssDetails {
3787
4259
  /**
4260
+ * @public
3788
4261
  * <p>The EPSS score.</p>
3789
4262
  */
3790
4263
  score?: number;
@@ -3795,6 +4268,7 @@ export interface EpssDetails {
3795
4268
  */
3796
4269
  export interface ExploitabilityDetails {
3797
4270
  /**
4271
+ * @public
3798
4272
  * <p>The date and time of the last exploit associated with a finding discovered in your environment.</p>
3799
4273
  */
3800
4274
  lastKnownExploitAt?: Date;
@@ -3831,42 +4305,52 @@ export type ExternalReportStatus = (typeof ExternalReportStatus)[keyof typeof Ex
3831
4305
  */
3832
4306
  export interface Filter {
3833
4307
  /**
4308
+ * @public
3834
4309
  * <p>The Amazon Resource Number (ARN) associated with this filter.</p>
3835
4310
  */
3836
4311
  arn: string | undefined;
3837
4312
  /**
4313
+ * @public
3838
4314
  * <p>The Amazon Web Services account ID of the account that created the filter.</p>
3839
4315
  */
3840
4316
  ownerId: string | undefined;
3841
4317
  /**
4318
+ * @public
3842
4319
  * <p>The name of the filter.</p>
3843
4320
  */
3844
4321
  name: string | undefined;
3845
4322
  /**
4323
+ * @public
3846
4324
  * <p>Details on the filter criteria associated with this filter.</p>
3847
4325
  */
3848
4326
  criteria: FilterCriteria | undefined;
3849
4327
  /**
4328
+ * @public
3850
4329
  * <p>The action that is to be applied to the findings that match the filter.</p>
3851
4330
  */
3852
4331
  action: FilterAction | string | undefined;
3853
4332
  /**
4333
+ * @public
3854
4334
  * <p>The date and time this filter was created at.</p>
3855
4335
  */
3856
4336
  createdAt: Date | undefined;
3857
4337
  /**
4338
+ * @public
3858
4339
  * <p>The date and time the filter was last updated at.</p>
3859
4340
  */
3860
4341
  updatedAt: Date | undefined;
3861
4342
  /**
4343
+ * @public
3862
4344
  * <p>A description of the filter.</p>
3863
4345
  */
3864
4346
  description?: string;
3865
4347
  /**
4348
+ * @public
3866
4349
  * <p>The reason for the filter.</p>
3867
4350
  */
3868
4351
  reason?: string;
3869
4352
  /**
4353
+ * @public
3870
4354
  * <p>The tags attached to the filter.</p>
3871
4355
  */
3872
4356
  tags?: Record<string, string>;
@@ -3890,6 +4374,7 @@ export type FixAvailable = (typeof FixAvailable)[keyof typeof FixAvailable];
3890
4374
  */
3891
4375
  export interface InspectorScoreDetails {
3892
4376
  /**
4377
+ * @public
3893
4378
  * <p>An object that contains details about the CVSS score given to a finding.</p>
3894
4379
  */
3895
4380
  adjustedCvss?: CvssScoreDetails;
@@ -3900,10 +4385,12 @@ export interface InspectorScoreDetails {
3900
4385
  */
3901
4386
  export interface Step {
3902
4387
  /**
4388
+ * @public
3903
4389
  * <p>The component ID.</p>
3904
4390
  */
3905
4391
  componentId: string | undefined;
3906
4392
  /**
4393
+ * @public
3907
4394
  * <p>The component type.</p>
3908
4395
  */
3909
4396
  componentType: string | undefined;
@@ -3914,6 +4401,7 @@ export interface Step {
3914
4401
  */
3915
4402
  export interface NetworkPath {
3916
4403
  /**
4404
+ * @public
3917
4405
  * <p>The details on the steps in the network path.</p>
3918
4406
  */
3919
4407
  steps?: Step[];
@@ -3924,10 +4412,12 @@ export interface NetworkPath {
3924
4412
  */
3925
4413
  export interface PortRange {
3926
4414
  /**
4415
+ * @public
3927
4416
  * <p>The beginning port in a port range.</p>
3928
4417
  */
3929
4418
  begin: number | undefined;
3930
4419
  /**
4420
+ * @public
3931
4421
  * <p>The ending port in a port range.</p>
3932
4422
  */
3933
4423
  end: number | undefined;
@@ -3950,14 +4440,17 @@ export type NetworkProtocol = (typeof NetworkProtocol)[keyof typeof NetworkProto
3950
4440
  */
3951
4441
  export interface NetworkReachabilityDetails {
3952
4442
  /**
4443
+ * @public
3953
4444
  * <p>An object that contains details about the open port range associated with a finding.</p>
3954
4445
  */
3955
4446
  openPortRange: PortRange | undefined;
3956
4447
  /**
4448
+ * @public
3957
4449
  * <p>The protocol associated with a finding.</p>
3958
4450
  */
3959
4451
  protocol: NetworkProtocol | string | undefined;
3960
4452
  /**
4453
+ * @public
3961
4454
  * <p>An object that contains details about a network path associated with a finding.</p>
3962
4455
  */
3963
4456
  networkPath: NetworkPath | undefined;
@@ -3995,46 +4488,57 @@ export type PackageManager = (typeof PackageManager)[keyof typeof PackageManager
3995
4488
  */
3996
4489
  export interface VulnerablePackage {
3997
4490
  /**
4491
+ * @public
3998
4492
  * <p>The name of the vulnerable package.</p>
3999
4493
  */
4000
4494
  name: string | undefined;
4001
4495
  /**
4496
+ * @public
4002
4497
  * <p>The version of the vulnerable package.</p>
4003
4498
  */
4004
4499
  version: string | undefined;
4005
4500
  /**
4501
+ * @public
4006
4502
  * <p>The source layer hash of the vulnerable package.</p>
4007
4503
  */
4008
4504
  sourceLayerHash?: string;
4009
4505
  /**
4506
+ * @public
4010
4507
  * <p>The epoch of the vulnerable package.</p>
4011
4508
  */
4012
4509
  epoch?: number;
4013
4510
  /**
4511
+ * @public
4014
4512
  * <p>The release of the vulnerable package.</p>
4015
4513
  */
4016
4514
  release?: string;
4017
4515
  /**
4516
+ * @public
4018
4517
  * <p>The architecture of the vulnerable package.</p>
4019
4518
  */
4020
4519
  arch?: string;
4021
4520
  /**
4521
+ * @public
4022
4522
  * <p>The package manager of the vulnerable package.</p>
4023
4523
  */
4024
4524
  packageManager?: PackageManager | string;
4025
4525
  /**
4526
+ * @public
4026
4527
  * <p>The file path of the vulnerable package.</p>
4027
4528
  */
4028
4529
  filePath?: string;
4029
4530
  /**
4531
+ * @public
4030
4532
  * <p>The version of the package that contains the vulnerability fix.</p>
4031
4533
  */
4032
4534
  fixedInVersion?: string;
4033
4535
  /**
4536
+ * @public
4034
4537
  * <p>The code to run in your environment to update packages with a fix available.</p>
4035
4538
  */
4036
4539
  remediation?: string;
4037
4540
  /**
4541
+ * @public
4038
4542
  * <p>The Amazon Resource Number (ARN) of the AWS Lambda function affected by a finding.</p>
4039
4543
  */
4040
4544
  sourceLambdaLayerArn?: string;
@@ -4045,42 +4549,52 @@ export interface VulnerablePackage {
4045
4549
  */
4046
4550
  export interface PackageVulnerabilityDetails {
4047
4551
  /**
4552
+ * @public
4048
4553
  * <p>The ID given to this vulnerability.</p>
4049
4554
  */
4050
4555
  vulnerabilityId: string | undefined;
4051
4556
  /**
4557
+ * @public
4052
4558
  * <p>The packages impacted by this vulnerability.</p>
4053
4559
  */
4054
4560
  vulnerablePackages?: VulnerablePackage[];
4055
4561
  /**
4562
+ * @public
4056
4563
  * <p>The source of the vulnerability information.</p>
4057
4564
  */
4058
4565
  source: string | undefined;
4059
4566
  /**
4567
+ * @public
4060
4568
  * <p>An object that contains details about the CVSS score of a finding.</p>
4061
4569
  */
4062
4570
  cvss?: CvssScore[];
4063
4571
  /**
4572
+ * @public
4064
4573
  * <p>One or more vulnerabilities related to the one identified in this finding.</p>
4065
4574
  */
4066
4575
  relatedVulnerabilities?: string[];
4067
4576
  /**
4577
+ * @public
4068
4578
  * <p>A URL to the source of the vulnerability information.</p>
4069
4579
  */
4070
4580
  sourceUrl?: string;
4071
4581
  /**
4582
+ * @public
4072
4583
  * <p>The severity the vendor has given to this vulnerability type.</p>
4073
4584
  */
4074
4585
  vendorSeverity?: string;
4075
4586
  /**
4587
+ * @public
4076
4588
  * <p>The date and time that this vulnerability was first added to the vendor's database.</p>
4077
4589
  */
4078
4590
  vendorCreatedAt?: Date;
4079
4591
  /**
4592
+ * @public
4080
4593
  * <p>The date and time the vendor last updated this vulnerability in their database.</p>
4081
4594
  */
4082
4595
  vendorUpdatedAt?: Date;
4083
4596
  /**
4597
+ * @public
4084
4598
  * <p>One or more URLs that contain details about this vulnerability type.</p>
4085
4599
  */
4086
4600
  referenceUrls?: string[];
@@ -4091,10 +4605,12 @@ export interface PackageVulnerabilityDetails {
4091
4605
  */
4092
4606
  export interface Recommendation {
4093
4607
  /**
4608
+ * @public
4094
4609
  * <p>The recommended course of action to remediate the finding.</p>
4095
4610
  */
4096
4611
  text?: string;
4097
4612
  /**
4613
+ * @public
4098
4614
  * <p>The URL address to the CVE remediation recommendations.</p>
4099
4615
  */
4100
4616
  Url?: string;
@@ -4105,6 +4621,7 @@ export interface Recommendation {
4105
4621
  */
4106
4622
  export interface Remediation {
4107
4623
  /**
4624
+ * @public
4108
4625
  * <p>An object that contains information about the recommended course of action to remediate the finding.</p>
4109
4626
  */
4110
4627
  recommendation?: Recommendation;
@@ -4115,14 +4632,17 @@ export interface Remediation {
4115
4632
  */
4116
4633
  export interface ResourceDetails {
4117
4634
  /**
4635
+ * @public
4118
4636
  * <p>An object that contains details about the Amazon EC2 instance involved in the finding.</p>
4119
4637
  */
4120
4638
  awsEc2Instance?: AwsEc2InstanceDetails;
4121
4639
  /**
4640
+ * @public
4122
4641
  * <p>An object that contains details about the Amazon ECR container image involved in the finding.</p>
4123
4642
  */
4124
4643
  awsEcrContainerImage?: AwsEcrContainerImageDetails;
4125
4644
  /**
4645
+ * @public
4126
4646
  * <p>A summary of the information about an AWS Lambda function affected by a finding.</p>
4127
4647
  */
4128
4648
  awsLambdaFunction?: AwsLambdaFunctionDetails;
@@ -4147,26 +4667,32 @@ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
4147
4667
  */
4148
4668
  export interface Resource {
4149
4669
  /**
4670
+ * @public
4150
4671
  * <p>The type of resource.</p>
4151
4672
  */
4152
4673
  type: ResourceType | string | undefined;
4153
4674
  /**
4675
+ * @public
4154
4676
  * <p>The ID of the resource.</p>
4155
4677
  */
4156
4678
  id: string | undefined;
4157
4679
  /**
4680
+ * @public
4158
4681
  * <p>The partition of the resource.</p>
4159
4682
  */
4160
4683
  partition?: string;
4161
4684
  /**
4685
+ * @public
4162
4686
  * <p>The Amazon Web Services Region the impacted resource is located in.</p>
4163
4687
  */
4164
4688
  region?: string;
4165
4689
  /**
4690
+ * @public
4166
4691
  * <p>The tags attached to the resource.</p>
4167
4692
  */
4168
4693
  tags?: Record<string, string>;
4169
4694
  /**
4695
+ * @public
4170
4696
  * <p>An object that contains details about the resource involved in a finding.</p>
4171
4697
  */
4172
4698
  details?: ResourceDetails;
@@ -4219,86 +4745,107 @@ export type FindingType = (typeof FindingType)[keyof typeof FindingType];
4219
4745
  */
4220
4746
  export interface Finding {
4221
4747
  /**
4748
+ * @public
4222
4749
  * <p>The Amazon Resource Number (ARN) of the finding.</p>
4223
4750
  */
4224
4751
  findingArn: string | undefined;
4225
4752
  /**
4753
+ * @public
4226
4754
  * <p>The Amazon Web Services account ID associated with the finding.</p>
4227
4755
  */
4228
4756
  awsAccountId: string | undefined;
4229
4757
  /**
4758
+ * @public
4230
4759
  * <p>The type of the finding.</p>
4231
4760
  */
4232
4761
  type: FindingType | string | undefined;
4233
4762
  /**
4763
+ * @public
4234
4764
  * <p>The description of the finding.</p>
4235
4765
  */
4236
4766
  description: string | undefined;
4237
4767
  /**
4768
+ * @public
4238
4769
  * <p>The title of the finding.</p>
4239
4770
  */
4240
4771
  title?: string;
4241
4772
  /**
4773
+ * @public
4242
4774
  * <p>An object that contains the details about how to remediate a finding.</p>
4243
4775
  */
4244
4776
  remediation: Remediation | undefined;
4245
4777
  /**
4778
+ * @public
4246
4779
  * <p>The severity of the finding.</p>
4247
4780
  */
4248
4781
  severity: Severity | string | undefined;
4249
4782
  /**
4783
+ * @public
4250
4784
  * <p>The date and time that the finding was first observed.</p>
4251
4785
  */
4252
4786
  firstObservedAt: Date | undefined;
4253
4787
  /**
4788
+ * @public
4254
4789
  * <p>The date and time that the finding was last observed.</p>
4255
4790
  */
4256
4791
  lastObservedAt: Date | undefined;
4257
4792
  /**
4793
+ * @public
4258
4794
  * <p>The date and time the finding was last updated at.</p>
4259
4795
  */
4260
4796
  updatedAt?: Date;
4261
4797
  /**
4798
+ * @public
4262
4799
  * <p>The status of the finding.</p>
4263
4800
  */
4264
4801
  status: FindingStatus | string | undefined;
4265
4802
  /**
4803
+ * @public
4266
4804
  * <p>Contains information on the resources involved in a finding.</p>
4267
4805
  */
4268
4806
  resources: Resource[] | undefined;
4269
4807
  /**
4808
+ * @public
4270
4809
  * <p>The Amazon Inspector score given to the finding.</p>
4271
4810
  */
4272
4811
  inspectorScore?: number;
4273
4812
  /**
4813
+ * @public
4274
4814
  * <p>An object that contains details of the Amazon Inspector score.</p>
4275
4815
  */
4276
4816
  inspectorScoreDetails?: InspectorScoreDetails;
4277
4817
  /**
4818
+ * @public
4278
4819
  * <p>An object that contains the details of a network reachability finding.</p>
4279
4820
  */
4280
4821
  networkReachabilityDetails?: NetworkReachabilityDetails;
4281
4822
  /**
4823
+ * @public
4282
4824
  * <p>An object that contains the details of a package vulnerability finding.</p>
4283
4825
  */
4284
4826
  packageVulnerabilityDetails?: PackageVulnerabilityDetails;
4285
4827
  /**
4828
+ * @public
4286
4829
  * <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>
4287
4830
  */
4288
4831
  fixAvailable?: FixAvailable | string;
4289
4832
  /**
4833
+ * @public
4290
4834
  * <p>If a finding discovered in your environment has an exploit available.</p>
4291
4835
  */
4292
4836
  exploitAvailable?: ExploitAvailable | string;
4293
4837
  /**
4838
+ * @public
4294
4839
  * <p>The details of an exploit available for a finding discovered in your environment.</p>
4295
4840
  */
4296
4841
  exploitabilityDetails?: ExploitabilityDetails;
4297
4842
  /**
4843
+ * @public
4298
4844
  * <p>Details about the code vulnerability identified in a Lambda function used to filter findings.</p>
4299
4845
  */
4300
4846
  codeVulnerabilityDetails?: CodeVulnerabilityDetails;
4301
4847
  /**
4848
+ * @public
4302
4849
  * <p>The finding's EPSS score.</p>
4303
4850
  */
4304
4851
  epss?: EpssDetails;
@@ -4313,6 +4860,7 @@ export interface GetConfigurationRequest {
4313
4860
  */
4314
4861
  export interface GetConfigurationResponse {
4315
4862
  /**
4863
+ * @public
4316
4864
  * <p>Specifies how the ECR automated re-scan duration is currently configured for your environment.</p>
4317
4865
  */
4318
4866
  ecrConfiguration?: EcrConfigurationState;
@@ -4327,6 +4875,7 @@ export interface GetDelegatedAdminAccountRequest {
4327
4875
  */
4328
4876
  export interface GetDelegatedAdminAccountResponse {
4329
4877
  /**
4878
+ * @public
4330
4879
  * <p>The Amazon Web Services account ID of the Amazon Inspector delegated administrator.</p>
4331
4880
  */
4332
4881
  delegatedAdmin?: DelegatedAdmin;
@@ -4341,18 +4890,22 @@ export interface GetEc2DeepInspectionConfigurationRequest {
4341
4890
  */
4342
4891
  export interface GetEc2DeepInspectionConfigurationResponse {
4343
4892
  /**
4893
+ * @public
4344
4894
  * <p>The Amazon Inspector deep inspection custom paths for your account.</p>
4345
4895
  */
4346
4896
  packagePaths?: string[];
4347
4897
  /**
4898
+ * @public
4348
4899
  * <p>The Amazon Inspector deep inspection custom paths for your organization.</p>
4349
4900
  */
4350
4901
  orgPackagePaths?: string[];
4351
4902
  /**
4903
+ * @public
4352
4904
  * <p>The activation status of Amazon Inspector deep inspection in your account.</p>
4353
4905
  */
4354
4906
  status?: Ec2DeepInspectionStatus | string;
4355
4907
  /**
4908
+ * @public
4356
4909
  * <p>An error message explaining why Amazon Inspector deep inspection configurations could not be retrieved for your account.</p>
4357
4910
  */
4358
4911
  errorMessage?: string;
@@ -4362,10 +4915,12 @@ export interface GetEc2DeepInspectionConfigurationResponse {
4362
4915
  */
4363
4916
  export interface GetEncryptionKeyRequest {
4364
4917
  /**
4918
+ * @public
4365
4919
  * <p>The scan type the key encrypts.</p>
4366
4920
  */
4367
4921
  scanType: ScanType | string | undefined;
4368
4922
  /**
4923
+ * @public
4369
4924
  * <p>The resource type the key encrypts.</p>
4370
4925
  */
4371
4926
  resourceType: ResourceType | string | undefined;
@@ -4375,6 +4930,7 @@ export interface GetEncryptionKeyRequest {
4375
4930
  */
4376
4931
  export interface GetEncryptionKeyResponse {
4377
4932
  /**
4933
+ * @public
4378
4934
  * <p>A kms key ID.</p>
4379
4935
  */
4380
4936
  kmsKeyId: string | undefined;
@@ -4384,6 +4940,7 @@ export interface GetEncryptionKeyResponse {
4384
4940
  */
4385
4941
  export interface GetFindingsReportStatusRequest {
4386
4942
  /**
4943
+ * @public
4387
4944
  * <p>The ID of the report to retrieve the status of.</p>
4388
4945
  */
4389
4946
  reportId?: string;
@@ -4409,26 +4966,32 @@ export type ReportingErrorCode = (typeof ReportingErrorCode)[keyof typeof Report
4409
4966
  */
4410
4967
  export interface GetFindingsReportStatusResponse {
4411
4968
  /**
4969
+ * @public
4412
4970
  * <p>The ID of the report.</p>
4413
4971
  */
4414
4972
  reportId?: string;
4415
4973
  /**
4974
+ * @public
4416
4975
  * <p>The status of the report.</p>
4417
4976
  */
4418
4977
  status?: ExternalReportStatus | string;
4419
4978
  /**
4979
+ * @public
4420
4980
  * <p>The error code of the report.</p>
4421
4981
  */
4422
4982
  errorCode?: ReportingErrorCode | string;
4423
4983
  /**
4984
+ * @public
4424
4985
  * <p>The error message of the report.</p>
4425
4986
  */
4426
4987
  errorMessage?: string;
4427
4988
  /**
4989
+ * @public
4428
4990
  * <p>The destination of the report.</p>
4429
4991
  */
4430
4992
  destination?: Destination;
4431
4993
  /**
4994
+ * @public
4432
4995
  * <p>The filter criteria associated with the report.</p>
4433
4996
  */
4434
4997
  filterCriteria?: FilterCriteria;
@@ -4438,6 +5001,7 @@ export interface GetFindingsReportStatusResponse {
4438
5001
  */
4439
5002
  export interface GetMemberRequest {
4440
5003
  /**
5004
+ * @public
4441
5005
  * <p>The Amazon Web Services account ID of the member account to retrieve information on.</p>
4442
5006
  */
4443
5007
  accountId: string | undefined;
@@ -4448,18 +5012,22 @@ export interface GetMemberRequest {
4448
5012
  */
4449
5013
  export interface Member {
4450
5014
  /**
5015
+ * @public
4451
5016
  * <p>The Amazon Web Services account ID of the member account.</p>
4452
5017
  */
4453
5018
  accountId?: string;
4454
5019
  /**
5020
+ * @public
4455
5021
  * <p>The status of the member account.</p>
4456
5022
  */
4457
5023
  relationshipStatus?: RelationshipStatus | string;
4458
5024
  /**
5025
+ * @public
4459
5026
  * <p>The Amazon Web Services account ID of the Amazon Inspector delegated administrator for this member account.</p>
4460
5027
  */
4461
5028
  delegatedAdminAccountId?: string;
4462
5029
  /**
5030
+ * @public
4463
5031
  * <p>A timestamp showing when the status of this member was last updated.</p>
4464
5032
  */
4465
5033
  updatedAt?: Date;
@@ -4469,6 +5037,7 @@ export interface Member {
4469
5037
  */
4470
5038
  export interface GetMemberResponse {
4471
5039
  /**
5040
+ * @public
4472
5041
  * <p>Details of the retrieved member account.</p>
4473
5042
  */
4474
5043
  member?: Member;
@@ -4478,6 +5047,7 @@ export interface GetMemberResponse {
4478
5047
  */
4479
5048
  export interface GetSbomExportRequest {
4480
5049
  /**
5050
+ * @public
4481
5051
  * <p>The report ID of the SBOM export to get details for.</p>
4482
5052
  */
4483
5053
  reportId: string | undefined;
@@ -4487,30 +5057,37 @@ export interface GetSbomExportRequest {
4487
5057
  */
4488
5058
  export interface GetSbomExportResponse {
4489
5059
  /**
5060
+ * @public
4490
5061
  * <p>The report ID of the software bill of materials (SBOM) report.</p>
4491
5062
  */
4492
5063
  reportId?: string;
4493
5064
  /**
5065
+ * @public
4494
5066
  * <p>The format of the software bill of materials (SBOM) report.</p>
4495
5067
  */
4496
5068
  format?: SbomReportFormat | string;
4497
5069
  /**
5070
+ * @public
4498
5071
  * <p>The status of the software bill of materials (SBOM) report.</p>
4499
5072
  */
4500
5073
  status?: ExternalReportStatus | string;
4501
5074
  /**
5075
+ * @public
4502
5076
  * <p>An error code.</p>
4503
5077
  */
4504
5078
  errorCode?: ReportingErrorCode | string;
4505
5079
  /**
5080
+ * @public
4506
5081
  * <p>An error message.</p>
4507
5082
  */
4508
5083
  errorMessage?: string;
4509
5084
  /**
5085
+ * @public
4510
5086
  * <p>Contains details of the Amazon S3 bucket and KMS key used to export findings.</p>
4511
5087
  */
4512
5088
  s3Destination?: Destination;
4513
5089
  /**
5090
+ * @public
4514
5091
  * <p>Contains details about the resource filter criteria used for the software bill of materials (SBOM) report.</p>
4515
5092
  */
4516
5093
  filterCriteria?: ResourceFilterCriteria;
@@ -4533,14 +5110,17 @@ export type Service = (typeof Service)[keyof typeof Service];
4533
5110
  */
4534
5111
  export interface ListAccountPermissionsRequest {
4535
5112
  /**
5113
+ * @public
4536
5114
  * <p>The service scan type to check permissions for.</p>
4537
5115
  */
4538
5116
  service?: Service | string;
4539
5117
  /**
5118
+ * @public
4540
5119
  * <p>The maximum number of results to return in the response.</p>
4541
5120
  */
4542
5121
  maxResults?: number;
4543
5122
  /**
5123
+ * @public
4544
5124
  * <p>A token to use for paginating results that are returned in the response. Set the value
4545
5125
  * of this parameter to null for the first request to a list action. For subsequent calls, use
4546
5126
  * the <code>NextToken</code> value returned from the previous request to continue listing
@@ -4568,10 +5148,12 @@ export type Operation = (typeof Operation)[keyof typeof Operation];
4568
5148
  */
4569
5149
  export interface Permission {
4570
5150
  /**
5151
+ * @public
4571
5152
  * <p>The services that the permissions allow an account to perform the given operations for.</p>
4572
5153
  */
4573
5154
  service: Service | string | undefined;
4574
5155
  /**
5156
+ * @public
4575
5157
  * <p>The operations that can be performed with the given permissions.</p>
4576
5158
  */
4577
5159
  operation: Operation | string | undefined;
@@ -4581,10 +5163,12 @@ export interface Permission {
4581
5163
  */
4582
5164
  export interface ListAccountPermissionsResponse {
4583
5165
  /**
5166
+ * @public
4584
5167
  * <p>Contains details on the permissions an account has to configure Amazon Inspector.</p>
4585
5168
  */
4586
5169
  permissions: Permission[] | undefined;
4587
5170
  /**
5171
+ * @public
4588
5172
  * <p>A token to use for paginating results that are returned in the response. Set the value
4589
5173
  * of this parameter to null for the first request to a list action. For subsequent calls, use
4590
5174
  * the <code>NextToken</code> value returned from the previous request to continue listing
@@ -4597,10 +5181,12 @@ export interface ListAccountPermissionsResponse {
4597
5181
  */
4598
5182
  export interface ListCoverageRequest {
4599
5183
  /**
5184
+ * @public
4600
5185
  * <p>The maximum number of results to return in the response.</p>
4601
5186
  */
4602
5187
  maxResults?: number;
4603
5188
  /**
5189
+ * @public
4604
5190
  * <p>A token to use for paginating results that are returned in the response. Set the value
4605
5191
  * of this parameter to null for the first request to a list action. For subsequent calls, use
4606
5192
  * the <code>NextToken</code> value returned from the previous request to continue listing
@@ -4608,6 +5194,7 @@ export interface ListCoverageRequest {
4608
5194
  */
4609
5195
  nextToken?: string;
4610
5196
  /**
5197
+ * @public
4611
5198
  * <p>An object that contains details on the filters to apply to the coverage data for your
4612
5199
  * environment.</p>
4613
5200
  */
@@ -4618,6 +5205,7 @@ export interface ListCoverageRequest {
4618
5205
  */
4619
5206
  export interface ListCoverageResponse {
4620
5207
  /**
5208
+ * @public
4621
5209
  * <p>A token to use for paginating results that are returned in the response. Set the value
4622
5210
  * of this parameter to null for the first request to a list action. For subsequent calls, use
4623
5211
  * the <code>NextToken</code> value returned from the previous request to continue listing
@@ -4625,6 +5213,7 @@ export interface ListCoverageResponse {
4625
5213
  */
4626
5214
  nextToken?: string;
4627
5215
  /**
5216
+ * @public
4628
5217
  * <p>An object that contains details on the covered resources in your environment.</p>
4629
5218
  */
4630
5219
  coveredResources?: CoveredResource[];
@@ -4634,15 +5223,18 @@ export interface ListCoverageResponse {
4634
5223
  */
4635
5224
  export interface ListCoverageStatisticsRequest {
4636
5225
  /**
5226
+ * @public
4637
5227
  * <p>An object that contains details on the filters to apply to the coverage data for your
4638
5228
  * environment.</p>
4639
5229
  */
4640
5230
  filterCriteria?: CoverageFilterCriteria;
4641
5231
  /**
5232
+ * @public
4642
5233
  * <p>The value to group the results by.</p>
4643
5234
  */
4644
5235
  groupBy?: GroupKey | string;
4645
5236
  /**
5237
+ * @public
4646
5238
  * <p>A token to use for paginating results that are returned in the response. Set the value
4647
5239
  * of this parameter to null for the first request to a list action. For subsequent calls, use
4648
5240
  * the <code>NextToken</code> value returned from the previous request to continue listing
@@ -4655,14 +5247,17 @@ export interface ListCoverageStatisticsRequest {
4655
5247
  */
4656
5248
  export interface ListCoverageStatisticsResponse {
4657
5249
  /**
5250
+ * @public
4658
5251
  * <p>An array with the number for each group.</p>
4659
5252
  */
4660
5253
  countsByGroup?: Counts[];
4661
5254
  /**
5255
+ * @public
4662
5256
  * <p>The total number for all groups.</p>
4663
5257
  */
4664
5258
  totalCounts: number | undefined;
4665
5259
  /**
5260
+ * @public
4666
5261
  * <p>A token to use for paginating results that are returned in the response. Set the value
4667
5262
  * of this parameter to null for the first request to a list action. For subsequent calls, use
4668
5263
  * the <code>NextToken</code> value returned from the previous request to continue listing
@@ -4675,10 +5270,12 @@ export interface ListCoverageStatisticsResponse {
4675
5270
  */
4676
5271
  export interface ListDelegatedAdminAccountsRequest {
4677
5272
  /**
5273
+ * @public
4678
5274
  * <p>The maximum number of results to return in the response.</p>
4679
5275
  */
4680
5276
  maxResults?: number;
4681
5277
  /**
5278
+ * @public
4682
5279
  * <p>A token to use for paginating results that are returned in the response. Set the value
4683
5280
  * of this parameter to null for the first request to a list action. For subsequent calls, use
4684
5281
  * the <code>NextToken</code> value returned from the previous request to continue listing
@@ -4691,10 +5288,12 @@ export interface ListDelegatedAdminAccountsRequest {
4691
5288
  */
4692
5289
  export interface ListDelegatedAdminAccountsResponse {
4693
5290
  /**
5291
+ * @public
4694
5292
  * <p>Details of the Amazon Inspector delegated administrator of your organization.</p>
4695
5293
  */
4696
5294
  delegatedAdminAccounts?: DelegatedAdminAccount[];
4697
5295
  /**
5296
+ * @public
4698
5297
  * <p>A token to use for paginating results that are returned in the response. Set the value
4699
5298
  * of this parameter to null for the first request to a list action. For subsequent calls, use
4700
5299
  * the <code>NextToken</code> value returned from the previous request to continue listing
@@ -4707,14 +5306,17 @@ export interface ListDelegatedAdminAccountsResponse {
4707
5306
  */
4708
5307
  export interface ListFiltersRequest {
4709
5308
  /**
5309
+ * @public
4710
5310
  * <p>The Amazon resource number (ARN) of the filter.</p>
4711
5311
  */
4712
5312
  arns?: string[];
4713
5313
  /**
5314
+ * @public
4714
5315
  * <p>The action the filter applies to matched findings.</p>
4715
5316
  */
4716
5317
  action?: FilterAction | string;
4717
5318
  /**
5319
+ * @public
4718
5320
  * <p>A token to use for paginating results that are returned in the response. Set the value
4719
5321
  * of this parameter to null for the first request to a list action. For subsequent calls, use
4720
5322
  * the <code>NextToken</code> value returned from the previous request to continue listing
@@ -4722,6 +5324,7 @@ export interface ListFiltersRequest {
4722
5324
  */
4723
5325
  nextToken?: string;
4724
5326
  /**
5327
+ * @public
4725
5328
  * <p>The maximum number of results to return in the response.</p>
4726
5329
  */
4727
5330
  maxResults?: number;
@@ -4731,10 +5334,12 @@ export interface ListFiltersRequest {
4731
5334
  */
4732
5335
  export interface ListFiltersResponse {
4733
5336
  /**
5337
+ * @public
4734
5338
  * <p>Contains details on the filters associated with your account.</p>
4735
5339
  */
4736
5340
  filters: Filter[] | undefined;
4737
5341
  /**
5342
+ * @public
4738
5343
  * <p>A token to use for paginating results that are returned in the response. Set the value
4739
5344
  * of this parameter to null for the first request to a list action. For subsequent calls, use
4740
5345
  * the <code>NextToken</code> value returned from the previous request to continue listing
@@ -4747,10 +5352,12 @@ export interface ListFiltersResponse {
4747
5352
  */
4748
5353
  export interface ListFindingAggregationsRequest {
4749
5354
  /**
5355
+ * @public
4750
5356
  * <p>The type of the aggregation request.</p>
4751
5357
  */
4752
5358
  aggregationType: AggregationType | string | undefined;
4753
5359
  /**
5360
+ * @public
4754
5361
  * <p>A token to use for paginating results that are returned in the response. Set the value
4755
5362
  * of this parameter to null for the first request to a list action. For subsequent calls, use
4756
5363
  * the <code>NextToken</code> value returned from the previous request to continue listing
@@ -4758,14 +5365,17 @@ export interface ListFindingAggregationsRequest {
4758
5365
  */
4759
5366
  nextToken?: string;
4760
5367
  /**
5368
+ * @public
4761
5369
  * <p>The maximum number of results to return in the response.</p>
4762
5370
  */
4763
5371
  maxResults?: number;
4764
5372
  /**
5373
+ * @public
4765
5374
  * <p>The Amazon Web Services account IDs to retrieve finding aggregation data for.</p>
4766
5375
  */
4767
5376
  accountIds?: StringFilter[];
4768
5377
  /**
5378
+ * @public
4769
5379
  * <p>Details of the aggregation request that is used to filter your aggregation results.</p>
4770
5380
  */
4771
5381
  aggregationRequest?: AggregationRequest;
@@ -4775,14 +5385,17 @@ export interface ListFindingAggregationsRequest {
4775
5385
  */
4776
5386
  export interface ListFindingAggregationsResponse {
4777
5387
  /**
5388
+ * @public
4778
5389
  * <p>The type of aggregation to perform.</p>
4779
5390
  */
4780
5391
  aggregationType: AggregationType | string | undefined;
4781
5392
  /**
5393
+ * @public
4782
5394
  * <p>Objects that contain the results of an aggregation operation.</p>
4783
5395
  */
4784
5396
  responses?: AggregationResponse[];
4785
5397
  /**
5398
+ * @public
4786
5399
  * <p>A token to use for paginating results that are returned in the response. Set the value
4787
5400
  * of this parameter to null for the first request to a list action. For subsequent calls, use
4788
5401
  * the <code>NextToken</code> value returned from the previous request to continue listing
@@ -4823,10 +5436,12 @@ export type SortField = (typeof SortField)[keyof typeof SortField];
4823
5436
  */
4824
5437
  export interface SortCriteria {
4825
5438
  /**
5439
+ * @public
4826
5440
  * <p>The finding detail field by which results are sorted.</p>
4827
5441
  */
4828
5442
  field: SortField | string | undefined;
4829
5443
  /**
5444
+ * @public
4830
5445
  * <p>The order by which findings are sorted.</p>
4831
5446
  */
4832
5447
  sortOrder: SortOrder | string | undefined;
@@ -4836,10 +5451,12 @@ export interface SortCriteria {
4836
5451
  */
4837
5452
  export interface ListFindingsRequest {
4838
5453
  /**
5454
+ * @public
4839
5455
  * <p>The maximum number of results to return in the response.</p>
4840
5456
  */
4841
5457
  maxResults?: number;
4842
5458
  /**
5459
+ * @public
4843
5460
  * <p>A token to use for paginating results that are returned in the response. Set the value
4844
5461
  * of this parameter to null for the first request to a list action. For subsequent calls, use
4845
5462
  * the <code>NextToken</code> value returned from the previous request to continue listing
@@ -4847,10 +5464,12 @@ export interface ListFindingsRequest {
4847
5464
  */
4848
5465
  nextToken?: string;
4849
5466
  /**
5467
+ * @public
4850
5468
  * <p>Details on the filters to apply to your finding results.</p>
4851
5469
  */
4852
5470
  filterCriteria?: FilterCriteria;
4853
5471
  /**
5472
+ * @public
4854
5473
  * <p>Details on the sort criteria to apply to your finding results.</p>
4855
5474
  */
4856
5475
  sortCriteria?: SortCriteria;
@@ -4860,6 +5479,7 @@ export interface ListFindingsRequest {
4860
5479
  */
4861
5480
  export interface ListFindingsResponse {
4862
5481
  /**
5482
+ * @public
4863
5483
  * <p>A token to use for paginating results that are returned in the response. Set the value
4864
5484
  * of this parameter to null for the first request to a list action. For subsequent calls, use
4865
5485
  * the <code>NextToken</code> value returned from the previous request to continue listing
@@ -4867,6 +5487,7 @@ export interface ListFindingsResponse {
4867
5487
  */
4868
5488
  nextToken?: string;
4869
5489
  /**
5490
+ * @public
4870
5491
  * <p>Contains details on the findings in your environment.</p>
4871
5492
  */
4872
5493
  findings?: Finding[];
@@ -4876,15 +5497,18 @@ export interface ListFindingsResponse {
4876
5497
  */
4877
5498
  export interface ListMembersRequest {
4878
5499
  /**
5500
+ * @public
4879
5501
  * <p>Specifies whether to list only currently associated members if <code>True</code> or to
4880
5502
  * list all members within the organization if <code>False</code>.</p>
4881
5503
  */
4882
5504
  onlyAssociated?: boolean;
4883
5505
  /**
5506
+ * @public
4884
5507
  * <p>The maximum number of results to return in the response.</p>
4885
5508
  */
4886
5509
  maxResults?: number;
4887
5510
  /**
5511
+ * @public
4888
5512
  * <p>A token to use for paginating results that are returned in the response. Set the value
4889
5513
  * of this parameter to null for the first request to a list action. For subsequent calls, use
4890
5514
  * the <code>NextToken</code> value returned from the previous request to continue listing
@@ -4897,10 +5521,12 @@ export interface ListMembersRequest {
4897
5521
  */
4898
5522
  export interface ListMembersResponse {
4899
5523
  /**
5524
+ * @public
4900
5525
  * <p>An object that contains details for each member account.</p>
4901
5526
  */
4902
5527
  members?: Member[];
4903
5528
  /**
5529
+ * @public
4904
5530
  * <p>The pagination parameter to be used on the next list operation to retrieve more
4905
5531
  * items.</p>
4906
5532
  */
@@ -4911,6 +5537,7 @@ export interface ListMembersResponse {
4911
5537
  */
4912
5538
  export interface ListTagsForResourceRequest {
4913
5539
  /**
5540
+ * @public
4914
5541
  * <p>The Amazon resource number (ARN) of the resource to list tags of.</p>
4915
5542
  */
4916
5543
  resourceArn: string | undefined;
@@ -4920,6 +5547,7 @@ export interface ListTagsForResourceRequest {
4920
5547
  */
4921
5548
  export interface ListTagsForResourceResponse {
4922
5549
  /**
5550
+ * @public
4923
5551
  * <p>The tags associated with the resource.</p>
4924
5552
  */
4925
5553
  tags?: Record<string, string>;
@@ -4929,10 +5557,12 @@ export interface ListTagsForResourceResponse {
4929
5557
  */
4930
5558
  export interface ListUsageTotalsRequest {
4931
5559
  /**
5560
+ * @public
4932
5561
  * <p>The maximum number of results to return in the response.</p>
4933
5562
  */
4934
5563
  maxResults?: number;
4935
5564
  /**
5565
+ * @public
4936
5566
  * <p>A token to use for paginating results that are returned in the response. Set the value
4937
5567
  * of this parameter to null for the first request to a list action. For subsequent calls, use
4938
5568
  * the <code>NextToken</code> value returned from the previous request to continue listing
@@ -4940,6 +5570,7 @@ export interface ListUsageTotalsRequest {
4940
5570
  */
4941
5571
  nextToken?: string;
4942
5572
  /**
5573
+ * @public
4943
5574
  * <p>The Amazon Web Services account IDs to retrieve usage totals for.</p>
4944
5575
  */
4945
5576
  accountIds?: string[];
@@ -4965,18 +5596,22 @@ export type UsageType = (typeof UsageType)[keyof typeof UsageType];
4965
5596
  */
4966
5597
  export interface Usage {
4967
5598
  /**
5599
+ * @public
4968
5600
  * <p>The type scan.</p>
4969
5601
  */
4970
5602
  type?: UsageType | string;
4971
5603
  /**
5604
+ * @public
4972
5605
  * <p>The total of usage.</p>
4973
5606
  */
4974
5607
  total?: number;
4975
5608
  /**
5609
+ * @public
4976
5610
  * <p>The estimated monthly cost of Amazon Inspector.</p>
4977
5611
  */
4978
5612
  estimatedMonthlyCost?: number;
4979
5613
  /**
5614
+ * @public
4980
5615
  * <p>The currency type used when calculating usage data.</p>
4981
5616
  */
4982
5617
  currency?: Currency | string;
@@ -4987,10 +5622,12 @@ export interface Usage {
4987
5622
  */
4988
5623
  export interface UsageTotal {
4989
5624
  /**
5625
+ * @public
4990
5626
  * <p>The account ID of the account that usage data was retrieved for.</p>
4991
5627
  */
4992
5628
  accountId?: string;
4993
5629
  /**
5630
+ * @public
4994
5631
  * <p>An object representing the total usage for an account.</p>
4995
5632
  */
4996
5633
  usage?: Usage[];
@@ -5000,10 +5637,12 @@ export interface UsageTotal {
5000
5637
  */
5001
5638
  export interface ListUsageTotalsResponse {
5002
5639
  /**
5640
+ * @public
5003
5641
  * <p>The pagination parameter to be used on the next list operation to retrieve more items.</p>
5004
5642
  */
5005
5643
  nextToken?: string;
5006
5644
  /**
5645
+ * @public
5007
5646
  * <p>An object with details on the total usage for the requested account.</p>
5008
5647
  */
5009
5648
  totals?: UsageTotal[];
@@ -5013,10 +5652,12 @@ export interface ListUsageTotalsResponse {
5013
5652
  */
5014
5653
  export interface ResetEncryptionKeyRequest {
5015
5654
  /**
5655
+ * @public
5016
5656
  * <p>The scan type the key encrypts.</p>
5017
5657
  */
5018
5658
  scanType: ScanType | string | undefined;
5019
5659
  /**
5660
+ * @public
5020
5661
  * <p>The resource type the key encrypts.</p>
5021
5662
  */
5022
5663
  resourceType: ResourceType | string | undefined;
@@ -5033,6 +5674,7 @@ export interface ResetEncryptionKeyResponse {
5033
5674
  */
5034
5675
  export interface SearchVulnerabilitiesFilterCriteria {
5035
5676
  /**
5677
+ * @public
5036
5678
  * <p>The IDs for specific vulnerabilities.</p>
5037
5679
  */
5038
5680
  vulnerabilityIds: string[] | undefined;
@@ -5042,10 +5684,12 @@ export interface SearchVulnerabilitiesFilterCriteria {
5042
5684
  */
5043
5685
  export interface SearchVulnerabilitiesRequest {
5044
5686
  /**
5687
+ * @public
5045
5688
  * <p>The criteria used to filter the results of a vulnerability search.</p>
5046
5689
  */
5047
5690
  filterCriteria: SearchVulnerabilitiesFilterCriteria | undefined;
5048
5691
  /**
5692
+ * @public
5049
5693
  * <p>A token to use for paginating results that are returned in the response. Set the value
5050
5694
  * of this parameter to null for the first request to a list action. For subsequent calls, use
5051
5695
  * the <code>NextToken</code> value returned from the previous request to continue listing
@@ -5070,70 +5714,87 @@ export type VulnerabilitySource = (typeof VulnerabilitySource)[keyof typeof Vuln
5070
5714
  */
5071
5715
  export interface Vulnerability {
5072
5716
  /**
5717
+ * @public
5073
5718
  * <p>The ID for the specific vulnerability.</p>
5074
5719
  */
5075
5720
  id: string | undefined;
5076
5721
  /**
5722
+ * @public
5077
5723
  * <p>The Common Weakness Enumeration (CWE) associated with the vulnerability.</p>
5078
5724
  */
5079
5725
  cwes?: string[];
5080
5726
  /**
5727
+ * @public
5081
5728
  * <p>An object that contains the Cybersecurity and Infrastructure Security Agency (CISA) details for the vulnerability.</p>
5082
5729
  */
5083
5730
  cisaData?: CisaData;
5084
5731
  /**
5732
+ * @public
5085
5733
  * <p>The source of the vulnerability information.</p>
5086
5734
  */
5087
5735
  source?: VulnerabilitySource | string;
5088
5736
  /**
5737
+ * @public
5089
5738
  * <p>A description of the vulnerability.</p>
5090
5739
  */
5091
5740
  description?: string;
5092
5741
  /**
5742
+ * @public
5093
5743
  * <p>An object that contains information about the Amazon Web Services Threat Intel Group (ATIG) details for the vulnerability.</p>
5094
5744
  */
5095
5745
  atigData?: AtigData;
5096
5746
  /**
5747
+ * @public
5097
5748
  * <p>The severity assigned by the vendor.</p>
5098
5749
  */
5099
5750
  vendorSeverity?: string;
5100
5751
  /**
5752
+ * @public
5101
5753
  * <p>An object that contains the Common Vulnerability Scoring System (CVSS) Version 3 details for the vulnerability.</p>
5102
5754
  */
5103
5755
  cvss3?: Cvss3;
5104
5756
  /**
5757
+ * @public
5105
5758
  * <p>A list of related vulnerabilities.</p>
5106
5759
  */
5107
5760
  relatedVulnerabilities?: string[];
5108
5761
  /**
5762
+ * @public
5109
5763
  * <p>An object that contains the Common Vulnerability Scoring System (CVSS) Version 2 details for the vulnerability.</p>
5110
5764
  */
5111
5765
  cvss2?: Cvss2;
5112
5766
  /**
5767
+ * @public
5113
5768
  * <p>The date and time when the vendor created this vulnerability.</p>
5114
5769
  */
5115
5770
  vendorCreatedAt?: Date;
5116
5771
  /**
5772
+ * @public
5117
5773
  * <p>The date and time when the vendor last updated this vulnerability.</p>
5118
5774
  */
5119
5775
  vendorUpdatedAt?: Date;
5120
5776
  /**
5777
+ * @public
5121
5778
  * <p>A link to the official source material for this vulnerability.</p>
5122
5779
  */
5123
5780
  sourceUrl?: string;
5124
5781
  /**
5782
+ * @public
5125
5783
  * <p>Links to various resources with more information on this vulnerability. </p>
5126
5784
  */
5127
5785
  referenceUrls?: string[];
5128
5786
  /**
5787
+ * @public
5129
5788
  * <p>An object that contains details on when the exploit was observed.</p>
5130
5789
  */
5131
5790
  exploitObserved?: ExploitObserved;
5132
5791
  /**
5792
+ * @public
5133
5793
  * <p>Platforms that the vulnerability can be detected on.</p>
5134
5794
  */
5135
5795
  detectionPlatforms?: string[];
5136
5796
  /**
5797
+ * @public
5137
5798
  * <p>An object that contains the Exploit Prediction Scoring System (EPSS) score for a vulnerability.</p>
5138
5799
  */
5139
5800
  epss?: Epss;
@@ -5143,10 +5804,12 @@ export interface Vulnerability {
5143
5804
  */
5144
5805
  export interface SearchVulnerabilitiesResponse {
5145
5806
  /**
5807
+ * @public
5146
5808
  * <p>Details about the listed vulnerability.</p>
5147
5809
  */
5148
5810
  vulnerabilities: Vulnerability[] | undefined;
5149
5811
  /**
5812
+ * @public
5150
5813
  * <p>The pagination parameter to be used on the next list operation to retrieve more items.</p>
5151
5814
  */
5152
5815
  nextToken?: string;
@@ -5156,10 +5819,12 @@ export interface SearchVulnerabilitiesResponse {
5156
5819
  */
5157
5820
  export interface TagResourceRequest {
5158
5821
  /**
5822
+ * @public
5159
5823
  * <p>The Amazon Resource Name (ARN) of the resource to apply a tag to.</p>
5160
5824
  */
5161
5825
  resourceArn: string | undefined;
5162
5826
  /**
5827
+ * @public
5163
5828
  * <p>The tags to be added to a resource.</p>
5164
5829
  */
5165
5830
  tags: Record<string, string> | undefined;
@@ -5174,10 +5839,12 @@ export interface TagResourceResponse {
5174
5839
  */
5175
5840
  export interface UntagResourceRequest {
5176
5841
  /**
5842
+ * @public
5177
5843
  * <p>The Amazon Resource Name (ARN) for the resource to remove tags from.</p>
5178
5844
  */
5179
5845
  resourceArn: string | undefined;
5180
5846
  /**
5847
+ * @public
5181
5848
  * <p>The tag keys to remove from the resource.</p>
5182
5849
  */
5183
5850
  tagKeys: string[] | undefined;
@@ -5192,6 +5859,7 @@ export interface UntagResourceResponse {
5192
5859
  */
5193
5860
  export interface UpdateConfigurationRequest {
5194
5861
  /**
5862
+ * @public
5195
5863
  * <p>Specifies how the ECR automated re-scan will be updated for your environment.</p>
5196
5864
  */
5197
5865
  ecrConfiguration: EcrConfiguration | undefined;
@@ -5206,10 +5874,12 @@ export interface UpdateConfigurationResponse {
5206
5874
  */
5207
5875
  export interface UpdateEc2DeepInspectionConfigurationRequest {
5208
5876
  /**
5877
+ * @public
5209
5878
  * <p>Specify <code>TRUE</code> to activate Amazon Inspector deep inspection in your account, or <code>FALSE</code> to deactivate. Member accounts in an organization cannot deactivate deep inspection, instead the delegated administrator for the organization can deactivate a member account using <a href="https://docs.aws.amazon.com/inspector/v2/APIReference/API_BatchUpdateMemberEc2DeepInspectionStatus.html">BatchUpdateMemberEc2DeepInspectionStatus</a>.</p>
5210
5879
  */
5211
5880
  activateDeepInspection?: boolean;
5212
5881
  /**
5882
+ * @public
5213
5883
  * <p>The Amazon Inspector deep inspection custom paths you are adding for your account.</p>
5214
5884
  */
5215
5885
  packagePaths?: string[];
@@ -5219,18 +5889,22 @@ export interface UpdateEc2DeepInspectionConfigurationRequest {
5219
5889
  */
5220
5890
  export interface UpdateEc2DeepInspectionConfigurationResponse {
5221
5891
  /**
5892
+ * @public
5222
5893
  * <p>The current Amazon Inspector deep inspection custom paths for your account.</p>
5223
5894
  */
5224
5895
  packagePaths?: string[];
5225
5896
  /**
5897
+ * @public
5226
5898
  * <p>The current Amazon Inspector deep inspection custom paths for the organization.</p>
5227
5899
  */
5228
5900
  orgPackagePaths?: string[];
5229
5901
  /**
5902
+ * @public
5230
5903
  * <p>The status of Amazon Inspector deep inspection in your account.</p>
5231
5904
  */
5232
5905
  status?: Ec2DeepInspectionStatus | string;
5233
5906
  /**
5907
+ * @public
5234
5908
  * <p>An error message explaining why new Amazon Inspector deep inspection custom paths could not be added.</p>
5235
5909
  */
5236
5910
  errorMessage?: string;
@@ -5240,14 +5914,17 @@ export interface UpdateEc2DeepInspectionConfigurationResponse {
5240
5914
  */
5241
5915
  export interface UpdateEncryptionKeyRequest {
5242
5916
  /**
5917
+ * @public
5243
5918
  * <p>A KMS key ID for the encryption key.</p>
5244
5919
  */
5245
5920
  kmsKeyId: string | undefined;
5246
5921
  /**
5922
+ * @public
5247
5923
  * <p>The scan type for the encryption key.</p>
5248
5924
  */
5249
5925
  scanType: ScanType | string | undefined;
5250
5926
  /**
5927
+ * @public
5251
5928
  * <p>The resource type for the encryption key.</p>
5252
5929
  */
5253
5930
  resourceType: ResourceType | string | undefined;
@@ -5262,26 +5939,32 @@ export interface UpdateEncryptionKeyResponse {
5262
5939
  */
5263
5940
  export interface UpdateFilterRequest {
5264
5941
  /**
5942
+ * @public
5265
5943
  * <p>Specifies the action that is to be applied to the findings that match the filter.</p>
5266
5944
  */
5267
5945
  action?: FilterAction | string;
5268
5946
  /**
5947
+ * @public
5269
5948
  * <p>A description of the filter.</p>
5270
5949
  */
5271
5950
  description?: string;
5272
5951
  /**
5952
+ * @public
5273
5953
  * <p>Defines the criteria to be update in the filter.</p>
5274
5954
  */
5275
5955
  filterCriteria?: FilterCriteria;
5276
5956
  /**
5957
+ * @public
5277
5958
  * <p>The name of the filter.</p>
5278
5959
  */
5279
5960
  name?: string;
5280
5961
  /**
5962
+ * @public
5281
5963
  * <p>The Amazon Resource Number (ARN) of the filter to update.</p>
5282
5964
  */
5283
5965
  filterArn: string | undefined;
5284
5966
  /**
5967
+ * @public
5285
5968
  * <p>The reason the filter was updated.</p>
5286
5969
  */
5287
5970
  reason?: string;
@@ -5291,6 +5974,7 @@ export interface UpdateFilterRequest {
5291
5974
  */
5292
5975
  export interface UpdateFilterResponse {
5293
5976
  /**
5977
+ * @public
5294
5978
  * <p>The Amazon Resource Number (ARN) of the successfully updated filter.</p>
5295
5979
  */
5296
5980
  arn: string | undefined;
@@ -5300,6 +5984,7 @@ export interface UpdateFilterResponse {
5300
5984
  */
5301
5985
  export interface UpdateOrganizationConfigurationRequest {
5302
5986
  /**
5987
+ * @public
5303
5988
  * <p>Defines which scan types are enabled automatically for new members of your Amazon Inspector organization.</p>
5304
5989
  */
5305
5990
  autoEnable: AutoEnable | undefined;
@@ -5309,6 +5994,7 @@ export interface UpdateOrganizationConfigurationRequest {
5309
5994
  */
5310
5995
  export interface UpdateOrganizationConfigurationResponse {
5311
5996
  /**
5997
+ * @public
5312
5998
  * <p>The updated status of scan types automatically enabled for new members of your Amazon Inspector organization.</p>
5313
5999
  */
5314
6000
  autoEnable: AutoEnable | undefined;
@@ -5318,6 +6004,7 @@ export interface UpdateOrganizationConfigurationResponse {
5318
6004
  */
5319
6005
  export interface UpdateOrgEc2DeepInspectionConfigurationRequest {
5320
6006
  /**
6007
+ * @public
5321
6008
  * <p>The Amazon Inspector deep inspection custom paths you are adding for your organization.</p>
5322
6009
  */
5323
6010
  orgPackagePaths: string[] | undefined;