@aws-sdk/client-inspector2 3.131.0 → 3.142.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +33 -0
- package/README.md +1 -1
- package/dist-cjs/commands/AssociateMemberCommand.js +2 -2
- package/dist-cjs/commands/BatchGetAccountStatusCommand.js +2 -2
- package/dist-cjs/commands/BatchGetFreeTrialInfoCommand.js +2 -2
- package/dist-cjs/commands/CancelFindingsReportCommand.js +2 -2
- package/dist-cjs/commands/CreateFilterCommand.js +2 -2
- package/dist-cjs/commands/CreateFindingsReportCommand.js +2 -2
- package/dist-cjs/commands/DeleteFilterCommand.js +2 -2
- package/dist-cjs/commands/DescribeOrganizationConfigurationCommand.js +2 -2
- package/dist-cjs/commands/DisableCommand.js +2 -2
- package/dist-cjs/commands/DisableDelegatedAdminAccountCommand.js +2 -2
- package/dist-cjs/commands/DisassociateMemberCommand.js +2 -2
- package/dist-cjs/commands/EnableCommand.js +2 -2
- package/dist-cjs/commands/EnableDelegatedAdminAccountCommand.js +2 -2
- package/dist-cjs/commands/GetConfigurationCommand.js +2 -2
- package/dist-cjs/commands/GetDelegatedAdminAccountCommand.js +2 -2
- package/dist-cjs/commands/GetFindingsReportStatusCommand.js +2 -2
- package/dist-cjs/commands/GetMemberCommand.js +2 -2
- package/dist-cjs/commands/ListAccountPermissionsCommand.js +2 -2
- package/dist-cjs/commands/ListCoverageCommand.js +2 -2
- package/dist-cjs/commands/ListCoverageStatisticsCommand.js +2 -2
- package/dist-cjs/commands/ListDelegatedAdminAccountsCommand.js +2 -2
- package/dist-cjs/commands/ListFiltersCommand.js +2 -2
- package/dist-cjs/commands/ListFindingAggregationsCommand.js +2 -2
- package/dist-cjs/commands/ListFindingsCommand.js +2 -2
- package/dist-cjs/commands/ListMembersCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/ListUsageTotalsCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateConfigurationCommand.js +2 -2
- package/dist-cjs/commands/UpdateFilterCommand.js +2 -2
- package/dist-cjs/commands/UpdateOrganizationConfigurationCommand.js +2 -2
- package/dist-cjs/models/models_0.js +615 -896
- package/dist-cjs/protocols/Aws_restJson1.js +348 -560
- package/dist-es/commands/AssociateMemberCommand.js +3 -3
- package/dist-es/commands/BatchGetAccountStatusCommand.js +3 -3
- package/dist-es/commands/BatchGetFreeTrialInfoCommand.js +3 -3
- package/dist-es/commands/CancelFindingsReportCommand.js +3 -3
- package/dist-es/commands/CreateFilterCommand.js +3 -3
- package/dist-es/commands/CreateFindingsReportCommand.js +3 -3
- package/dist-es/commands/DeleteFilterCommand.js +3 -3
- package/dist-es/commands/DescribeOrganizationConfigurationCommand.js +3 -3
- package/dist-es/commands/DisableCommand.js +3 -3
- package/dist-es/commands/DisableDelegatedAdminAccountCommand.js +3 -3
- package/dist-es/commands/DisassociateMemberCommand.js +3 -3
- package/dist-es/commands/EnableCommand.js +3 -3
- package/dist-es/commands/EnableDelegatedAdminAccountCommand.js +3 -3
- package/dist-es/commands/GetConfigurationCommand.js +3 -3
- package/dist-es/commands/GetDelegatedAdminAccountCommand.js +3 -3
- package/dist-es/commands/GetFindingsReportStatusCommand.js +3 -3
- package/dist-es/commands/GetMemberCommand.js +3 -3
- package/dist-es/commands/ListAccountPermissionsCommand.js +3 -3
- package/dist-es/commands/ListCoverageCommand.js +3 -3
- package/dist-es/commands/ListCoverageStatisticsCommand.js +3 -3
- package/dist-es/commands/ListDelegatedAdminAccountsCommand.js +3 -3
- package/dist-es/commands/ListFiltersCommand.js +3 -3
- package/dist-es/commands/ListFindingAggregationsCommand.js +3 -3
- package/dist-es/commands/ListFindingsCommand.js +3 -3
- package/dist-es/commands/ListMembersCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/ListUsageTotalsCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UpdateConfigurationCommand.js +3 -3
- package/dist-es/commands/UpdateFilterCommand.js +3 -3
- package/dist-es/commands/UpdateOrganizationConfigurationCommand.js +3 -3
- package/dist-es/models/models_0.js +188 -612
- package/dist-es/protocols/Aws_restJson1.js +448 -562
- package/dist-types/models/models_0.d.ts +568 -848
- package/dist-types/ts3.4/models/models_0.d.ts +284 -564
- package/package.json +6 -6
|
@@ -32,12 +32,6 @@ export interface ResourceStatus {
|
|
|
32
32
|
*/
|
|
33
33
|
ecr: Status | string | undefined;
|
|
34
34
|
}
|
|
35
|
-
export declare namespace ResourceStatus {
|
|
36
|
-
/**
|
|
37
|
-
* @internal
|
|
38
|
-
*/
|
|
39
|
-
const filterSensitiveLog: (obj: ResourceStatus) => any;
|
|
40
|
-
}
|
|
41
35
|
/**
|
|
42
36
|
* <p>An Amazon Web Services account within your environment that Amazon Inspector has been enabled for.</p>
|
|
43
37
|
*/
|
|
@@ -55,12 +49,6 @@ export interface Account {
|
|
|
55
49
|
*/
|
|
56
50
|
resourceStatus: ResourceStatus | undefined;
|
|
57
51
|
}
|
|
58
|
-
export declare namespace Account {
|
|
59
|
-
/**
|
|
60
|
-
* @internal
|
|
61
|
-
*/
|
|
62
|
-
const filterSensitiveLog: (obj: Account) => any;
|
|
63
|
-
}
|
|
64
52
|
export declare enum AggregationFindingType {
|
|
65
53
|
NETWORK_REACHABILITY = "NETWORK_REACHABILITY",
|
|
66
54
|
PACKAGE_VULNERABILITY = "PACKAGE_VULNERABILITY"
|
|
@@ -100,12 +88,6 @@ export interface AccountAggregation {
|
|
|
100
88
|
*/
|
|
101
89
|
sortBy?: AccountSortBy | string;
|
|
102
90
|
}
|
|
103
|
-
export declare namespace AccountAggregation {
|
|
104
|
-
/**
|
|
105
|
-
* @internal
|
|
106
|
-
*/
|
|
107
|
-
const filterSensitiveLog: (obj: AccountAggregation) => any;
|
|
108
|
-
}
|
|
109
91
|
/**
|
|
110
92
|
* <p>An object that contains the counts of aggregated finding per severity.</p>
|
|
111
93
|
*/
|
|
@@ -127,12 +109,6 @@ export interface SeverityCounts {
|
|
|
127
109
|
*/
|
|
128
110
|
critical?: number;
|
|
129
111
|
}
|
|
130
|
-
export declare namespace SeverityCounts {
|
|
131
|
-
/**
|
|
132
|
-
* @internal
|
|
133
|
-
*/
|
|
134
|
-
const filterSensitiveLog: (obj: SeverityCounts) => any;
|
|
135
|
-
}
|
|
136
112
|
/**
|
|
137
113
|
* <p>An aggregation of findings by Amazon Web Services account ID.</p>
|
|
138
114
|
*/
|
|
@@ -146,12 +122,6 @@ export interface AccountAggregationResponse {
|
|
|
146
122
|
*/
|
|
147
123
|
severityCounts?: SeverityCounts;
|
|
148
124
|
}
|
|
149
|
-
export declare namespace AccountAggregationResponse {
|
|
150
|
-
/**
|
|
151
|
-
* @internal
|
|
152
|
-
*/
|
|
153
|
-
const filterSensitiveLog: (obj: AccountAggregationResponse) => any;
|
|
154
|
-
}
|
|
155
125
|
export declare enum ErrorCode {
|
|
156
126
|
ACCESS_DENIED = "ACCESS_DENIED",
|
|
157
127
|
ACCOUNT_IS_ISOLATED = "ACCOUNT_IS_ISOLATED",
|
|
@@ -185,12 +155,6 @@ export interface State {
|
|
|
185
155
|
*/
|
|
186
156
|
errorMessage: string | undefined;
|
|
187
157
|
}
|
|
188
|
-
export declare namespace State {
|
|
189
|
-
/**
|
|
190
|
-
* @internal
|
|
191
|
-
*/
|
|
192
|
-
const filterSensitiveLog: (obj: State) => any;
|
|
193
|
-
}
|
|
194
158
|
/**
|
|
195
159
|
* <p>Details the state of Amazon Inspector for each resource type Amazon Inspector scans.</p>
|
|
196
160
|
*/
|
|
@@ -204,12 +168,6 @@ export interface ResourceState {
|
|
|
204
168
|
*/
|
|
205
169
|
ecr: State | undefined;
|
|
206
170
|
}
|
|
207
|
-
export declare namespace ResourceState {
|
|
208
|
-
/**
|
|
209
|
-
* @internal
|
|
210
|
-
*/
|
|
211
|
-
const filterSensitiveLog: (obj: ResourceState) => any;
|
|
212
|
-
}
|
|
213
171
|
/**
|
|
214
172
|
* <p>An object with details the status of an Amazon Web Services account within your Amazon Inspector environment</p>
|
|
215
173
|
*/
|
|
@@ -227,12 +185,6 @@ export interface AccountState {
|
|
|
227
185
|
*/
|
|
228
186
|
resourceState: ResourceState | undefined;
|
|
229
187
|
}
|
|
230
|
-
export declare namespace AccountState {
|
|
231
|
-
/**
|
|
232
|
-
* @internal
|
|
233
|
-
*/
|
|
234
|
-
const filterSensitiveLog: (obj: AccountState) => any;
|
|
235
|
-
}
|
|
236
188
|
export declare enum StringComparison {
|
|
237
189
|
EQUALS = "EQUALS",
|
|
238
190
|
NOT_EQUALS = "NOT_EQUALS",
|
|
@@ -251,12 +203,6 @@ export interface StringFilter {
|
|
|
251
203
|
*/
|
|
252
204
|
value: string | undefined;
|
|
253
205
|
}
|
|
254
|
-
export declare namespace StringFilter {
|
|
255
|
-
/**
|
|
256
|
-
* @internal
|
|
257
|
-
*/
|
|
258
|
-
const filterSensitiveLog: (obj: StringFilter) => any;
|
|
259
|
-
}
|
|
260
206
|
export declare enum AmiSortBy {
|
|
261
207
|
AFFECTED_INSTANCES = "AFFECTED_INSTANCES",
|
|
262
208
|
ALL = "ALL",
|
|
@@ -280,12 +226,6 @@ export interface AmiAggregation {
|
|
|
280
226
|
*/
|
|
281
227
|
sortBy?: AmiSortBy | string;
|
|
282
228
|
}
|
|
283
|
-
export declare namespace AmiAggregation {
|
|
284
|
-
/**
|
|
285
|
-
* @internal
|
|
286
|
-
*/
|
|
287
|
-
const filterSensitiveLog: (obj: AmiAggregation) => any;
|
|
288
|
-
}
|
|
289
229
|
export declare enum AwsEcrContainerSortBy {
|
|
290
230
|
ALL = "ALL",
|
|
291
231
|
CRITICAL = "CRITICAL",
|
|
@@ -324,12 +264,6 @@ export interface AwsEcrContainerAggregation {
|
|
|
324
264
|
*/
|
|
325
265
|
sortBy?: AwsEcrContainerSortBy | string;
|
|
326
266
|
}
|
|
327
|
-
export declare namespace AwsEcrContainerAggregation {
|
|
328
|
-
/**
|
|
329
|
-
* @internal
|
|
330
|
-
*/
|
|
331
|
-
const filterSensitiveLog: (obj: AwsEcrContainerAggregation) => any;
|
|
332
|
-
}
|
|
333
267
|
export declare enum MapComparison {
|
|
334
268
|
EQUALS = "EQUALS"
|
|
335
269
|
}
|
|
@@ -350,12 +284,6 @@ export interface MapFilter {
|
|
|
350
284
|
*/
|
|
351
285
|
value?: string;
|
|
352
286
|
}
|
|
353
|
-
export declare namespace MapFilter {
|
|
354
|
-
/**
|
|
355
|
-
* @internal
|
|
356
|
-
*/
|
|
357
|
-
const filterSensitiveLog: (obj: MapFilter) => any;
|
|
358
|
-
}
|
|
359
287
|
export declare enum Ec2InstanceSortBy {
|
|
360
288
|
ALL = "ALL",
|
|
361
289
|
CRITICAL = "CRITICAL",
|
|
@@ -393,12 +321,6 @@ export interface Ec2InstanceAggregation {
|
|
|
393
321
|
*/
|
|
394
322
|
sortBy?: Ec2InstanceSortBy | string;
|
|
395
323
|
}
|
|
396
|
-
export declare namespace Ec2InstanceAggregation {
|
|
397
|
-
/**
|
|
398
|
-
* @internal
|
|
399
|
-
*/
|
|
400
|
-
const filterSensitiveLog: (obj: Ec2InstanceAggregation) => any;
|
|
401
|
-
}
|
|
402
324
|
export declare enum FindingTypeSortBy {
|
|
403
325
|
ALL = "ALL",
|
|
404
326
|
CRITICAL = "CRITICAL",
|
|
@@ -425,12 +347,6 @@ export interface FindingTypeAggregation {
|
|
|
425
347
|
*/
|
|
426
348
|
sortBy?: FindingTypeSortBy | string;
|
|
427
349
|
}
|
|
428
|
-
export declare namespace FindingTypeAggregation {
|
|
429
|
-
/**
|
|
430
|
-
* @internal
|
|
431
|
-
*/
|
|
432
|
-
const filterSensitiveLog: (obj: FindingTypeAggregation) => any;
|
|
433
|
-
}
|
|
434
350
|
export declare enum ImageLayerSortBy {
|
|
435
351
|
ALL = "ALL",
|
|
436
352
|
CRITICAL = "CRITICAL",
|
|
@@ -461,12 +377,6 @@ export interface ImageLayerAggregation {
|
|
|
461
377
|
*/
|
|
462
378
|
sortBy?: ImageLayerSortBy | string;
|
|
463
379
|
}
|
|
464
|
-
export declare namespace ImageLayerAggregation {
|
|
465
|
-
/**
|
|
466
|
-
* @internal
|
|
467
|
-
*/
|
|
468
|
-
const filterSensitiveLog: (obj: ImageLayerAggregation) => any;
|
|
469
|
-
}
|
|
470
380
|
export declare enum PackageSortBy {
|
|
471
381
|
ALL = "ALL",
|
|
472
382
|
CRITICAL = "CRITICAL",
|
|
@@ -489,12 +399,6 @@ export interface PackageAggregation {
|
|
|
489
399
|
*/
|
|
490
400
|
sortBy?: PackageSortBy | string;
|
|
491
401
|
}
|
|
492
|
-
export declare namespace PackageAggregation {
|
|
493
|
-
/**
|
|
494
|
-
* @internal
|
|
495
|
-
*/
|
|
496
|
-
const filterSensitiveLog: (obj: PackageAggregation) => any;
|
|
497
|
-
}
|
|
498
402
|
export declare enum RepositorySortBy {
|
|
499
403
|
AFFECTED_IMAGES = "AFFECTED_IMAGES",
|
|
500
404
|
ALL = "ALL",
|
|
@@ -518,12 +422,6 @@ export interface RepositoryAggregation {
|
|
|
518
422
|
*/
|
|
519
423
|
sortBy?: RepositorySortBy | string;
|
|
520
424
|
}
|
|
521
|
-
export declare namespace RepositoryAggregation {
|
|
522
|
-
/**
|
|
523
|
-
* @internal
|
|
524
|
-
*/
|
|
525
|
-
const filterSensitiveLog: (obj: RepositoryAggregation) => any;
|
|
526
|
-
}
|
|
527
425
|
export declare enum TitleSortBy {
|
|
528
426
|
ALL = "ALL",
|
|
529
427
|
CRITICAL = "CRITICAL",
|
|
@@ -554,12 +452,6 @@ export interface TitleAggregation {
|
|
|
554
452
|
*/
|
|
555
453
|
sortBy?: TitleSortBy | string;
|
|
556
454
|
}
|
|
557
|
-
export declare namespace TitleAggregation {
|
|
558
|
-
/**
|
|
559
|
-
* @internal
|
|
560
|
-
*/
|
|
561
|
-
const filterSensitiveLog: (obj: TitleAggregation) => any;
|
|
562
|
-
}
|
|
563
455
|
/**
|
|
564
456
|
* <p>Contains details about an aggregation request.</p>
|
|
565
457
|
*/
|
|
@@ -731,10 +623,6 @@ export declare namespace AggregationRequest {
|
|
|
731
623
|
_: (name: string, value: any) => T;
|
|
732
624
|
}
|
|
733
625
|
const visit: <T>(value: AggregationRequest, visitor: Visitor<T>) => T;
|
|
734
|
-
/**
|
|
735
|
-
* @internal
|
|
736
|
-
*/
|
|
737
|
-
const filterSensitiveLog: (obj: AggregationRequest) => any;
|
|
738
626
|
}
|
|
739
627
|
/**
|
|
740
628
|
* <p>A response that contains the results of a finding aggregation by AMI.</p>
|
|
@@ -757,12 +645,6 @@ export interface AmiAggregationResponse {
|
|
|
757
645
|
*/
|
|
758
646
|
affectedInstances?: number;
|
|
759
647
|
}
|
|
760
|
-
export declare namespace AmiAggregationResponse {
|
|
761
|
-
/**
|
|
762
|
-
* @internal
|
|
763
|
-
*/
|
|
764
|
-
const filterSensitiveLog: (obj: AmiAggregationResponse) => any;
|
|
765
|
-
}
|
|
766
648
|
/**
|
|
767
649
|
* <p>An aggregation of information about Amazon ECR containers.</p>
|
|
768
650
|
*/
|
|
@@ -796,12 +678,6 @@ export interface AwsEcrContainerAggregationResponse {
|
|
|
796
678
|
*/
|
|
797
679
|
severityCounts?: SeverityCounts;
|
|
798
680
|
}
|
|
799
|
-
export declare namespace AwsEcrContainerAggregationResponse {
|
|
800
|
-
/**
|
|
801
|
-
* @internal
|
|
802
|
-
*/
|
|
803
|
-
const filterSensitiveLog: (obj: AwsEcrContainerAggregationResponse) => any;
|
|
804
|
-
}
|
|
805
681
|
/**
|
|
806
682
|
* <p>A response that contains the results of a finding aggregation by Amazon EC2 instance.</p>
|
|
807
683
|
*/
|
|
@@ -835,12 +711,6 @@ export interface Ec2InstanceAggregationResponse {
|
|
|
835
711
|
*/
|
|
836
712
|
networkFindings?: number;
|
|
837
713
|
}
|
|
838
|
-
export declare namespace Ec2InstanceAggregationResponse {
|
|
839
|
-
/**
|
|
840
|
-
* @internal
|
|
841
|
-
*/
|
|
842
|
-
const filterSensitiveLog: (obj: Ec2InstanceAggregationResponse) => any;
|
|
843
|
-
}
|
|
844
714
|
/**
|
|
845
715
|
* <p>A response that contains the results of a finding type aggregation.</p>
|
|
846
716
|
*/
|
|
@@ -854,12 +724,6 @@ export interface FindingTypeAggregationResponse {
|
|
|
854
724
|
*/
|
|
855
725
|
severityCounts?: SeverityCounts;
|
|
856
726
|
}
|
|
857
|
-
export declare namespace FindingTypeAggregationResponse {
|
|
858
|
-
/**
|
|
859
|
-
* @internal
|
|
860
|
-
*/
|
|
861
|
-
const filterSensitiveLog: (obj: FindingTypeAggregationResponse) => any;
|
|
862
|
-
}
|
|
863
727
|
/**
|
|
864
728
|
* <p>A response that contains the results of a finding aggregation by image layer.</p>
|
|
865
729
|
*/
|
|
@@ -885,12 +749,6 @@ export interface ImageLayerAggregationResponse {
|
|
|
885
749
|
*/
|
|
886
750
|
severityCounts?: SeverityCounts;
|
|
887
751
|
}
|
|
888
|
-
export declare namespace ImageLayerAggregationResponse {
|
|
889
|
-
/**
|
|
890
|
-
* @internal
|
|
891
|
-
*/
|
|
892
|
-
const filterSensitiveLog: (obj: ImageLayerAggregationResponse) => any;
|
|
893
|
-
}
|
|
894
752
|
/**
|
|
895
753
|
* <p>A response that contains the results of a finding aggregation by image layer.</p>
|
|
896
754
|
*/
|
|
@@ -908,12 +766,6 @@ export interface PackageAggregationResponse {
|
|
|
908
766
|
*/
|
|
909
767
|
severityCounts?: SeverityCounts;
|
|
910
768
|
}
|
|
911
|
-
export declare namespace PackageAggregationResponse {
|
|
912
|
-
/**
|
|
913
|
-
* @internal
|
|
914
|
-
*/
|
|
915
|
-
const filterSensitiveLog: (obj: PackageAggregationResponse) => any;
|
|
916
|
-
}
|
|
917
769
|
/**
|
|
918
770
|
* <p>A response that contains details on the results of a finding aggregation by repository.</p>
|
|
919
771
|
*/
|
|
@@ -935,12 +787,6 @@ export interface RepositoryAggregationResponse {
|
|
|
935
787
|
*/
|
|
936
788
|
affectedImages?: number;
|
|
937
789
|
}
|
|
938
|
-
export declare namespace RepositoryAggregationResponse {
|
|
939
|
-
/**
|
|
940
|
-
* @internal
|
|
941
|
-
*/
|
|
942
|
-
const filterSensitiveLog: (obj: RepositoryAggregationResponse) => any;
|
|
943
|
-
}
|
|
944
790
|
/**
|
|
945
791
|
* <p>A response that contains details on the results of a finding aggregation by title.</p>
|
|
946
792
|
*/
|
|
@@ -962,12 +808,6 @@ export interface TitleAggregationResponse {
|
|
|
962
808
|
*/
|
|
963
809
|
severityCounts?: SeverityCounts;
|
|
964
810
|
}
|
|
965
|
-
export declare namespace TitleAggregationResponse {
|
|
966
|
-
/**
|
|
967
|
-
* @internal
|
|
968
|
-
*/
|
|
969
|
-
const filterSensitiveLog: (obj: TitleAggregationResponse) => any;
|
|
970
|
-
}
|
|
971
811
|
/**
|
|
972
812
|
* <p>A structure that contains details about the results of an aggregation type.</p>
|
|
973
813
|
*/
|
|
@@ -1140,10 +980,6 @@ export declare namespace AggregationResponse {
|
|
|
1140
980
|
_: (name: string, value: any) => T;
|
|
1141
981
|
}
|
|
1142
982
|
const visit: <T>(value: AggregationResponse, visitor: Visitor<T>) => T;
|
|
1143
|
-
/**
|
|
1144
|
-
* @internal
|
|
1145
|
-
*/
|
|
1146
|
-
const filterSensitiveLog: (obj: AggregationResponse) => any;
|
|
1147
983
|
}
|
|
1148
984
|
export declare enum AggregationType {
|
|
1149
985
|
ACCOUNT = "ACCOUNT",
|
|
@@ -1162,24 +998,12 @@ export interface AssociateMemberRequest {
|
|
|
1162
998
|
*/
|
|
1163
999
|
accountId: string | undefined;
|
|
1164
1000
|
}
|
|
1165
|
-
export declare namespace AssociateMemberRequest {
|
|
1166
|
-
/**
|
|
1167
|
-
* @internal
|
|
1168
|
-
*/
|
|
1169
|
-
const filterSensitiveLog: (obj: AssociateMemberRequest) => any;
|
|
1170
|
-
}
|
|
1171
1001
|
export interface AssociateMemberResponse {
|
|
1172
1002
|
/**
|
|
1173
1003
|
* <p>The Amazon Web Services account ID of the successfully associated member account.</p>
|
|
1174
1004
|
*/
|
|
1175
1005
|
accountId: string | undefined;
|
|
1176
1006
|
}
|
|
1177
|
-
export declare namespace AssociateMemberResponse {
|
|
1178
|
-
/**
|
|
1179
|
-
* @internal
|
|
1180
|
-
*/
|
|
1181
|
-
const filterSensitiveLog: (obj: AssociateMemberResponse) => any;
|
|
1182
|
-
}
|
|
1183
1007
|
/**
|
|
1184
1008
|
* <p>The request has failed due to an internal failure of the Amazon Inspector service.</p>
|
|
1185
1009
|
*/
|
|
@@ -1220,12 +1044,6 @@ export interface ValidationExceptionField {
|
|
|
1220
1044
|
*/
|
|
1221
1045
|
message: string | undefined;
|
|
1222
1046
|
}
|
|
1223
|
-
export declare namespace ValidationExceptionField {
|
|
1224
|
-
/**
|
|
1225
|
-
* @internal
|
|
1226
|
-
*/
|
|
1227
|
-
const filterSensitiveLog: (obj: ValidationExceptionField) => any;
|
|
1228
|
-
}
|
|
1229
1047
|
export declare enum ValidationExceptionReason {
|
|
1230
1048
|
CANNOT_PARSE = "CANNOT_PARSE",
|
|
1231
1049
|
FIELD_VALIDATION_FAILED = "FIELD_VALIDATION_FAILED",
|
|
@@ -1266,12 +1084,6 @@ export interface AutoEnable {
|
|
|
1266
1084
|
*/
|
|
1267
1085
|
ecr: boolean | undefined;
|
|
1268
1086
|
}
|
|
1269
|
-
export declare namespace AutoEnable {
|
|
1270
|
-
/**
|
|
1271
|
-
* @internal
|
|
1272
|
-
*/
|
|
1273
|
-
const filterSensitiveLog: (obj: AutoEnable) => any;
|
|
1274
|
-
}
|
|
1275
1087
|
/**
|
|
1276
1088
|
* <p>Details of the Amazon EC2 instance involved in a finding.</p>
|
|
1277
1089
|
*/
|
|
@@ -1317,12 +1129,6 @@ export interface AwsEc2InstanceDetails {
|
|
|
1317
1129
|
*/
|
|
1318
1130
|
platform?: string;
|
|
1319
1131
|
}
|
|
1320
|
-
export declare namespace AwsEc2InstanceDetails {
|
|
1321
|
-
/**
|
|
1322
|
-
* @internal
|
|
1323
|
-
*/
|
|
1324
|
-
const filterSensitiveLog: (obj: AwsEc2InstanceDetails) => any;
|
|
1325
|
-
}
|
|
1326
1132
|
/**
|
|
1327
1133
|
* <p>The image details of the Amazon ECR container image.</p>
|
|
1328
1134
|
*/
|
|
@@ -1360,12 +1166,6 @@ export interface AwsEcrContainerImageDetails {
|
|
|
1360
1166
|
*/
|
|
1361
1167
|
platform?: string;
|
|
1362
1168
|
}
|
|
1363
|
-
export declare namespace AwsEcrContainerImageDetails {
|
|
1364
|
-
/**
|
|
1365
|
-
* @internal
|
|
1366
|
-
*/
|
|
1367
|
-
const filterSensitiveLog: (obj: AwsEcrContainerImageDetails) => any;
|
|
1368
|
-
}
|
|
1369
1169
|
/**
|
|
1370
1170
|
* <p>One or more tags submitted as part of the request is not valid.</p>
|
|
1371
1171
|
*/
|
|
@@ -1383,12 +1183,6 @@ export interface BatchGetAccountStatusRequest {
|
|
|
1383
1183
|
*/
|
|
1384
1184
|
accountIds?: string[];
|
|
1385
1185
|
}
|
|
1386
|
-
export declare namespace BatchGetAccountStatusRequest {
|
|
1387
|
-
/**
|
|
1388
|
-
* @internal
|
|
1389
|
-
*/
|
|
1390
|
-
const filterSensitiveLog: (obj: BatchGetAccountStatusRequest) => any;
|
|
1391
|
-
}
|
|
1392
1186
|
/**
|
|
1393
1187
|
* <p>An object with details on why an account failed to enable Amazon Inspector.</p>
|
|
1394
1188
|
*/
|
|
@@ -1414,12 +1208,6 @@ export interface FailedAccount {
|
|
|
1414
1208
|
*/
|
|
1415
1209
|
errorMessage: string | undefined;
|
|
1416
1210
|
}
|
|
1417
|
-
export declare namespace FailedAccount {
|
|
1418
|
-
/**
|
|
1419
|
-
* @internal
|
|
1420
|
-
*/
|
|
1421
|
-
const filterSensitiveLog: (obj: FailedAccount) => any;
|
|
1422
|
-
}
|
|
1423
1211
|
export interface BatchGetAccountStatusResponse {
|
|
1424
1212
|
/**
|
|
1425
1213
|
* <p>An array of objects that provide details on the status of Amazon Inspector for each of the requested accounts.</p>
|
|
@@ -1430,12 +1218,6 @@ export interface BatchGetAccountStatusResponse {
|
|
|
1430
1218
|
*/
|
|
1431
1219
|
failedAccounts?: FailedAccount[];
|
|
1432
1220
|
}
|
|
1433
|
-
export declare namespace BatchGetAccountStatusResponse {
|
|
1434
|
-
/**
|
|
1435
|
-
* @internal
|
|
1436
|
-
*/
|
|
1437
|
-
const filterSensitiveLog: (obj: BatchGetAccountStatusResponse) => any;
|
|
1438
|
-
}
|
|
1439
1221
|
/**
|
|
1440
1222
|
* <p>The operation tried to access an invalid resource. Make sure the resource is specified correctly.</p>
|
|
1441
1223
|
*/
|
|
@@ -1453,12 +1235,6 @@ export interface BatchGetFreeTrialInfoRequest {
|
|
|
1453
1235
|
*/
|
|
1454
1236
|
accountIds: string[] | undefined;
|
|
1455
1237
|
}
|
|
1456
|
-
export declare namespace BatchGetFreeTrialInfoRequest {
|
|
1457
|
-
/**
|
|
1458
|
-
* @internal
|
|
1459
|
-
*/
|
|
1460
|
-
const filterSensitiveLog: (obj: BatchGetFreeTrialInfoRequest) => any;
|
|
1461
|
-
}
|
|
1462
1238
|
export declare enum FreeTrialStatus {
|
|
1463
1239
|
ACTIVE = "ACTIVE",
|
|
1464
1240
|
INACTIVE = "INACTIVE"
|
|
@@ -1488,12 +1264,6 @@ export interface FreeTrialInfo {
|
|
|
1488
1264
|
*/
|
|
1489
1265
|
status: FreeTrialStatus | string | undefined;
|
|
1490
1266
|
}
|
|
1491
|
-
export declare namespace FreeTrialInfo {
|
|
1492
|
-
/**
|
|
1493
|
-
* @internal
|
|
1494
|
-
*/
|
|
1495
|
-
const filterSensitiveLog: (obj: FreeTrialInfo) => any;
|
|
1496
|
-
}
|
|
1497
1267
|
/**
|
|
1498
1268
|
* <p>Information about the Amazon Inspector free trial for an account.</p>
|
|
1499
1269
|
*/
|
|
@@ -1507,12 +1277,6 @@ export interface FreeTrialAccountInfo {
|
|
|
1507
1277
|
*/
|
|
1508
1278
|
freeTrialInfo: FreeTrialInfo[] | undefined;
|
|
1509
1279
|
}
|
|
1510
|
-
export declare namespace FreeTrialAccountInfo {
|
|
1511
|
-
/**
|
|
1512
|
-
* @internal
|
|
1513
|
-
*/
|
|
1514
|
-
const filterSensitiveLog: (obj: FreeTrialAccountInfo) => any;
|
|
1515
|
-
}
|
|
1516
1280
|
export declare enum FreeTrialInfoErrorCode {
|
|
1517
1281
|
ACCESS_DENIED = "ACCESS_DENIED",
|
|
1518
1282
|
INTERNAL_ERROR = "INTERNAL_ERROR"
|
|
@@ -1534,12 +1298,6 @@ export interface FreeTrialInfoError {
|
|
|
1534
1298
|
*/
|
|
1535
1299
|
message: string | undefined;
|
|
1536
1300
|
}
|
|
1537
|
-
export declare namespace FreeTrialInfoError {
|
|
1538
|
-
/**
|
|
1539
|
-
* @internal
|
|
1540
|
-
*/
|
|
1541
|
-
const filterSensitiveLog: (obj: FreeTrialInfoError) => any;
|
|
1542
|
-
}
|
|
1543
1301
|
export interface BatchGetFreeTrialInfoResponse {
|
|
1544
1302
|
/**
|
|
1545
1303
|
* <p>An array of objects that provide Amazon Inspector free trial details for each of the requested accounts.
|
|
@@ -1551,36 +1309,18 @@ export interface BatchGetFreeTrialInfoResponse {
|
|
|
1551
1309
|
*/
|
|
1552
1310
|
failedAccounts: FreeTrialInfoError[] | undefined;
|
|
1553
1311
|
}
|
|
1554
|
-
export declare namespace BatchGetFreeTrialInfoResponse {
|
|
1555
|
-
/**
|
|
1556
|
-
* @internal
|
|
1557
|
-
*/
|
|
1558
|
-
const filterSensitiveLog: (obj: BatchGetFreeTrialInfoResponse) => any;
|
|
1559
|
-
}
|
|
1560
1312
|
export interface CancelFindingsReportRequest {
|
|
1561
1313
|
/**
|
|
1562
1314
|
* <p>The ID of the report to be canceled.</p>
|
|
1563
1315
|
*/
|
|
1564
1316
|
reportId: string | undefined;
|
|
1565
1317
|
}
|
|
1566
|
-
export declare namespace CancelFindingsReportRequest {
|
|
1567
|
-
/**
|
|
1568
|
-
* @internal
|
|
1569
|
-
*/
|
|
1570
|
-
const filterSensitiveLog: (obj: CancelFindingsReportRequest) => any;
|
|
1571
|
-
}
|
|
1572
1318
|
export interface CancelFindingsReportResponse {
|
|
1573
1319
|
/**
|
|
1574
1320
|
* <p>The ID of the canceled report.</p>
|
|
1575
1321
|
*/
|
|
1576
1322
|
reportId: string | undefined;
|
|
1577
1323
|
}
|
|
1578
|
-
export declare namespace CancelFindingsReportResponse {
|
|
1579
|
-
/**
|
|
1580
|
-
* @internal
|
|
1581
|
-
*/
|
|
1582
|
-
const filterSensitiveLog: (obj: CancelFindingsReportResponse) => any;
|
|
1583
|
-
}
|
|
1584
1324
|
/**
|
|
1585
1325
|
* <p>A conflict occurred.</p>
|
|
1586
1326
|
*/
|
|
@@ -1620,12 +1360,6 @@ export interface Counts {
|
|
|
1620
1360
|
*/
|
|
1621
1361
|
groupKey?: GroupKey | string;
|
|
1622
1362
|
}
|
|
1623
|
-
export declare namespace Counts {
|
|
1624
|
-
/**
|
|
1625
|
-
* @internal
|
|
1626
|
-
*/
|
|
1627
|
-
const filterSensitiveLog: (obj: Counts) => any;
|
|
1628
|
-
}
|
|
1629
1363
|
export declare enum CoverageStringComparison {
|
|
1630
1364
|
EQUALS = "EQUALS",
|
|
1631
1365
|
NOT_EQUALS = "NOT_EQUALS"
|
|
@@ -1643,12 +1377,6 @@ export interface CoverageStringFilter {
|
|
|
1643
1377
|
*/
|
|
1644
1378
|
value: string | undefined;
|
|
1645
1379
|
}
|
|
1646
|
-
export declare namespace CoverageStringFilter {
|
|
1647
|
-
/**
|
|
1648
|
-
* @internal
|
|
1649
|
-
*/
|
|
1650
|
-
const filterSensitiveLog: (obj: CoverageStringFilter) => any;
|
|
1651
|
-
}
|
|
1652
1380
|
export declare enum CoverageMapComparison {
|
|
1653
1381
|
EQUALS = "EQUALS"
|
|
1654
1382
|
}
|
|
@@ -1669,12 +1397,6 @@ export interface CoverageMapFilter {
|
|
|
1669
1397
|
*/
|
|
1670
1398
|
value?: string;
|
|
1671
1399
|
}
|
|
1672
|
-
export declare namespace CoverageMapFilter {
|
|
1673
|
-
/**
|
|
1674
|
-
* @internal
|
|
1675
|
-
*/
|
|
1676
|
-
const filterSensitiveLog: (obj: CoverageMapFilter) => any;
|
|
1677
|
-
}
|
|
1678
1400
|
/**
|
|
1679
1401
|
* <p>A structure that identifies filter criteria for <code>GetCoverageStatistics</code>.</p>
|
|
1680
1402
|
*/
|
|
@@ -1716,12 +1438,6 @@ export interface CoverageFilterCriteria {
|
|
|
1716
1438
|
*/
|
|
1717
1439
|
ec2InstanceTags?: CoverageMapFilter[];
|
|
1718
1440
|
}
|
|
1719
|
-
export declare namespace CoverageFilterCriteria {
|
|
1720
|
-
/**
|
|
1721
|
-
* @internal
|
|
1722
|
-
*/
|
|
1723
|
-
const filterSensitiveLog: (obj: CoverageFilterCriteria) => any;
|
|
1724
|
-
}
|
|
1725
1441
|
export declare enum CoverageResourceType {
|
|
1726
1442
|
AWS_EC2_INSTANCE = "AWS_EC2_INSTANCE",
|
|
1727
1443
|
AWS_ECR_CONTAINER_IMAGE = "AWS_ECR_CONTAINER_IMAGE",
|
|
@@ -1749,12 +1465,6 @@ export interface Ec2Metadata {
|
|
|
1749
1465
|
*/
|
|
1750
1466
|
platform?: Ec2Platform | string;
|
|
1751
1467
|
}
|
|
1752
|
-
export declare namespace Ec2Metadata {
|
|
1753
|
-
/**
|
|
1754
|
-
* @internal
|
|
1755
|
-
*/
|
|
1756
|
-
const filterSensitiveLog: (obj: Ec2Metadata) => any;
|
|
1757
|
-
}
|
|
1758
1468
|
/**
|
|
1759
1469
|
* <p>Information on the Amazon ECR image metadata associated with a finding.</p>
|
|
1760
1470
|
*/
|
|
@@ -1764,12 +1474,6 @@ export interface EcrContainerImageMetadata {
|
|
|
1764
1474
|
*/
|
|
1765
1475
|
tags?: string[];
|
|
1766
1476
|
}
|
|
1767
|
-
export declare namespace EcrContainerImageMetadata {
|
|
1768
|
-
/**
|
|
1769
|
-
* @internal
|
|
1770
|
-
*/
|
|
1771
|
-
const filterSensitiveLog: (obj: EcrContainerImageMetadata) => any;
|
|
1772
|
-
}
|
|
1773
1477
|
export declare enum EcrScanFrequency {
|
|
1774
1478
|
CONTINUOUS_SCAN = "CONTINUOUS_SCAN",
|
|
1775
1479
|
MANUAL = "MANUAL",
|
|
@@ -1788,12 +1492,6 @@ export interface EcrRepositoryMetadata {
|
|
|
1788
1492
|
*/
|
|
1789
1493
|
scanFrequency?: EcrScanFrequency | string;
|
|
1790
1494
|
}
|
|
1791
|
-
export declare namespace EcrRepositoryMetadata {
|
|
1792
|
-
/**
|
|
1793
|
-
* @internal
|
|
1794
|
-
*/
|
|
1795
|
-
const filterSensitiveLog: (obj: EcrRepositoryMetadata) => any;
|
|
1796
|
-
}
|
|
1797
1495
|
/**
|
|
1798
1496
|
* <p>An object that contains details about the metadata for an Amazon ECR resource.</p>
|
|
1799
1497
|
*/
|
|
@@ -1811,12 +1509,6 @@ export interface ResourceScanMetadata {
|
|
|
1811
1509
|
*/
|
|
1812
1510
|
ec2?: Ec2Metadata;
|
|
1813
1511
|
}
|
|
1814
|
-
export declare namespace ResourceScanMetadata {
|
|
1815
|
-
/**
|
|
1816
|
-
* @internal
|
|
1817
|
-
*/
|
|
1818
|
-
const filterSensitiveLog: (obj: ResourceScanMetadata) => any;
|
|
1819
|
-
}
|
|
1820
1512
|
export declare enum ScanStatusReason {
|
|
1821
1513
|
ACCESS_DENIED = "ACCESS_DENIED",
|
|
1822
1514
|
EC2_INSTANCE_STOPPED = "EC2_INSTANCE_STOPPED",
|
|
@@ -1850,12 +1542,6 @@ export interface ScanStatus {
|
|
|
1850
1542
|
*/
|
|
1851
1543
|
reason: ScanStatusReason | string | undefined;
|
|
1852
1544
|
}
|
|
1853
|
-
export declare namespace ScanStatus {
|
|
1854
|
-
/**
|
|
1855
|
-
* @internal
|
|
1856
|
-
*/
|
|
1857
|
-
const filterSensitiveLog: (obj: ScanStatus) => any;
|
|
1858
|
-
}
|
|
1859
1545
|
export declare enum ScanType {
|
|
1860
1546
|
NETWORK = "NETWORK",
|
|
1861
1547
|
PACKAGE = "PACKAGE"
|
|
@@ -1889,12 +1575,6 @@ export interface CoveredResource {
|
|
|
1889
1575
|
*/
|
|
1890
1576
|
resourceMetadata?: ResourceScanMetadata;
|
|
1891
1577
|
}
|
|
1892
|
-
export declare namespace CoveredResource {
|
|
1893
|
-
/**
|
|
1894
|
-
* @internal
|
|
1895
|
-
*/
|
|
1896
|
-
const filterSensitiveLog: (obj: CoveredResource) => any;
|
|
1897
|
-
}
|
|
1898
1578
|
export declare enum FilterAction {
|
|
1899
1579
|
NONE = "NONE",
|
|
1900
1580
|
SUPPRESS = "SUPPRESS"
|
|
@@ -1912,12 +1592,6 @@ export interface DateFilter {
|
|
|
1912
1592
|
*/
|
|
1913
1593
|
endInclusive?: Date;
|
|
1914
1594
|
}
|
|
1915
|
-
export declare namespace DateFilter {
|
|
1916
|
-
/**
|
|
1917
|
-
* @internal
|
|
1918
|
-
*/
|
|
1919
|
-
const filterSensitiveLog: (obj: DateFilter) => any;
|
|
1920
|
-
}
|
|
1921
1595
|
/**
|
|
1922
1596
|
* <p>An object that describes the details of a number filter.</p>
|
|
1923
1597
|
*/
|
|
@@ -1931,12 +1605,6 @@ export interface NumberFilter {
|
|
|
1931
1605
|
*/
|
|
1932
1606
|
lowerInclusive?: number;
|
|
1933
1607
|
}
|
|
1934
|
-
export declare namespace NumberFilter {
|
|
1935
|
-
/**
|
|
1936
|
-
* @internal
|
|
1937
|
-
*/
|
|
1938
|
-
const filterSensitiveLog: (obj: NumberFilter) => any;
|
|
1939
|
-
}
|
|
1940
1608
|
/**
|
|
1941
1609
|
* <p>An object that describes the details of a port range filter.</p>
|
|
1942
1610
|
*/
|
|
@@ -1950,12 +1618,6 @@ export interface PortRangeFilter {
|
|
|
1950
1618
|
*/
|
|
1951
1619
|
endInclusive?: number;
|
|
1952
1620
|
}
|
|
1953
|
-
export declare namespace PortRangeFilter {
|
|
1954
|
-
/**
|
|
1955
|
-
* @internal
|
|
1956
|
-
*/
|
|
1957
|
-
const filterSensitiveLog: (obj: PortRangeFilter) => any;
|
|
1958
|
-
}
|
|
1959
1621
|
/**
|
|
1960
1622
|
* <p>Contains information on the details of a package filter.</p>
|
|
1961
1623
|
*/
|
|
@@ -1985,12 +1647,6 @@ export interface PackageFilter {
|
|
|
1985
1647
|
*/
|
|
1986
1648
|
sourceLayerHash?: StringFilter;
|
|
1987
1649
|
}
|
|
1988
|
-
export declare namespace PackageFilter {
|
|
1989
|
-
/**
|
|
1990
|
-
* @internal
|
|
1991
|
-
*/
|
|
1992
|
-
const filterSensitiveLog: (obj: PackageFilter) => any;
|
|
1993
|
-
}
|
|
1994
1650
|
/**
|
|
1995
1651
|
* <p>Details on the criteria used to define the filter.</p>
|
|
1996
1652
|
*/
|
|
@@ -2120,12 +1776,6 @@ export interface FilterCriteria {
|
|
|
2120
1776
|
*/
|
|
2121
1777
|
relatedVulnerabilities?: StringFilter[];
|
|
2122
1778
|
}
|
|
2123
|
-
export declare namespace FilterCriteria {
|
|
2124
|
-
/**
|
|
2125
|
-
* @internal
|
|
2126
|
-
*/
|
|
2127
|
-
const filterSensitiveLog: (obj: FilterCriteria) => any;
|
|
2128
|
-
}
|
|
2129
1779
|
export interface CreateFilterRequest {
|
|
2130
1780
|
/**
|
|
2131
1781
|
* <p>Defines the action that is to be applied to the findings that match the filter.</p>
|
|
@@ -2154,24 +1804,12 @@ export interface CreateFilterRequest {
|
|
|
2154
1804
|
*/
|
|
2155
1805
|
reason?: string;
|
|
2156
1806
|
}
|
|
2157
|
-
export declare namespace CreateFilterRequest {
|
|
2158
|
-
/**
|
|
2159
|
-
* @internal
|
|
2160
|
-
*/
|
|
2161
|
-
const filterSensitiveLog: (obj: CreateFilterRequest) => any;
|
|
2162
|
-
}
|
|
2163
1807
|
export interface CreateFilterResponse {
|
|
2164
1808
|
/**
|
|
2165
1809
|
* <p>The Amazon Resource Number (ARN) of the successfully created filter.</p>
|
|
2166
1810
|
*/
|
|
2167
1811
|
arn: string | undefined;
|
|
2168
1812
|
}
|
|
2169
|
-
export declare namespace CreateFilterResponse {
|
|
2170
|
-
/**
|
|
2171
|
-
* @internal
|
|
2172
|
-
*/
|
|
2173
|
-
const filterSensitiveLog: (obj: CreateFilterResponse) => any;
|
|
2174
|
-
}
|
|
2175
1813
|
/**
|
|
2176
1814
|
* <p>You have exceeded your service quota. To perform the requested action, remove some of
|
|
2177
1815
|
* the relevant resources, or use Service Quotas to request a service quota increase.</p>
|
|
@@ -2209,12 +1847,6 @@ export interface Destination {
|
|
|
2209
1847
|
*/
|
|
2210
1848
|
kmsKeyArn: string | undefined;
|
|
2211
1849
|
}
|
|
2212
|
-
export declare namespace Destination {
|
|
2213
|
-
/**
|
|
2214
|
-
* @internal
|
|
2215
|
-
*/
|
|
2216
|
-
const filterSensitiveLog: (obj: Destination) => any;
|
|
2217
|
-
}
|
|
2218
1850
|
export interface CreateFindingsReportRequest {
|
|
2219
1851
|
/**
|
|
2220
1852
|
* <p>The filter criteria to apply to the results of the finding report.</p>
|
|
@@ -2229,24 +1861,12 @@ export interface CreateFindingsReportRequest {
|
|
|
2229
1861
|
*/
|
|
2230
1862
|
s3Destination: Destination | undefined;
|
|
2231
1863
|
}
|
|
2232
|
-
export declare namespace CreateFindingsReportRequest {
|
|
2233
|
-
/**
|
|
2234
|
-
* @internal
|
|
2235
|
-
*/
|
|
2236
|
-
const filterSensitiveLog: (obj: CreateFindingsReportRequest) => any;
|
|
2237
|
-
}
|
|
2238
1864
|
export interface CreateFindingsReportResponse {
|
|
2239
1865
|
/**
|
|
2240
1866
|
* <p>The ID of the report.</p>
|
|
2241
1867
|
*/
|
|
2242
1868
|
reportId?: string;
|
|
2243
1869
|
}
|
|
2244
|
-
export declare namespace CreateFindingsReportResponse {
|
|
2245
|
-
/**
|
|
2246
|
-
* @internal
|
|
2247
|
-
*/
|
|
2248
|
-
const filterSensitiveLog: (obj: CreateFindingsReportResponse) => any;
|
|
2249
|
-
}
|
|
2250
1870
|
export declare enum Currency {
|
|
2251
1871
|
USD = "USD"
|
|
2252
1872
|
}
|
|
@@ -2271,12 +1891,6 @@ export interface CvssScore {
|
|
|
2271
1891
|
*/
|
|
2272
1892
|
source: string | undefined;
|
|
2273
1893
|
}
|
|
2274
|
-
export declare namespace CvssScore {
|
|
2275
|
-
/**
|
|
2276
|
-
* @internal
|
|
2277
|
-
*/
|
|
2278
|
-
const filterSensitiveLog: (obj: CvssScore) => any;
|
|
2279
|
-
}
|
|
2280
1894
|
/**
|
|
2281
1895
|
* <p>Details on adjustments Amazon Inspector made to the CVSS score for a finding.</p>
|
|
2282
1896
|
*/
|
|
@@ -2290,12 +1904,6 @@ export interface CvssScoreAdjustment {
|
|
|
2290
1904
|
*/
|
|
2291
1905
|
reason: string | undefined;
|
|
2292
1906
|
}
|
|
2293
|
-
export declare namespace CvssScoreAdjustment {
|
|
2294
|
-
/**
|
|
2295
|
-
* @internal
|
|
2296
|
-
*/
|
|
2297
|
-
const filterSensitiveLog: (obj: CvssScoreAdjustment) => any;
|
|
2298
|
-
}
|
|
2299
1907
|
/**
|
|
2300
1908
|
* <p>Information about the CVSS score.</p>
|
|
2301
1909
|
*/
|
|
@@ -2325,12 +1933,6 @@ export interface CvssScoreDetails {
|
|
|
2325
1933
|
*/
|
|
2326
1934
|
adjustments?: CvssScoreAdjustment[];
|
|
2327
1935
|
}
|
|
2328
|
-
export declare namespace CvssScoreDetails {
|
|
2329
|
-
/**
|
|
2330
|
-
* @internal
|
|
2331
|
-
*/
|
|
2332
|
-
const filterSensitiveLog: (obj: CvssScoreDetails) => any;
|
|
2333
|
-
}
|
|
2334
1936
|
export declare enum RelationshipStatus {
|
|
2335
1937
|
ACCOUNT_SUSPENDED = "ACCOUNT_SUSPENDED",
|
|
2336
1938
|
CANNOT_CREATE_DETECTOR_IN_ORG_MASTER = "CANNOT_CREATE_DETECTOR_IN_ORG_MASTER",
|
|
@@ -2358,12 +1960,6 @@ export interface DelegatedAdmin {
|
|
|
2358
1960
|
*/
|
|
2359
1961
|
relationshipStatus?: RelationshipStatus | string;
|
|
2360
1962
|
}
|
|
2361
|
-
export declare namespace DelegatedAdmin {
|
|
2362
|
-
/**
|
|
2363
|
-
* @internal
|
|
2364
|
-
*/
|
|
2365
|
-
const filterSensitiveLog: (obj: DelegatedAdmin) => any;
|
|
2366
|
-
}
|
|
2367
1963
|
export declare enum DelegatedAdminStatus {
|
|
2368
1964
|
DISABLE_IN_PROGRESS = "DISABLE_IN_PROGRESS",
|
|
2369
1965
|
ENABLED = "ENABLED"
|
|
@@ -2381,44 +1977,20 @@ export interface DelegatedAdminAccount {
|
|
|
2381
1977
|
*/
|
|
2382
1978
|
status?: DelegatedAdminStatus | string;
|
|
2383
1979
|
}
|
|
2384
|
-
export declare namespace DelegatedAdminAccount {
|
|
2385
|
-
/**
|
|
2386
|
-
* @internal
|
|
2387
|
-
*/
|
|
2388
|
-
const filterSensitiveLog: (obj: DelegatedAdminAccount) => any;
|
|
2389
|
-
}
|
|
2390
1980
|
export interface DeleteFilterRequest {
|
|
2391
1981
|
/**
|
|
2392
1982
|
* <p>The Amazon Resource Number (ARN) of the filter to be deleted.</p>
|
|
2393
1983
|
*/
|
|
2394
1984
|
arn: string | undefined;
|
|
2395
1985
|
}
|
|
2396
|
-
export declare namespace DeleteFilterRequest {
|
|
2397
|
-
/**
|
|
2398
|
-
* @internal
|
|
2399
|
-
*/
|
|
2400
|
-
const filterSensitiveLog: (obj: DeleteFilterRequest) => any;
|
|
2401
|
-
}
|
|
2402
1986
|
export interface DeleteFilterResponse {
|
|
2403
1987
|
/**
|
|
2404
1988
|
* <p>The Amazon Resource Number (ARN) of the filter that has been deleted.</p>
|
|
2405
1989
|
*/
|
|
2406
1990
|
arn: string | undefined;
|
|
2407
1991
|
}
|
|
2408
|
-
export declare namespace DeleteFilterResponse {
|
|
2409
|
-
/**
|
|
2410
|
-
* @internal
|
|
2411
|
-
*/
|
|
2412
|
-
const filterSensitiveLog: (obj: DeleteFilterResponse) => any;
|
|
2413
|
-
}
|
|
2414
1992
|
export interface DescribeOrganizationConfigurationRequest {
|
|
2415
1993
|
}
|
|
2416
|
-
export declare namespace DescribeOrganizationConfigurationRequest {
|
|
2417
|
-
/**
|
|
2418
|
-
* @internal
|
|
2419
|
-
*/
|
|
2420
|
-
const filterSensitiveLog: (obj: DescribeOrganizationConfigurationRequest) => any;
|
|
2421
|
-
}
|
|
2422
1994
|
export interface DescribeOrganizationConfigurationResponse {
|
|
2423
1995
|
/**
|
|
2424
1996
|
* <p>The scan types are automatically enabled for new members of your organization.</p>
|
|
@@ -2429,12 +2001,6 @@ export interface DescribeOrganizationConfigurationResponse {
|
|
|
2429
2001
|
*/
|
|
2430
2002
|
maxAccountLimitReached?: boolean;
|
|
2431
2003
|
}
|
|
2432
|
-
export declare namespace DescribeOrganizationConfigurationResponse {
|
|
2433
|
-
/**
|
|
2434
|
-
* @internal
|
|
2435
|
-
*/
|
|
2436
|
-
const filterSensitiveLog: (obj: DescribeOrganizationConfigurationResponse) => any;
|
|
2437
|
-
}
|
|
2438
2004
|
export declare enum ResourceScanType {
|
|
2439
2005
|
EC2 = "EC2",
|
|
2440
2006
|
ECR = "ECR"
|
|
@@ -2449,12 +2015,6 @@ export interface DisableRequest {
|
|
|
2449
2015
|
*/
|
|
2450
2016
|
resourceTypes?: (ResourceScanType | string)[];
|
|
2451
2017
|
}
|
|
2452
|
-
export declare namespace DisableRequest {
|
|
2453
|
-
/**
|
|
2454
|
-
* @internal
|
|
2455
|
-
*/
|
|
2456
|
-
const filterSensitiveLog: (obj: DisableRequest) => any;
|
|
2457
|
-
}
|
|
2458
2018
|
export interface DisableResponse {
|
|
2459
2019
|
/**
|
|
2460
2020
|
* <p>Information on the accounts that have had Amazon Inspector scans successfully disabled. Details are
|
|
@@ -2467,60 +2027,30 @@ export interface DisableResponse {
|
|
|
2467
2027
|
*/
|
|
2468
2028
|
failedAccounts?: FailedAccount[];
|
|
2469
2029
|
}
|
|
2470
|
-
export declare namespace DisableResponse {
|
|
2471
|
-
/**
|
|
2472
|
-
* @internal
|
|
2473
|
-
*/
|
|
2474
|
-
const filterSensitiveLog: (obj: DisableResponse) => any;
|
|
2475
|
-
}
|
|
2476
2030
|
export interface DisableDelegatedAdminAccountRequest {
|
|
2477
2031
|
/**
|
|
2478
2032
|
* <p>The Amazon Web Services account ID of the current Amazon Inspector delegated administrator.</p>
|
|
2479
2033
|
*/
|
|
2480
2034
|
delegatedAdminAccountId: string | undefined;
|
|
2481
2035
|
}
|
|
2482
|
-
export declare namespace DisableDelegatedAdminAccountRequest {
|
|
2483
|
-
/**
|
|
2484
|
-
* @internal
|
|
2485
|
-
*/
|
|
2486
|
-
const filterSensitiveLog: (obj: DisableDelegatedAdminAccountRequest) => any;
|
|
2487
|
-
}
|
|
2488
2036
|
export interface DisableDelegatedAdminAccountResponse {
|
|
2489
2037
|
/**
|
|
2490
2038
|
* <p>The Amazon Web Services account ID of the successfully disabled delegated administrator.</p>
|
|
2491
2039
|
*/
|
|
2492
2040
|
delegatedAdminAccountId: string | undefined;
|
|
2493
2041
|
}
|
|
2494
|
-
export declare namespace DisableDelegatedAdminAccountResponse {
|
|
2495
|
-
/**
|
|
2496
|
-
* @internal
|
|
2497
|
-
*/
|
|
2498
|
-
const filterSensitiveLog: (obj: DisableDelegatedAdminAccountResponse) => any;
|
|
2499
|
-
}
|
|
2500
2042
|
export interface DisassociateMemberRequest {
|
|
2501
2043
|
/**
|
|
2502
2044
|
* <p>The Amazon Web Services account ID of the member account to disassociate.</p>
|
|
2503
2045
|
*/
|
|
2504
2046
|
accountId: string | undefined;
|
|
2505
2047
|
}
|
|
2506
|
-
export declare namespace DisassociateMemberRequest {
|
|
2507
|
-
/**
|
|
2508
|
-
* @internal
|
|
2509
|
-
*/
|
|
2510
|
-
const filterSensitiveLog: (obj: DisassociateMemberRequest) => any;
|
|
2511
|
-
}
|
|
2512
2048
|
export interface DisassociateMemberResponse {
|
|
2513
2049
|
/**
|
|
2514
2050
|
* <p>The Amazon Web Services account ID of the successfully disassociated member.</p>
|
|
2515
2051
|
*/
|
|
2516
2052
|
accountId: string | undefined;
|
|
2517
2053
|
}
|
|
2518
|
-
export declare namespace DisassociateMemberResponse {
|
|
2519
|
-
/**
|
|
2520
|
-
* @internal
|
|
2521
|
-
*/
|
|
2522
|
-
const filterSensitiveLog: (obj: DisassociateMemberResponse) => any;
|
|
2523
|
-
}
|
|
2524
2054
|
export declare enum EcrRescanDuration {
|
|
2525
2055
|
DAYS_180 = "DAYS_180",
|
|
2526
2056
|
DAYS_30 = "DAYS_30",
|
|
@@ -2535,12 +2065,6 @@ export interface EcrConfiguration {
|
|
|
2535
2065
|
*/
|
|
2536
2066
|
rescanDuration: EcrRescanDuration | string | undefined;
|
|
2537
2067
|
}
|
|
2538
|
-
export declare namespace EcrConfiguration {
|
|
2539
|
-
/**
|
|
2540
|
-
* @internal
|
|
2541
|
-
*/
|
|
2542
|
-
const filterSensitiveLog: (obj: EcrConfiguration) => any;
|
|
2543
|
-
}
|
|
2544
2068
|
export declare enum EcrRescanDurationStatus {
|
|
2545
2069
|
FAILED = "FAILED",
|
|
2546
2070
|
PENDING = "PENDING",
|
|
@@ -2563,12 +2087,6 @@ export interface EcrRescanDurationState {
|
|
|
2563
2087
|
*/
|
|
2564
2088
|
updatedAt?: Date;
|
|
2565
2089
|
}
|
|
2566
|
-
export declare namespace EcrRescanDurationState {
|
|
2567
|
-
/**
|
|
2568
|
-
* @internal
|
|
2569
|
-
*/
|
|
2570
|
-
const filterSensitiveLog: (obj: EcrRescanDurationState) => any;
|
|
2571
|
-
}
|
|
2572
2090
|
/**
|
|
2573
2091
|
* <p>Details about the state of the ECR scans for your environment.</p>
|
|
2574
2092
|
*/
|
|
@@ -2578,12 +2096,6 @@ export interface EcrConfigurationState {
|
|
|
2578
2096
|
*/
|
|
2579
2097
|
rescanDurationState?: EcrRescanDurationState;
|
|
2580
2098
|
}
|
|
2581
|
-
export declare namespace EcrConfigurationState {
|
|
2582
|
-
/**
|
|
2583
|
-
* @internal
|
|
2584
|
-
*/
|
|
2585
|
-
const filterSensitiveLog: (obj: EcrConfigurationState) => any;
|
|
2586
|
-
}
|
|
2587
2099
|
export interface EnableRequest {
|
|
2588
2100
|
/**
|
|
2589
2101
|
* <p>A list of account IDs you want to enable Amazon Inspector scans for.</p>
|
|
@@ -2598,12 +2110,6 @@ export interface EnableRequest {
|
|
|
2598
2110
|
*/
|
|
2599
2111
|
clientToken?: string;
|
|
2600
2112
|
}
|
|
2601
|
-
export declare namespace EnableRequest {
|
|
2602
|
-
/**
|
|
2603
|
-
* @internal
|
|
2604
|
-
*/
|
|
2605
|
-
const filterSensitiveLog: (obj: EnableRequest) => any;
|
|
2606
|
-
}
|
|
2607
2113
|
export interface EnableResponse {
|
|
2608
2114
|
/**
|
|
2609
2115
|
* <p>Information on the accounts that have had Amazon Inspector scans successfully enabled. Details are
|
|
@@ -2616,12 +2122,6 @@ export interface EnableResponse {
|
|
|
2616
2122
|
*/
|
|
2617
2123
|
failedAccounts?: FailedAccount[];
|
|
2618
2124
|
}
|
|
2619
|
-
export declare namespace EnableResponse {
|
|
2620
|
-
/**
|
|
2621
|
-
* @internal
|
|
2622
|
-
*/
|
|
2623
|
-
const filterSensitiveLog: (obj: EnableResponse) => any;
|
|
2624
|
-
}
|
|
2625
2125
|
export interface EnableDelegatedAdminAccountRequest {
|
|
2626
2126
|
/**
|
|
2627
2127
|
* <p>The Amazon Web Services account ID of the Amazon Inspector delegated administrator.</p>
|
|
@@ -2632,24 +2132,12 @@ export interface EnableDelegatedAdminAccountRequest {
|
|
|
2632
2132
|
*/
|
|
2633
2133
|
clientToken?: string;
|
|
2634
2134
|
}
|
|
2635
|
-
export declare namespace EnableDelegatedAdminAccountRequest {
|
|
2636
|
-
/**
|
|
2637
|
-
* @internal
|
|
2638
|
-
*/
|
|
2639
|
-
const filterSensitiveLog: (obj: EnableDelegatedAdminAccountRequest) => any;
|
|
2640
|
-
}
|
|
2641
2135
|
export interface EnableDelegatedAdminAccountResponse {
|
|
2642
2136
|
/**
|
|
2643
2137
|
* <p>The Amazon Web Services account ID of the successfully Amazon Inspector delegated administrator.</p>
|
|
2644
2138
|
*/
|
|
2645
2139
|
delegatedAdminAccountId: string | undefined;
|
|
2646
2140
|
}
|
|
2647
|
-
export declare namespace EnableDelegatedAdminAccountResponse {
|
|
2648
|
-
/**
|
|
2649
|
-
* @internal
|
|
2650
|
-
*/
|
|
2651
|
-
const filterSensitiveLog: (obj: EnableDelegatedAdminAccountResponse) => any;
|
|
2652
|
-
}
|
|
2653
2141
|
export declare enum ExternalReportStatus {
|
|
2654
2142
|
CANCELLED = "CANCELLED",
|
|
2655
2143
|
FAILED = "FAILED",
|
|
@@ -2701,12 +2189,6 @@ export interface Filter {
|
|
|
2701
2189
|
*/
|
|
2702
2190
|
tags?: Record<string, string>;
|
|
2703
2191
|
}
|
|
2704
|
-
export declare namespace Filter {
|
|
2705
|
-
/**
|
|
2706
|
-
* @internal
|
|
2707
|
-
*/
|
|
2708
|
-
const filterSensitiveLog: (obj: Filter) => any;
|
|
2709
|
-
}
|
|
2710
2192
|
/**
|
|
2711
2193
|
* <p>Information about the Amazon Inspector score given to a finding.</p>
|
|
2712
2194
|
*/
|
|
@@ -2716,12 +2198,6 @@ export interface InspectorScoreDetails {
|
|
|
2716
2198
|
*/
|
|
2717
2199
|
adjustedCvss?: CvssScoreDetails;
|
|
2718
2200
|
}
|
|
2719
|
-
export declare namespace InspectorScoreDetails {
|
|
2720
|
-
/**
|
|
2721
|
-
* @internal
|
|
2722
|
-
*/
|
|
2723
|
-
const filterSensitiveLog: (obj: InspectorScoreDetails) => any;
|
|
2724
|
-
}
|
|
2725
2201
|
/**
|
|
2726
2202
|
* <p>Details about the step associated with a finding.</p>
|
|
2727
2203
|
*/
|
|
@@ -2735,12 +2211,6 @@ export interface Step {
|
|
|
2735
2211
|
*/
|
|
2736
2212
|
componentType: string | undefined;
|
|
2737
2213
|
}
|
|
2738
|
-
export declare namespace Step {
|
|
2739
|
-
/**
|
|
2740
|
-
* @internal
|
|
2741
|
-
*/
|
|
2742
|
-
const filterSensitiveLog: (obj: Step) => any;
|
|
2743
|
-
}
|
|
2744
2214
|
/**
|
|
2745
2215
|
* <p>Information on the network path associated with a finding.</p>
|
|
2746
2216
|
*/
|
|
@@ -2750,12 +2220,6 @@ export interface NetworkPath {
|
|
|
2750
2220
|
*/
|
|
2751
2221
|
steps?: Step[];
|
|
2752
2222
|
}
|
|
2753
|
-
export declare namespace NetworkPath {
|
|
2754
|
-
/**
|
|
2755
|
-
* @internal
|
|
2756
|
-
*/
|
|
2757
|
-
const filterSensitiveLog: (obj: NetworkPath) => any;
|
|
2758
|
-
}
|
|
2759
2223
|
/**
|
|
2760
2224
|
* <p>Details about the port range associated with a finding.</p>
|
|
2761
2225
|
*/
|
|
@@ -2769,12 +2233,6 @@ export interface PortRange {
|
|
|
2769
2233
|
*/
|
|
2770
2234
|
end: number | undefined;
|
|
2771
2235
|
}
|
|
2772
|
-
export declare namespace PortRange {
|
|
2773
|
-
/**
|
|
2774
|
-
* @internal
|
|
2775
|
-
*/
|
|
2776
|
-
const filterSensitiveLog: (obj: PortRange) => any;
|
|
2777
|
-
}
|
|
2778
2236
|
export declare enum NetworkProtocol {
|
|
2779
2237
|
TCP = "TCP",
|
|
2780
2238
|
UDP = "UDP"
|
|
@@ -2796,12 +2254,6 @@ export interface NetworkReachabilityDetails {
|
|
|
2796
2254
|
*/
|
|
2797
2255
|
networkPath: NetworkPath | undefined;
|
|
2798
2256
|
}
|
|
2799
|
-
export declare namespace NetworkReachabilityDetails {
|
|
2800
|
-
/**
|
|
2801
|
-
* @internal
|
|
2802
|
-
*/
|
|
2803
|
-
const filterSensitiveLog: (obj: NetworkReachabilityDetails) => any;
|
|
2804
|
-
}
|
|
2805
2257
|
export declare enum PackageManager {
|
|
2806
2258
|
BUNDLER = "BUNDLER",
|
|
2807
2259
|
CARGO = "CARGO",
|
|
@@ -2861,12 +2313,6 @@ export interface VulnerablePackage {
|
|
|
2861
2313
|
*/
|
|
2862
2314
|
fixedInVersion?: string;
|
|
2863
2315
|
}
|
|
2864
|
-
export declare namespace VulnerablePackage {
|
|
2865
|
-
/**
|
|
2866
|
-
* @internal
|
|
2867
|
-
*/
|
|
2868
|
-
const filterSensitiveLog: (obj: VulnerablePackage) => any;
|
|
2869
|
-
}
|
|
2870
2316
|
/**
|
|
2871
2317
|
* <p>Information about a package vulnerability finding.</p>
|
|
2872
2318
|
*/
|
|
@@ -2912,12 +2358,6 @@ export interface PackageVulnerabilityDetails {
|
|
|
2912
2358
|
*/
|
|
2913
2359
|
referenceUrls?: string[];
|
|
2914
2360
|
}
|
|
2915
|
-
export declare namespace PackageVulnerabilityDetails {
|
|
2916
|
-
/**
|
|
2917
|
-
* @internal
|
|
2918
|
-
*/
|
|
2919
|
-
const filterSensitiveLog: (obj: PackageVulnerabilityDetails) => any;
|
|
2920
|
-
}
|
|
2921
2361
|
/**
|
|
2922
2362
|
* <p>Details about the recommended course of action to remediate the finding.</p>
|
|
2923
2363
|
*/
|
|
@@ -2931,12 +2371,6 @@ export interface Recommendation {
|
|
|
2931
2371
|
*/
|
|
2932
2372
|
Url?: string;
|
|
2933
2373
|
}
|
|
2934
|
-
export declare namespace Recommendation {
|
|
2935
|
-
/**
|
|
2936
|
-
* @internal
|
|
2937
|
-
*/
|
|
2938
|
-
const filterSensitiveLog: (obj: Recommendation) => any;
|
|
2939
|
-
}
|
|
2940
2374
|
/**
|
|
2941
2375
|
* <p>Information on how to remediate a finding.</p>
|
|
2942
2376
|
*/
|
|
@@ -2946,12 +2380,6 @@ export interface Remediation {
|
|
|
2946
2380
|
*/
|
|
2947
2381
|
recommendation?: Recommendation;
|
|
2948
2382
|
}
|
|
2949
|
-
export declare namespace Remediation {
|
|
2950
|
-
/**
|
|
2951
|
-
* @internal
|
|
2952
|
-
*/
|
|
2953
|
-
const filterSensitiveLog: (obj: Remediation) => any;
|
|
2954
|
-
}
|
|
2955
2383
|
/**
|
|
2956
2384
|
* <p>Contains details about the resource involved in the finding.</p>
|
|
2957
2385
|
*/
|
|
@@ -2965,12 +2393,6 @@ export interface ResourceDetails {
|
|
|
2965
2393
|
*/
|
|
2966
2394
|
awsEcrContainerImage?: AwsEcrContainerImageDetails;
|
|
2967
2395
|
}
|
|
2968
|
-
export declare namespace ResourceDetails {
|
|
2969
|
-
/**
|
|
2970
|
-
* @internal
|
|
2971
|
-
*/
|
|
2972
|
-
const filterSensitiveLog: (obj: ResourceDetails) => any;
|
|
2973
|
-
}
|
|
2974
2396
|
export declare enum ResourceType {
|
|
2975
2397
|
AWS_EC2_INSTANCE = "AWS_EC2_INSTANCE",
|
|
2976
2398
|
AWS_ECR_CONTAINER_IMAGE = "AWS_ECR_CONTAINER_IMAGE",
|
|
@@ -3005,12 +2427,6 @@ export interface Resource {
|
|
|
3005
2427
|
*/
|
|
3006
2428
|
details?: ResourceDetails;
|
|
3007
2429
|
}
|
|
3008
|
-
export declare namespace Resource {
|
|
3009
|
-
/**
|
|
3010
|
-
* @internal
|
|
3011
|
-
*/
|
|
3012
|
-
const filterSensitiveLog: (obj: Resource) => any;
|
|
3013
|
-
}
|
|
3014
2430
|
export declare enum Severity {
|
|
3015
2431
|
CRITICAL = "CRITICAL",
|
|
3016
2432
|
HIGH = "HIGH",
|
|
@@ -3097,64 +2513,28 @@ export interface Finding {
|
|
|
3097
2513
|
*/
|
|
3098
2514
|
packageVulnerabilityDetails?: PackageVulnerabilityDetails;
|
|
3099
2515
|
}
|
|
3100
|
-
export declare namespace Finding {
|
|
3101
|
-
/**
|
|
3102
|
-
* @internal
|
|
3103
|
-
*/
|
|
3104
|
-
const filterSensitiveLog: (obj: Finding) => any;
|
|
3105
|
-
}
|
|
3106
2516
|
export interface GetConfigurationRequest {
|
|
3107
2517
|
}
|
|
3108
|
-
export declare namespace GetConfigurationRequest {
|
|
3109
|
-
/**
|
|
3110
|
-
* @internal
|
|
3111
|
-
*/
|
|
3112
|
-
const filterSensitiveLog: (obj: GetConfigurationRequest) => any;
|
|
3113
|
-
}
|
|
3114
2518
|
export interface GetConfigurationResponse {
|
|
3115
2519
|
/**
|
|
3116
2520
|
* <p>Specifies how the ECR automated re-scan duration is currently configured for your environment.</p>
|
|
3117
2521
|
*/
|
|
3118
2522
|
ecrConfiguration?: EcrConfigurationState;
|
|
3119
2523
|
}
|
|
3120
|
-
export declare namespace GetConfigurationResponse {
|
|
3121
|
-
/**
|
|
3122
|
-
* @internal
|
|
3123
|
-
*/
|
|
3124
|
-
const filterSensitiveLog: (obj: GetConfigurationResponse) => any;
|
|
3125
|
-
}
|
|
3126
2524
|
export interface GetDelegatedAdminAccountRequest {
|
|
3127
2525
|
}
|
|
3128
|
-
export declare namespace GetDelegatedAdminAccountRequest {
|
|
3129
|
-
/**
|
|
3130
|
-
* @internal
|
|
3131
|
-
*/
|
|
3132
|
-
const filterSensitiveLog: (obj: GetDelegatedAdminAccountRequest) => any;
|
|
3133
|
-
}
|
|
3134
2526
|
export interface GetDelegatedAdminAccountResponse {
|
|
3135
2527
|
/**
|
|
3136
2528
|
* <p>The Amazon Web Services account ID of the Amazon Inspector delegated administrator.</p>
|
|
3137
2529
|
*/
|
|
3138
2530
|
delegatedAdmin?: DelegatedAdmin;
|
|
3139
2531
|
}
|
|
3140
|
-
export declare namespace GetDelegatedAdminAccountResponse {
|
|
3141
|
-
/**
|
|
3142
|
-
* @internal
|
|
3143
|
-
*/
|
|
3144
|
-
const filterSensitiveLog: (obj: GetDelegatedAdminAccountResponse) => any;
|
|
3145
|
-
}
|
|
3146
2532
|
export interface GetFindingsReportStatusRequest {
|
|
3147
2533
|
/**
|
|
3148
2534
|
* <p>The ID of the report to retrieve the status of.</p>
|
|
3149
2535
|
*/
|
|
3150
2536
|
reportId?: string;
|
|
3151
2537
|
}
|
|
3152
|
-
export declare namespace GetFindingsReportStatusRequest {
|
|
3153
|
-
/**
|
|
3154
|
-
* @internal
|
|
3155
|
-
*/
|
|
3156
|
-
const filterSensitiveLog: (obj: GetFindingsReportStatusRequest) => any;
|
|
3157
|
-
}
|
|
3158
2538
|
export declare enum ReportingErrorCode {
|
|
3159
2539
|
BUCKET_NOT_FOUND = "BUCKET_NOT_FOUND",
|
|
3160
2540
|
INCOMPATIBLE_BUCKET_REGION = "INCOMPATIBLE_BUCKET_REGION",
|
|
@@ -3189,24 +2569,12 @@ export interface GetFindingsReportStatusResponse {
|
|
|
3189
2569
|
*/
|
|
3190
2570
|
filterCriteria?: FilterCriteria;
|
|
3191
2571
|
}
|
|
3192
|
-
export declare namespace GetFindingsReportStatusResponse {
|
|
3193
|
-
/**
|
|
3194
|
-
* @internal
|
|
3195
|
-
*/
|
|
3196
|
-
const filterSensitiveLog: (obj: GetFindingsReportStatusResponse) => any;
|
|
3197
|
-
}
|
|
3198
2572
|
export interface GetMemberRequest {
|
|
3199
2573
|
/**
|
|
3200
2574
|
* <p>The Amazon Web Services account ID of the member account to retrieve information on.</p>
|
|
3201
2575
|
*/
|
|
3202
2576
|
accountId: string | undefined;
|
|
3203
2577
|
}
|
|
3204
|
-
export declare namespace GetMemberRequest {
|
|
3205
|
-
/**
|
|
3206
|
-
* @internal
|
|
3207
|
-
*/
|
|
3208
|
-
const filterSensitiveLog: (obj: GetMemberRequest) => any;
|
|
3209
|
-
}
|
|
3210
2578
|
/**
|
|
3211
2579
|
* <p>Details on a member account in your organization.</p>
|
|
3212
2580
|
*/
|
|
@@ -3228,24 +2596,12 @@ export interface Member {
|
|
|
3228
2596
|
*/
|
|
3229
2597
|
updatedAt?: Date;
|
|
3230
2598
|
}
|
|
3231
|
-
export declare namespace Member {
|
|
3232
|
-
/**
|
|
3233
|
-
* @internal
|
|
3234
|
-
*/
|
|
3235
|
-
const filterSensitiveLog: (obj: Member) => any;
|
|
3236
|
-
}
|
|
3237
2599
|
export interface GetMemberResponse {
|
|
3238
2600
|
/**
|
|
3239
2601
|
* <p>Details of the retrieved member account.</p>
|
|
3240
2602
|
*/
|
|
3241
2603
|
member?: Member;
|
|
3242
2604
|
}
|
|
3243
|
-
export declare namespace GetMemberResponse {
|
|
3244
|
-
/**
|
|
3245
|
-
* @internal
|
|
3246
|
-
*/
|
|
3247
|
-
const filterSensitiveLog: (obj: GetMemberResponse) => any;
|
|
3248
|
-
}
|
|
3249
2605
|
export declare enum Service {
|
|
3250
2606
|
EC2 = "EC2",
|
|
3251
2607
|
ECR = "ECR"
|
|
@@ -3267,12 +2623,6 @@ export interface ListAccountPermissionsRequest {
|
|
|
3267
2623
|
*/
|
|
3268
2624
|
nextToken?: string;
|
|
3269
2625
|
}
|
|
3270
|
-
export declare namespace ListAccountPermissionsRequest {
|
|
3271
|
-
/**
|
|
3272
|
-
* @internal
|
|
3273
|
-
*/
|
|
3274
|
-
const filterSensitiveLog: (obj: ListAccountPermissionsRequest) => any;
|
|
3275
|
-
}
|
|
3276
2626
|
export declare enum Operation {
|
|
3277
2627
|
DISABLE_REPOSITORY = "DISABLE_REPOSITORY",
|
|
3278
2628
|
DISABLE_SCANNING = "DISABLE_SCANNING",
|
|
@@ -3292,12 +2642,6 @@ export interface Permission {
|
|
|
3292
2642
|
*/
|
|
3293
2643
|
operation: Operation | string | undefined;
|
|
3294
2644
|
}
|
|
3295
|
-
export declare namespace Permission {
|
|
3296
|
-
/**
|
|
3297
|
-
* @internal
|
|
3298
|
-
*/
|
|
3299
|
-
const filterSensitiveLog: (obj: Permission) => any;
|
|
3300
|
-
}
|
|
3301
2645
|
export interface ListAccountPermissionsResponse {
|
|
3302
2646
|
/**
|
|
3303
2647
|
* <p>Contains details on the permissions an account has to configure Amazon Inspector.</p>
|
|
@@ -3311,12 +2655,6 @@ export interface ListAccountPermissionsResponse {
|
|
|
3311
2655
|
*/
|
|
3312
2656
|
nextToken?: string;
|
|
3313
2657
|
}
|
|
3314
|
-
export declare namespace ListAccountPermissionsResponse {
|
|
3315
|
-
/**
|
|
3316
|
-
* @internal
|
|
3317
|
-
*/
|
|
3318
|
-
const filterSensitiveLog: (obj: ListAccountPermissionsResponse) => any;
|
|
3319
|
-
}
|
|
3320
2658
|
export interface ListCoverageRequest {
|
|
3321
2659
|
/**
|
|
3322
2660
|
* <p>The maximum number of results to return in the response.</p>
|
|
@@ -3335,12 +2673,6 @@ export interface ListCoverageRequest {
|
|
|
3335
2673
|
*/
|
|
3336
2674
|
filterCriteria?: CoverageFilterCriteria;
|
|
3337
2675
|
}
|
|
3338
|
-
export declare namespace ListCoverageRequest {
|
|
3339
|
-
/**
|
|
3340
|
-
* @internal
|
|
3341
|
-
*/
|
|
3342
|
-
const filterSensitiveLog: (obj: ListCoverageRequest) => any;
|
|
3343
|
-
}
|
|
3344
2676
|
export interface ListCoverageResponse {
|
|
3345
2677
|
/**
|
|
3346
2678
|
* <p>A token to use for paginating results that are returned in the response. Set the value
|
|
@@ -3354,12 +2686,6 @@ export interface ListCoverageResponse {
|
|
|
3354
2686
|
*/
|
|
3355
2687
|
coveredResources?: CoveredResource[];
|
|
3356
2688
|
}
|
|
3357
|
-
export declare namespace ListCoverageResponse {
|
|
3358
|
-
/**
|
|
3359
|
-
* @internal
|
|
3360
|
-
*/
|
|
3361
|
-
const filterSensitiveLog: (obj: ListCoverageResponse) => any;
|
|
3362
|
-
}
|
|
3363
2689
|
export interface ListCoverageStatisticsRequest {
|
|
3364
2690
|
/**
|
|
3365
2691
|
* <p>An object that contains details on the filters to apply to the coverage data for your
|
|
@@ -3378,12 +2704,6 @@ export interface ListCoverageStatisticsRequest {
|
|
|
3378
2704
|
*/
|
|
3379
2705
|
nextToken?: string;
|
|
3380
2706
|
}
|
|
3381
|
-
export declare namespace ListCoverageStatisticsRequest {
|
|
3382
|
-
/**
|
|
3383
|
-
* @internal
|
|
3384
|
-
*/
|
|
3385
|
-
const filterSensitiveLog: (obj: ListCoverageStatisticsRequest) => any;
|
|
3386
|
-
}
|
|
3387
2707
|
export interface ListCoverageStatisticsResponse {
|
|
3388
2708
|
/**
|
|
3389
2709
|
* <p>An array with the number for each group.</p>
|
|
@@ -3401,12 +2721,6 @@ export interface ListCoverageStatisticsResponse {
|
|
|
3401
2721
|
*/
|
|
3402
2722
|
nextToken?: string;
|
|
3403
2723
|
}
|
|
3404
|
-
export declare namespace ListCoverageStatisticsResponse {
|
|
3405
|
-
/**
|
|
3406
|
-
* @internal
|
|
3407
|
-
*/
|
|
3408
|
-
const filterSensitiveLog: (obj: ListCoverageStatisticsResponse) => any;
|
|
3409
|
-
}
|
|
3410
2724
|
export interface ListDelegatedAdminAccountsRequest {
|
|
3411
2725
|
/**
|
|
3412
2726
|
* <p>The maximum number of results to return in the response.</p>
|
|
@@ -3420,12 +2734,6 @@ export interface ListDelegatedAdminAccountsRequest {
|
|
|
3420
2734
|
*/
|
|
3421
2735
|
nextToken?: string;
|
|
3422
2736
|
}
|
|
3423
|
-
export declare namespace ListDelegatedAdminAccountsRequest {
|
|
3424
|
-
/**
|
|
3425
|
-
* @internal
|
|
3426
|
-
*/
|
|
3427
|
-
const filterSensitiveLog: (obj: ListDelegatedAdminAccountsRequest) => any;
|
|
3428
|
-
}
|
|
3429
2737
|
export interface ListDelegatedAdminAccountsResponse {
|
|
3430
2738
|
/**
|
|
3431
2739
|
* <p>Details of the Amazon Inspector delegated administrator of your organization.</p>
|
|
@@ -3439,12 +2747,6 @@ export interface ListDelegatedAdminAccountsResponse {
|
|
|
3439
2747
|
*/
|
|
3440
2748
|
nextToken?: string;
|
|
3441
2749
|
}
|
|
3442
|
-
export declare namespace ListDelegatedAdminAccountsResponse {
|
|
3443
|
-
/**
|
|
3444
|
-
* @internal
|
|
3445
|
-
*/
|
|
3446
|
-
const filterSensitiveLog: (obj: ListDelegatedAdminAccountsResponse) => any;
|
|
3447
|
-
}
|
|
3448
2750
|
export interface ListFiltersRequest {
|
|
3449
2751
|
/**
|
|
3450
2752
|
* <p>The Amazon resource number (ARN) of the filter.</p>
|
|
@@ -3466,12 +2768,6 @@ export interface ListFiltersRequest {
|
|
|
3466
2768
|
*/
|
|
3467
2769
|
maxResults?: number;
|
|
3468
2770
|
}
|
|
3469
|
-
export declare namespace ListFiltersRequest {
|
|
3470
|
-
/**
|
|
3471
|
-
* @internal
|
|
3472
|
-
*/
|
|
3473
|
-
const filterSensitiveLog: (obj: ListFiltersRequest) => any;
|
|
3474
|
-
}
|
|
3475
2771
|
export interface ListFiltersResponse {
|
|
3476
2772
|
/**
|
|
3477
2773
|
* <p>Contains details on the filters associated with your account.</p>
|
|
@@ -3485,12 +2781,6 @@ export interface ListFiltersResponse {
|
|
|
3485
2781
|
*/
|
|
3486
2782
|
nextToken?: string;
|
|
3487
2783
|
}
|
|
3488
|
-
export declare namespace ListFiltersResponse {
|
|
3489
|
-
/**
|
|
3490
|
-
* @internal
|
|
3491
|
-
*/
|
|
3492
|
-
const filterSensitiveLog: (obj: ListFiltersResponse) => any;
|
|
3493
|
-
}
|
|
3494
2784
|
export interface ListFindingAggregationsRequest {
|
|
3495
2785
|
/**
|
|
3496
2786
|
* <p>The type of the aggregation request.</p>
|
|
@@ -3516,12 +2806,6 @@ export interface ListFindingAggregationsRequest {
|
|
|
3516
2806
|
*/
|
|
3517
2807
|
aggregationRequest?: AggregationRequest;
|
|
3518
2808
|
}
|
|
3519
|
-
export declare namespace ListFindingAggregationsRequest {
|
|
3520
|
-
/**
|
|
3521
|
-
* @internal
|
|
3522
|
-
*/
|
|
3523
|
-
const filterSensitiveLog: (obj: ListFindingAggregationsRequest) => any;
|
|
3524
|
-
}
|
|
3525
2809
|
export interface ListFindingAggregationsResponse {
|
|
3526
2810
|
/**
|
|
3527
2811
|
* <p>The type of aggregation to perform.</p>
|
|
@@ -3539,12 +2823,6 @@ export interface ListFindingAggregationsResponse {
|
|
|
3539
2823
|
*/
|
|
3540
2824
|
nextToken?: string;
|
|
3541
2825
|
}
|
|
3542
|
-
export declare namespace ListFindingAggregationsResponse {
|
|
3543
|
-
/**
|
|
3544
|
-
* @internal
|
|
3545
|
-
*/
|
|
3546
|
-
const filterSensitiveLog: (obj: ListFindingAggregationsResponse) => any;
|
|
3547
|
-
}
|
|
3548
2826
|
export declare enum SortField {
|
|
3549
2827
|
AWS_ACCOUNT_ID = "AWS_ACCOUNT_ID",
|
|
3550
2828
|
COMPONENT_TYPE = "COMPONENT_TYPE",
|
|
@@ -3576,12 +2854,6 @@ export interface SortCriteria {
|
|
|
3576
2854
|
*/
|
|
3577
2855
|
sortOrder: SortOrder | string | undefined;
|
|
3578
2856
|
}
|
|
3579
|
-
export declare namespace SortCriteria {
|
|
3580
|
-
/**
|
|
3581
|
-
* @internal
|
|
3582
|
-
*/
|
|
3583
|
-
const filterSensitiveLog: (obj: SortCriteria) => any;
|
|
3584
|
-
}
|
|
3585
2857
|
export interface ListFindingsRequest {
|
|
3586
2858
|
/**
|
|
3587
2859
|
* <p>The maximum number of results to return in the response.</p>
|
|
@@ -3603,12 +2875,6 @@ export interface ListFindingsRequest {
|
|
|
3603
2875
|
*/
|
|
3604
2876
|
sortCriteria?: SortCriteria;
|
|
3605
2877
|
}
|
|
3606
|
-
export declare namespace ListFindingsRequest {
|
|
3607
|
-
/**
|
|
3608
|
-
* @internal
|
|
3609
|
-
*/
|
|
3610
|
-
const filterSensitiveLog: (obj: ListFindingsRequest) => any;
|
|
3611
|
-
}
|
|
3612
2878
|
export interface ListFindingsResponse {
|
|
3613
2879
|
/**
|
|
3614
2880
|
* <p>A token to use for paginating results that are returned in the response. Set the value
|
|
@@ -3622,12 +2888,6 @@ export interface ListFindingsResponse {
|
|
|
3622
2888
|
*/
|
|
3623
2889
|
findings?: Finding[];
|
|
3624
2890
|
}
|
|
3625
|
-
export declare namespace ListFindingsResponse {
|
|
3626
|
-
/**
|
|
3627
|
-
* @internal
|
|
3628
|
-
*/
|
|
3629
|
-
const filterSensitiveLog: (obj: ListFindingsResponse) => any;
|
|
3630
|
-
}
|
|
3631
2891
|
export interface ListMembersRequest {
|
|
3632
2892
|
/**
|
|
3633
2893
|
* <p>Specifies whether to list only currently associated members if <code>True</code> or to
|
|
@@ -3646,12 +2906,6 @@ export interface ListMembersRequest {
|
|
|
3646
2906
|
*/
|
|
3647
2907
|
nextToken?: string;
|
|
3648
2908
|
}
|
|
3649
|
-
export declare namespace ListMembersRequest {
|
|
3650
|
-
/**
|
|
3651
|
-
* @internal
|
|
3652
|
-
*/
|
|
3653
|
-
const filterSensitiveLog: (obj: ListMembersRequest) => any;
|
|
3654
|
-
}
|
|
3655
2909
|
export interface ListMembersResponse {
|
|
3656
2910
|
/**
|
|
3657
2911
|
* <p>An object that contains details for each member account.</p>
|
|
@@ -3663,36 +2917,18 @@ export interface ListMembersResponse {
|
|
|
3663
2917
|
*/
|
|
3664
2918
|
nextToken?: string;
|
|
3665
2919
|
}
|
|
3666
|
-
export declare namespace ListMembersResponse {
|
|
3667
|
-
/**
|
|
3668
|
-
* @internal
|
|
3669
|
-
*/
|
|
3670
|
-
const filterSensitiveLog: (obj: ListMembersResponse) => any;
|
|
3671
|
-
}
|
|
3672
2920
|
export interface ListTagsForResourceRequest {
|
|
3673
2921
|
/**
|
|
3674
2922
|
* <p>The Amazon resource number (ARN) of the resource to list tags of.</p>
|
|
3675
2923
|
*/
|
|
3676
2924
|
resourceArn: string | undefined;
|
|
3677
2925
|
}
|
|
3678
|
-
export declare namespace ListTagsForResourceRequest {
|
|
3679
|
-
/**
|
|
3680
|
-
* @internal
|
|
3681
|
-
*/
|
|
3682
|
-
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
3683
|
-
}
|
|
3684
2926
|
export interface ListTagsForResourceResponse {
|
|
3685
2927
|
/**
|
|
3686
2928
|
* <p>The tags associated with the resource.</p>
|
|
3687
2929
|
*/
|
|
3688
2930
|
tags?: Record<string, string>;
|
|
3689
2931
|
}
|
|
3690
|
-
export declare namespace ListTagsForResourceResponse {
|
|
3691
|
-
/**
|
|
3692
|
-
* @internal
|
|
3693
|
-
*/
|
|
3694
|
-
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
3695
|
-
}
|
|
3696
2932
|
export interface ListUsageTotalsRequest {
|
|
3697
2933
|
/**
|
|
3698
2934
|
* <p>The maximum number of results to return in the response.</p>
|
|
@@ -3710,12 +2946,6 @@ export interface ListUsageTotalsRequest {
|
|
|
3710
2946
|
*/
|
|
3711
2947
|
accountIds?: string[];
|
|
3712
2948
|
}
|
|
3713
|
-
export declare namespace ListUsageTotalsRequest {
|
|
3714
|
-
/**
|
|
3715
|
-
* @internal
|
|
3716
|
-
*/
|
|
3717
|
-
const filterSensitiveLog: (obj: ListUsageTotalsRequest) => any;
|
|
3718
|
-
}
|
|
3719
2949
|
export declare enum UsageType {
|
|
3720
2950
|
EC2_INSTANCE_HOURS = "EC2_INSTANCE_HOURS",
|
|
3721
2951
|
ECR_INITIAL_SCAN = "ECR_INITIAL_SCAN",
|
|
@@ -3742,12 +2972,6 @@ export interface Usage {
|
|
|
3742
2972
|
*/
|
|
3743
2973
|
currency?: Currency | string;
|
|
3744
2974
|
}
|
|
3745
|
-
export declare namespace Usage {
|
|
3746
|
-
/**
|
|
3747
|
-
* @internal
|
|
3748
|
-
*/
|
|
3749
|
-
const filterSensitiveLog: (obj: Usage) => any;
|
|
3750
|
-
}
|
|
3751
2975
|
/**
|
|
3752
2976
|
* <p>The total of usage for an account ID.</p>
|
|
3753
2977
|
*/
|
|
@@ -3761,12 +2985,6 @@ export interface UsageTotal {
|
|
|
3761
2985
|
*/
|
|
3762
2986
|
usage?: Usage[];
|
|
3763
2987
|
}
|
|
3764
|
-
export declare namespace UsageTotal {
|
|
3765
|
-
/**
|
|
3766
|
-
* @internal
|
|
3767
|
-
*/
|
|
3768
|
-
const filterSensitiveLog: (obj: UsageTotal) => any;
|
|
3769
|
-
}
|
|
3770
2988
|
export interface ListUsageTotalsResponse {
|
|
3771
2989
|
/**
|
|
3772
2990
|
* <p>The pagination parameter to be used on the next list operation to retrieve more items.</p>
|
|
@@ -3777,12 +2995,6 @@ export interface ListUsageTotalsResponse {
|
|
|
3777
2995
|
*/
|
|
3778
2996
|
totals?: UsageTotal[];
|
|
3779
2997
|
}
|
|
3780
|
-
export declare namespace ListUsageTotalsResponse {
|
|
3781
|
-
/**
|
|
3782
|
-
* @internal
|
|
3783
|
-
*/
|
|
3784
|
-
const filterSensitiveLog: (obj: ListUsageTotalsResponse) => any;
|
|
3785
|
-
}
|
|
3786
2998
|
export interface TagResourceRequest {
|
|
3787
2999
|
/**
|
|
3788
3000
|
* <p>The Amazon Resource Name (ARN) of the resource to apply a tag to.</p>
|
|
@@ -3793,20 +3005,8 @@ export interface TagResourceRequest {
|
|
|
3793
3005
|
*/
|
|
3794
3006
|
tags: Record<string, string> | undefined;
|
|
3795
3007
|
}
|
|
3796
|
-
export declare namespace TagResourceRequest {
|
|
3797
|
-
/**
|
|
3798
|
-
* @internal
|
|
3799
|
-
*/
|
|
3800
|
-
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
3801
|
-
}
|
|
3802
3008
|
export interface TagResourceResponse {
|
|
3803
3009
|
}
|
|
3804
|
-
export declare namespace TagResourceResponse {
|
|
3805
|
-
/**
|
|
3806
|
-
* @internal
|
|
3807
|
-
*/
|
|
3808
|
-
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
3809
|
-
}
|
|
3810
3010
|
export interface UntagResourceRequest {
|
|
3811
3011
|
/**
|
|
3812
3012
|
* <p>The Amazon Resource Name (ARN) for the resource to remove tags from.</p>
|
|
@@ -3817,40 +3017,16 @@ export interface UntagResourceRequest {
|
|
|
3817
3017
|
*/
|
|
3818
3018
|
tagKeys: string[] | undefined;
|
|
3819
3019
|
}
|
|
3820
|
-
export declare namespace UntagResourceRequest {
|
|
3821
|
-
/**
|
|
3822
|
-
* @internal
|
|
3823
|
-
*/
|
|
3824
|
-
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
3825
|
-
}
|
|
3826
3020
|
export interface UntagResourceResponse {
|
|
3827
3021
|
}
|
|
3828
|
-
export declare namespace UntagResourceResponse {
|
|
3829
|
-
/**
|
|
3830
|
-
* @internal
|
|
3831
|
-
*/
|
|
3832
|
-
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
3833
|
-
}
|
|
3834
3022
|
export interface UpdateConfigurationRequest {
|
|
3835
3023
|
/**
|
|
3836
3024
|
* <p>Specifies how the ECR automated re-scan will be updated for your environment.</p>
|
|
3837
3025
|
*/
|
|
3838
3026
|
ecrConfiguration: EcrConfiguration | undefined;
|
|
3839
3027
|
}
|
|
3840
|
-
export declare namespace UpdateConfigurationRequest {
|
|
3841
|
-
/**
|
|
3842
|
-
* @internal
|
|
3843
|
-
*/
|
|
3844
|
-
const filterSensitiveLog: (obj: UpdateConfigurationRequest) => any;
|
|
3845
|
-
}
|
|
3846
3028
|
export interface UpdateConfigurationResponse {
|
|
3847
3029
|
}
|
|
3848
|
-
export declare namespace UpdateConfigurationResponse {
|
|
3849
|
-
/**
|
|
3850
|
-
* @internal
|
|
3851
|
-
*/
|
|
3852
|
-
const filterSensitiveLog: (obj: UpdateConfigurationResponse) => any;
|
|
3853
|
-
}
|
|
3854
3030
|
export interface UpdateFilterRequest {
|
|
3855
3031
|
/**
|
|
3856
3032
|
* <p>Specifies the action that is to be applied to the findings that match the filter.</p>
|
|
@@ -3877,45 +3053,589 @@ export interface UpdateFilterRequest {
|
|
|
3877
3053
|
*/
|
|
3878
3054
|
reason?: string;
|
|
3879
3055
|
}
|
|
3880
|
-
export declare namespace UpdateFilterRequest {
|
|
3881
|
-
/**
|
|
3882
|
-
* @internal
|
|
3883
|
-
*/
|
|
3884
|
-
const filterSensitiveLog: (obj: UpdateFilterRequest) => any;
|
|
3885
|
-
}
|
|
3886
3056
|
export interface UpdateFilterResponse {
|
|
3887
3057
|
/**
|
|
3888
3058
|
* <p>The Amazon Resource Number (ARN) of the successfully updated filter.</p>
|
|
3889
3059
|
*/
|
|
3890
3060
|
arn: string | undefined;
|
|
3891
3061
|
}
|
|
3892
|
-
export declare namespace UpdateFilterResponse {
|
|
3893
|
-
/**
|
|
3894
|
-
* @internal
|
|
3895
|
-
*/
|
|
3896
|
-
const filterSensitiveLog: (obj: UpdateFilterResponse) => any;
|
|
3897
|
-
}
|
|
3898
3062
|
export interface UpdateOrganizationConfigurationRequest {
|
|
3899
3063
|
/**
|
|
3900
3064
|
* <p>Defines which scan types are enabled automatically for new members of your Amazon Inspector organization.</p>
|
|
3901
3065
|
*/
|
|
3902
3066
|
autoEnable: AutoEnable | undefined;
|
|
3903
3067
|
}
|
|
3904
|
-
export declare namespace UpdateOrganizationConfigurationRequest {
|
|
3905
|
-
/**
|
|
3906
|
-
* @internal
|
|
3907
|
-
*/
|
|
3908
|
-
const filterSensitiveLog: (obj: UpdateOrganizationConfigurationRequest) => any;
|
|
3909
|
-
}
|
|
3910
3068
|
export interface UpdateOrganizationConfigurationResponse {
|
|
3911
3069
|
/**
|
|
3912
3070
|
* <p>The updated status of scan types automatically enabled for new members of your Amazon Inspector organization.</p>
|
|
3913
3071
|
*/
|
|
3914
3072
|
autoEnable: AutoEnable | undefined;
|
|
3915
3073
|
}
|
|
3916
|
-
|
|
3917
|
-
|
|
3918
|
-
|
|
3919
|
-
|
|
3920
|
-
|
|
3921
|
-
|
|
3074
|
+
/**
|
|
3075
|
+
* @internal
|
|
3076
|
+
*/
|
|
3077
|
+
export declare const ResourceStatusFilterSensitiveLog: (obj: ResourceStatus) => any;
|
|
3078
|
+
/**
|
|
3079
|
+
* @internal
|
|
3080
|
+
*/
|
|
3081
|
+
export declare const AccountFilterSensitiveLog: (obj: Account) => any;
|
|
3082
|
+
/**
|
|
3083
|
+
* @internal
|
|
3084
|
+
*/
|
|
3085
|
+
export declare const AccountAggregationFilterSensitiveLog: (obj: AccountAggregation) => any;
|
|
3086
|
+
/**
|
|
3087
|
+
* @internal
|
|
3088
|
+
*/
|
|
3089
|
+
export declare const SeverityCountsFilterSensitiveLog: (obj: SeverityCounts) => any;
|
|
3090
|
+
/**
|
|
3091
|
+
* @internal
|
|
3092
|
+
*/
|
|
3093
|
+
export declare const AccountAggregationResponseFilterSensitiveLog: (obj: AccountAggregationResponse) => any;
|
|
3094
|
+
/**
|
|
3095
|
+
* @internal
|
|
3096
|
+
*/
|
|
3097
|
+
export declare const StateFilterSensitiveLog: (obj: State) => any;
|
|
3098
|
+
/**
|
|
3099
|
+
* @internal
|
|
3100
|
+
*/
|
|
3101
|
+
export declare const ResourceStateFilterSensitiveLog: (obj: ResourceState) => any;
|
|
3102
|
+
/**
|
|
3103
|
+
* @internal
|
|
3104
|
+
*/
|
|
3105
|
+
export declare const AccountStateFilterSensitiveLog: (obj: AccountState) => any;
|
|
3106
|
+
/**
|
|
3107
|
+
* @internal
|
|
3108
|
+
*/
|
|
3109
|
+
export declare const StringFilterFilterSensitiveLog: (obj: StringFilter) => any;
|
|
3110
|
+
/**
|
|
3111
|
+
* @internal
|
|
3112
|
+
*/
|
|
3113
|
+
export declare const AmiAggregationFilterSensitiveLog: (obj: AmiAggregation) => any;
|
|
3114
|
+
/**
|
|
3115
|
+
* @internal
|
|
3116
|
+
*/
|
|
3117
|
+
export declare const AwsEcrContainerAggregationFilterSensitiveLog: (obj: AwsEcrContainerAggregation) => any;
|
|
3118
|
+
/**
|
|
3119
|
+
* @internal
|
|
3120
|
+
*/
|
|
3121
|
+
export declare const MapFilterFilterSensitiveLog: (obj: MapFilter) => any;
|
|
3122
|
+
/**
|
|
3123
|
+
* @internal
|
|
3124
|
+
*/
|
|
3125
|
+
export declare const Ec2InstanceAggregationFilterSensitiveLog: (obj: Ec2InstanceAggregation) => any;
|
|
3126
|
+
/**
|
|
3127
|
+
* @internal
|
|
3128
|
+
*/
|
|
3129
|
+
export declare const FindingTypeAggregationFilterSensitiveLog: (obj: FindingTypeAggregation) => any;
|
|
3130
|
+
/**
|
|
3131
|
+
* @internal
|
|
3132
|
+
*/
|
|
3133
|
+
export declare const ImageLayerAggregationFilterSensitiveLog: (obj: ImageLayerAggregation) => any;
|
|
3134
|
+
/**
|
|
3135
|
+
* @internal
|
|
3136
|
+
*/
|
|
3137
|
+
export declare const PackageAggregationFilterSensitiveLog: (obj: PackageAggregation) => any;
|
|
3138
|
+
/**
|
|
3139
|
+
* @internal
|
|
3140
|
+
*/
|
|
3141
|
+
export declare const RepositoryAggregationFilterSensitiveLog: (obj: RepositoryAggregation) => any;
|
|
3142
|
+
/**
|
|
3143
|
+
* @internal
|
|
3144
|
+
*/
|
|
3145
|
+
export declare const TitleAggregationFilterSensitiveLog: (obj: TitleAggregation) => any;
|
|
3146
|
+
/**
|
|
3147
|
+
* @internal
|
|
3148
|
+
*/
|
|
3149
|
+
export declare const AggregationRequestFilterSensitiveLog: (obj: AggregationRequest) => any;
|
|
3150
|
+
/**
|
|
3151
|
+
* @internal
|
|
3152
|
+
*/
|
|
3153
|
+
export declare const AmiAggregationResponseFilterSensitiveLog: (obj: AmiAggregationResponse) => any;
|
|
3154
|
+
/**
|
|
3155
|
+
* @internal
|
|
3156
|
+
*/
|
|
3157
|
+
export declare const AwsEcrContainerAggregationResponseFilterSensitiveLog: (obj: AwsEcrContainerAggregationResponse) => any;
|
|
3158
|
+
/**
|
|
3159
|
+
* @internal
|
|
3160
|
+
*/
|
|
3161
|
+
export declare const Ec2InstanceAggregationResponseFilterSensitiveLog: (obj: Ec2InstanceAggregationResponse) => any;
|
|
3162
|
+
/**
|
|
3163
|
+
* @internal
|
|
3164
|
+
*/
|
|
3165
|
+
export declare const FindingTypeAggregationResponseFilterSensitiveLog: (obj: FindingTypeAggregationResponse) => any;
|
|
3166
|
+
/**
|
|
3167
|
+
* @internal
|
|
3168
|
+
*/
|
|
3169
|
+
export declare const ImageLayerAggregationResponseFilterSensitiveLog: (obj: ImageLayerAggregationResponse) => any;
|
|
3170
|
+
/**
|
|
3171
|
+
* @internal
|
|
3172
|
+
*/
|
|
3173
|
+
export declare const PackageAggregationResponseFilterSensitiveLog: (obj: PackageAggregationResponse) => any;
|
|
3174
|
+
/**
|
|
3175
|
+
* @internal
|
|
3176
|
+
*/
|
|
3177
|
+
export declare const RepositoryAggregationResponseFilterSensitiveLog: (obj: RepositoryAggregationResponse) => any;
|
|
3178
|
+
/**
|
|
3179
|
+
* @internal
|
|
3180
|
+
*/
|
|
3181
|
+
export declare const TitleAggregationResponseFilterSensitiveLog: (obj: TitleAggregationResponse) => any;
|
|
3182
|
+
/**
|
|
3183
|
+
* @internal
|
|
3184
|
+
*/
|
|
3185
|
+
export declare const AggregationResponseFilterSensitiveLog: (obj: AggregationResponse) => any;
|
|
3186
|
+
/**
|
|
3187
|
+
* @internal
|
|
3188
|
+
*/
|
|
3189
|
+
export declare const AssociateMemberRequestFilterSensitiveLog: (obj: AssociateMemberRequest) => any;
|
|
3190
|
+
/**
|
|
3191
|
+
* @internal
|
|
3192
|
+
*/
|
|
3193
|
+
export declare const AssociateMemberResponseFilterSensitiveLog: (obj: AssociateMemberResponse) => any;
|
|
3194
|
+
/**
|
|
3195
|
+
* @internal
|
|
3196
|
+
*/
|
|
3197
|
+
export declare const ValidationExceptionFieldFilterSensitiveLog: (obj: ValidationExceptionField) => any;
|
|
3198
|
+
/**
|
|
3199
|
+
* @internal
|
|
3200
|
+
*/
|
|
3201
|
+
export declare const AutoEnableFilterSensitiveLog: (obj: AutoEnable) => any;
|
|
3202
|
+
/**
|
|
3203
|
+
* @internal
|
|
3204
|
+
*/
|
|
3205
|
+
export declare const AwsEc2InstanceDetailsFilterSensitiveLog: (obj: AwsEc2InstanceDetails) => any;
|
|
3206
|
+
/**
|
|
3207
|
+
* @internal
|
|
3208
|
+
*/
|
|
3209
|
+
export declare const AwsEcrContainerImageDetailsFilterSensitiveLog: (obj: AwsEcrContainerImageDetails) => any;
|
|
3210
|
+
/**
|
|
3211
|
+
* @internal
|
|
3212
|
+
*/
|
|
3213
|
+
export declare const BatchGetAccountStatusRequestFilterSensitiveLog: (obj: BatchGetAccountStatusRequest) => any;
|
|
3214
|
+
/**
|
|
3215
|
+
* @internal
|
|
3216
|
+
*/
|
|
3217
|
+
export declare const FailedAccountFilterSensitiveLog: (obj: FailedAccount) => any;
|
|
3218
|
+
/**
|
|
3219
|
+
* @internal
|
|
3220
|
+
*/
|
|
3221
|
+
export declare const BatchGetAccountStatusResponseFilterSensitiveLog: (obj: BatchGetAccountStatusResponse) => any;
|
|
3222
|
+
/**
|
|
3223
|
+
* @internal
|
|
3224
|
+
*/
|
|
3225
|
+
export declare const BatchGetFreeTrialInfoRequestFilterSensitiveLog: (obj: BatchGetFreeTrialInfoRequest) => any;
|
|
3226
|
+
/**
|
|
3227
|
+
* @internal
|
|
3228
|
+
*/
|
|
3229
|
+
export declare const FreeTrialInfoFilterSensitiveLog: (obj: FreeTrialInfo) => any;
|
|
3230
|
+
/**
|
|
3231
|
+
* @internal
|
|
3232
|
+
*/
|
|
3233
|
+
export declare const FreeTrialAccountInfoFilterSensitiveLog: (obj: FreeTrialAccountInfo) => any;
|
|
3234
|
+
/**
|
|
3235
|
+
* @internal
|
|
3236
|
+
*/
|
|
3237
|
+
export declare const FreeTrialInfoErrorFilterSensitiveLog: (obj: FreeTrialInfoError) => any;
|
|
3238
|
+
/**
|
|
3239
|
+
* @internal
|
|
3240
|
+
*/
|
|
3241
|
+
export declare const BatchGetFreeTrialInfoResponseFilterSensitiveLog: (obj: BatchGetFreeTrialInfoResponse) => any;
|
|
3242
|
+
/**
|
|
3243
|
+
* @internal
|
|
3244
|
+
*/
|
|
3245
|
+
export declare const CancelFindingsReportRequestFilterSensitiveLog: (obj: CancelFindingsReportRequest) => any;
|
|
3246
|
+
/**
|
|
3247
|
+
* @internal
|
|
3248
|
+
*/
|
|
3249
|
+
export declare const CancelFindingsReportResponseFilterSensitiveLog: (obj: CancelFindingsReportResponse) => any;
|
|
3250
|
+
/**
|
|
3251
|
+
* @internal
|
|
3252
|
+
*/
|
|
3253
|
+
export declare const CountsFilterSensitiveLog: (obj: Counts) => any;
|
|
3254
|
+
/**
|
|
3255
|
+
* @internal
|
|
3256
|
+
*/
|
|
3257
|
+
export declare const CoverageStringFilterFilterSensitiveLog: (obj: CoverageStringFilter) => any;
|
|
3258
|
+
/**
|
|
3259
|
+
* @internal
|
|
3260
|
+
*/
|
|
3261
|
+
export declare const CoverageMapFilterFilterSensitiveLog: (obj: CoverageMapFilter) => any;
|
|
3262
|
+
/**
|
|
3263
|
+
* @internal
|
|
3264
|
+
*/
|
|
3265
|
+
export declare const CoverageFilterCriteriaFilterSensitiveLog: (obj: CoverageFilterCriteria) => any;
|
|
3266
|
+
/**
|
|
3267
|
+
* @internal
|
|
3268
|
+
*/
|
|
3269
|
+
export declare const Ec2MetadataFilterSensitiveLog: (obj: Ec2Metadata) => any;
|
|
3270
|
+
/**
|
|
3271
|
+
* @internal
|
|
3272
|
+
*/
|
|
3273
|
+
export declare const EcrContainerImageMetadataFilterSensitiveLog: (obj: EcrContainerImageMetadata) => any;
|
|
3274
|
+
/**
|
|
3275
|
+
* @internal
|
|
3276
|
+
*/
|
|
3277
|
+
export declare const EcrRepositoryMetadataFilterSensitiveLog: (obj: EcrRepositoryMetadata) => any;
|
|
3278
|
+
/**
|
|
3279
|
+
* @internal
|
|
3280
|
+
*/
|
|
3281
|
+
export declare const ResourceScanMetadataFilterSensitiveLog: (obj: ResourceScanMetadata) => any;
|
|
3282
|
+
/**
|
|
3283
|
+
* @internal
|
|
3284
|
+
*/
|
|
3285
|
+
export declare const ScanStatusFilterSensitiveLog: (obj: ScanStatus) => any;
|
|
3286
|
+
/**
|
|
3287
|
+
* @internal
|
|
3288
|
+
*/
|
|
3289
|
+
export declare const CoveredResourceFilterSensitiveLog: (obj: CoveredResource) => any;
|
|
3290
|
+
/**
|
|
3291
|
+
* @internal
|
|
3292
|
+
*/
|
|
3293
|
+
export declare const DateFilterFilterSensitiveLog: (obj: DateFilter) => any;
|
|
3294
|
+
/**
|
|
3295
|
+
* @internal
|
|
3296
|
+
*/
|
|
3297
|
+
export declare const NumberFilterFilterSensitiveLog: (obj: NumberFilter) => any;
|
|
3298
|
+
/**
|
|
3299
|
+
* @internal
|
|
3300
|
+
*/
|
|
3301
|
+
export declare const PortRangeFilterFilterSensitiveLog: (obj: PortRangeFilter) => any;
|
|
3302
|
+
/**
|
|
3303
|
+
* @internal
|
|
3304
|
+
*/
|
|
3305
|
+
export declare const PackageFilterFilterSensitiveLog: (obj: PackageFilter) => any;
|
|
3306
|
+
/**
|
|
3307
|
+
* @internal
|
|
3308
|
+
*/
|
|
3309
|
+
export declare const FilterCriteriaFilterSensitiveLog: (obj: FilterCriteria) => any;
|
|
3310
|
+
/**
|
|
3311
|
+
* @internal
|
|
3312
|
+
*/
|
|
3313
|
+
export declare const CreateFilterRequestFilterSensitiveLog: (obj: CreateFilterRequest) => any;
|
|
3314
|
+
/**
|
|
3315
|
+
* @internal
|
|
3316
|
+
*/
|
|
3317
|
+
export declare const CreateFilterResponseFilterSensitiveLog: (obj: CreateFilterResponse) => any;
|
|
3318
|
+
/**
|
|
3319
|
+
* @internal
|
|
3320
|
+
*/
|
|
3321
|
+
export declare const DestinationFilterSensitiveLog: (obj: Destination) => any;
|
|
3322
|
+
/**
|
|
3323
|
+
* @internal
|
|
3324
|
+
*/
|
|
3325
|
+
export declare const CreateFindingsReportRequestFilterSensitiveLog: (obj: CreateFindingsReportRequest) => any;
|
|
3326
|
+
/**
|
|
3327
|
+
* @internal
|
|
3328
|
+
*/
|
|
3329
|
+
export declare const CreateFindingsReportResponseFilterSensitiveLog: (obj: CreateFindingsReportResponse) => any;
|
|
3330
|
+
/**
|
|
3331
|
+
* @internal
|
|
3332
|
+
*/
|
|
3333
|
+
export declare const CvssScoreFilterSensitiveLog: (obj: CvssScore) => any;
|
|
3334
|
+
/**
|
|
3335
|
+
* @internal
|
|
3336
|
+
*/
|
|
3337
|
+
export declare const CvssScoreAdjustmentFilterSensitiveLog: (obj: CvssScoreAdjustment) => any;
|
|
3338
|
+
/**
|
|
3339
|
+
* @internal
|
|
3340
|
+
*/
|
|
3341
|
+
export declare const CvssScoreDetailsFilterSensitiveLog: (obj: CvssScoreDetails) => any;
|
|
3342
|
+
/**
|
|
3343
|
+
* @internal
|
|
3344
|
+
*/
|
|
3345
|
+
export declare const DelegatedAdminFilterSensitiveLog: (obj: DelegatedAdmin) => any;
|
|
3346
|
+
/**
|
|
3347
|
+
* @internal
|
|
3348
|
+
*/
|
|
3349
|
+
export declare const DelegatedAdminAccountFilterSensitiveLog: (obj: DelegatedAdminAccount) => any;
|
|
3350
|
+
/**
|
|
3351
|
+
* @internal
|
|
3352
|
+
*/
|
|
3353
|
+
export declare const DeleteFilterRequestFilterSensitiveLog: (obj: DeleteFilterRequest) => any;
|
|
3354
|
+
/**
|
|
3355
|
+
* @internal
|
|
3356
|
+
*/
|
|
3357
|
+
export declare const DeleteFilterResponseFilterSensitiveLog: (obj: DeleteFilterResponse) => any;
|
|
3358
|
+
/**
|
|
3359
|
+
* @internal
|
|
3360
|
+
*/
|
|
3361
|
+
export declare const DescribeOrganizationConfigurationRequestFilterSensitiveLog: (obj: DescribeOrganizationConfigurationRequest) => any;
|
|
3362
|
+
/**
|
|
3363
|
+
* @internal
|
|
3364
|
+
*/
|
|
3365
|
+
export declare const DescribeOrganizationConfigurationResponseFilterSensitiveLog: (obj: DescribeOrganizationConfigurationResponse) => any;
|
|
3366
|
+
/**
|
|
3367
|
+
* @internal
|
|
3368
|
+
*/
|
|
3369
|
+
export declare const DisableRequestFilterSensitiveLog: (obj: DisableRequest) => any;
|
|
3370
|
+
/**
|
|
3371
|
+
* @internal
|
|
3372
|
+
*/
|
|
3373
|
+
export declare const DisableResponseFilterSensitiveLog: (obj: DisableResponse) => any;
|
|
3374
|
+
/**
|
|
3375
|
+
* @internal
|
|
3376
|
+
*/
|
|
3377
|
+
export declare const DisableDelegatedAdminAccountRequestFilterSensitiveLog: (obj: DisableDelegatedAdminAccountRequest) => any;
|
|
3378
|
+
/**
|
|
3379
|
+
* @internal
|
|
3380
|
+
*/
|
|
3381
|
+
export declare const DisableDelegatedAdminAccountResponseFilterSensitiveLog: (obj: DisableDelegatedAdminAccountResponse) => any;
|
|
3382
|
+
/**
|
|
3383
|
+
* @internal
|
|
3384
|
+
*/
|
|
3385
|
+
export declare const DisassociateMemberRequestFilterSensitiveLog: (obj: DisassociateMemberRequest) => any;
|
|
3386
|
+
/**
|
|
3387
|
+
* @internal
|
|
3388
|
+
*/
|
|
3389
|
+
export declare const DisassociateMemberResponseFilterSensitiveLog: (obj: DisassociateMemberResponse) => any;
|
|
3390
|
+
/**
|
|
3391
|
+
* @internal
|
|
3392
|
+
*/
|
|
3393
|
+
export declare const EcrConfigurationFilterSensitiveLog: (obj: EcrConfiguration) => any;
|
|
3394
|
+
/**
|
|
3395
|
+
* @internal
|
|
3396
|
+
*/
|
|
3397
|
+
export declare const EcrRescanDurationStateFilterSensitiveLog: (obj: EcrRescanDurationState) => any;
|
|
3398
|
+
/**
|
|
3399
|
+
* @internal
|
|
3400
|
+
*/
|
|
3401
|
+
export declare const EcrConfigurationStateFilterSensitiveLog: (obj: EcrConfigurationState) => any;
|
|
3402
|
+
/**
|
|
3403
|
+
* @internal
|
|
3404
|
+
*/
|
|
3405
|
+
export declare const EnableRequestFilterSensitiveLog: (obj: EnableRequest) => any;
|
|
3406
|
+
/**
|
|
3407
|
+
* @internal
|
|
3408
|
+
*/
|
|
3409
|
+
export declare const EnableResponseFilterSensitiveLog: (obj: EnableResponse) => any;
|
|
3410
|
+
/**
|
|
3411
|
+
* @internal
|
|
3412
|
+
*/
|
|
3413
|
+
export declare const EnableDelegatedAdminAccountRequestFilterSensitiveLog: (obj: EnableDelegatedAdminAccountRequest) => any;
|
|
3414
|
+
/**
|
|
3415
|
+
* @internal
|
|
3416
|
+
*/
|
|
3417
|
+
export declare const EnableDelegatedAdminAccountResponseFilterSensitiveLog: (obj: EnableDelegatedAdminAccountResponse) => any;
|
|
3418
|
+
/**
|
|
3419
|
+
* @internal
|
|
3420
|
+
*/
|
|
3421
|
+
export declare const FilterFilterSensitiveLog: (obj: Filter) => any;
|
|
3422
|
+
/**
|
|
3423
|
+
* @internal
|
|
3424
|
+
*/
|
|
3425
|
+
export declare const InspectorScoreDetailsFilterSensitiveLog: (obj: InspectorScoreDetails) => any;
|
|
3426
|
+
/**
|
|
3427
|
+
* @internal
|
|
3428
|
+
*/
|
|
3429
|
+
export declare const StepFilterSensitiveLog: (obj: Step) => any;
|
|
3430
|
+
/**
|
|
3431
|
+
* @internal
|
|
3432
|
+
*/
|
|
3433
|
+
export declare const NetworkPathFilterSensitiveLog: (obj: NetworkPath) => any;
|
|
3434
|
+
/**
|
|
3435
|
+
* @internal
|
|
3436
|
+
*/
|
|
3437
|
+
export declare const PortRangeFilterSensitiveLog: (obj: PortRange) => any;
|
|
3438
|
+
/**
|
|
3439
|
+
* @internal
|
|
3440
|
+
*/
|
|
3441
|
+
export declare const NetworkReachabilityDetailsFilterSensitiveLog: (obj: NetworkReachabilityDetails) => any;
|
|
3442
|
+
/**
|
|
3443
|
+
* @internal
|
|
3444
|
+
*/
|
|
3445
|
+
export declare const VulnerablePackageFilterSensitiveLog: (obj: VulnerablePackage) => any;
|
|
3446
|
+
/**
|
|
3447
|
+
* @internal
|
|
3448
|
+
*/
|
|
3449
|
+
export declare const PackageVulnerabilityDetailsFilterSensitiveLog: (obj: PackageVulnerabilityDetails) => any;
|
|
3450
|
+
/**
|
|
3451
|
+
* @internal
|
|
3452
|
+
*/
|
|
3453
|
+
export declare const RecommendationFilterSensitiveLog: (obj: Recommendation) => any;
|
|
3454
|
+
/**
|
|
3455
|
+
* @internal
|
|
3456
|
+
*/
|
|
3457
|
+
export declare const RemediationFilterSensitiveLog: (obj: Remediation) => any;
|
|
3458
|
+
/**
|
|
3459
|
+
* @internal
|
|
3460
|
+
*/
|
|
3461
|
+
export declare const ResourceDetailsFilterSensitiveLog: (obj: ResourceDetails) => any;
|
|
3462
|
+
/**
|
|
3463
|
+
* @internal
|
|
3464
|
+
*/
|
|
3465
|
+
export declare const ResourceFilterSensitiveLog: (obj: Resource) => any;
|
|
3466
|
+
/**
|
|
3467
|
+
* @internal
|
|
3468
|
+
*/
|
|
3469
|
+
export declare const FindingFilterSensitiveLog: (obj: Finding) => any;
|
|
3470
|
+
/**
|
|
3471
|
+
* @internal
|
|
3472
|
+
*/
|
|
3473
|
+
export declare const GetConfigurationRequestFilterSensitiveLog: (obj: GetConfigurationRequest) => any;
|
|
3474
|
+
/**
|
|
3475
|
+
* @internal
|
|
3476
|
+
*/
|
|
3477
|
+
export declare const GetConfigurationResponseFilterSensitiveLog: (obj: GetConfigurationResponse) => any;
|
|
3478
|
+
/**
|
|
3479
|
+
* @internal
|
|
3480
|
+
*/
|
|
3481
|
+
export declare const GetDelegatedAdminAccountRequestFilterSensitiveLog: (obj: GetDelegatedAdminAccountRequest) => any;
|
|
3482
|
+
/**
|
|
3483
|
+
* @internal
|
|
3484
|
+
*/
|
|
3485
|
+
export declare const GetDelegatedAdminAccountResponseFilterSensitiveLog: (obj: GetDelegatedAdminAccountResponse) => any;
|
|
3486
|
+
/**
|
|
3487
|
+
* @internal
|
|
3488
|
+
*/
|
|
3489
|
+
export declare const GetFindingsReportStatusRequestFilterSensitiveLog: (obj: GetFindingsReportStatusRequest) => any;
|
|
3490
|
+
/**
|
|
3491
|
+
* @internal
|
|
3492
|
+
*/
|
|
3493
|
+
export declare const GetFindingsReportStatusResponseFilterSensitiveLog: (obj: GetFindingsReportStatusResponse) => any;
|
|
3494
|
+
/**
|
|
3495
|
+
* @internal
|
|
3496
|
+
*/
|
|
3497
|
+
export declare const GetMemberRequestFilterSensitiveLog: (obj: GetMemberRequest) => any;
|
|
3498
|
+
/**
|
|
3499
|
+
* @internal
|
|
3500
|
+
*/
|
|
3501
|
+
export declare const MemberFilterSensitiveLog: (obj: Member) => any;
|
|
3502
|
+
/**
|
|
3503
|
+
* @internal
|
|
3504
|
+
*/
|
|
3505
|
+
export declare const GetMemberResponseFilterSensitiveLog: (obj: GetMemberResponse) => any;
|
|
3506
|
+
/**
|
|
3507
|
+
* @internal
|
|
3508
|
+
*/
|
|
3509
|
+
export declare const ListAccountPermissionsRequestFilterSensitiveLog: (obj: ListAccountPermissionsRequest) => any;
|
|
3510
|
+
/**
|
|
3511
|
+
* @internal
|
|
3512
|
+
*/
|
|
3513
|
+
export declare const PermissionFilterSensitiveLog: (obj: Permission) => any;
|
|
3514
|
+
/**
|
|
3515
|
+
* @internal
|
|
3516
|
+
*/
|
|
3517
|
+
export declare const ListAccountPermissionsResponseFilterSensitiveLog: (obj: ListAccountPermissionsResponse) => any;
|
|
3518
|
+
/**
|
|
3519
|
+
* @internal
|
|
3520
|
+
*/
|
|
3521
|
+
export declare const ListCoverageRequestFilterSensitiveLog: (obj: ListCoverageRequest) => any;
|
|
3522
|
+
/**
|
|
3523
|
+
* @internal
|
|
3524
|
+
*/
|
|
3525
|
+
export declare const ListCoverageResponseFilterSensitiveLog: (obj: ListCoverageResponse) => any;
|
|
3526
|
+
/**
|
|
3527
|
+
* @internal
|
|
3528
|
+
*/
|
|
3529
|
+
export declare const ListCoverageStatisticsRequestFilterSensitiveLog: (obj: ListCoverageStatisticsRequest) => any;
|
|
3530
|
+
/**
|
|
3531
|
+
* @internal
|
|
3532
|
+
*/
|
|
3533
|
+
export declare const ListCoverageStatisticsResponseFilterSensitiveLog: (obj: ListCoverageStatisticsResponse) => any;
|
|
3534
|
+
/**
|
|
3535
|
+
* @internal
|
|
3536
|
+
*/
|
|
3537
|
+
export declare const ListDelegatedAdminAccountsRequestFilterSensitiveLog: (obj: ListDelegatedAdminAccountsRequest) => any;
|
|
3538
|
+
/**
|
|
3539
|
+
* @internal
|
|
3540
|
+
*/
|
|
3541
|
+
export declare const ListDelegatedAdminAccountsResponseFilterSensitiveLog: (obj: ListDelegatedAdminAccountsResponse) => any;
|
|
3542
|
+
/**
|
|
3543
|
+
* @internal
|
|
3544
|
+
*/
|
|
3545
|
+
export declare const ListFiltersRequestFilterSensitiveLog: (obj: ListFiltersRequest) => any;
|
|
3546
|
+
/**
|
|
3547
|
+
* @internal
|
|
3548
|
+
*/
|
|
3549
|
+
export declare const ListFiltersResponseFilterSensitiveLog: (obj: ListFiltersResponse) => any;
|
|
3550
|
+
/**
|
|
3551
|
+
* @internal
|
|
3552
|
+
*/
|
|
3553
|
+
export declare const ListFindingAggregationsRequestFilterSensitiveLog: (obj: ListFindingAggregationsRequest) => any;
|
|
3554
|
+
/**
|
|
3555
|
+
* @internal
|
|
3556
|
+
*/
|
|
3557
|
+
export declare const ListFindingAggregationsResponseFilterSensitiveLog: (obj: ListFindingAggregationsResponse) => any;
|
|
3558
|
+
/**
|
|
3559
|
+
* @internal
|
|
3560
|
+
*/
|
|
3561
|
+
export declare const SortCriteriaFilterSensitiveLog: (obj: SortCriteria) => any;
|
|
3562
|
+
/**
|
|
3563
|
+
* @internal
|
|
3564
|
+
*/
|
|
3565
|
+
export declare const ListFindingsRequestFilterSensitiveLog: (obj: ListFindingsRequest) => any;
|
|
3566
|
+
/**
|
|
3567
|
+
* @internal
|
|
3568
|
+
*/
|
|
3569
|
+
export declare const ListFindingsResponseFilterSensitiveLog: (obj: ListFindingsResponse) => any;
|
|
3570
|
+
/**
|
|
3571
|
+
* @internal
|
|
3572
|
+
*/
|
|
3573
|
+
export declare const ListMembersRequestFilterSensitiveLog: (obj: ListMembersRequest) => any;
|
|
3574
|
+
/**
|
|
3575
|
+
* @internal
|
|
3576
|
+
*/
|
|
3577
|
+
export declare const ListMembersResponseFilterSensitiveLog: (obj: ListMembersResponse) => any;
|
|
3578
|
+
/**
|
|
3579
|
+
* @internal
|
|
3580
|
+
*/
|
|
3581
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
3582
|
+
/**
|
|
3583
|
+
* @internal
|
|
3584
|
+
*/
|
|
3585
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
3586
|
+
/**
|
|
3587
|
+
* @internal
|
|
3588
|
+
*/
|
|
3589
|
+
export declare const ListUsageTotalsRequestFilterSensitiveLog: (obj: ListUsageTotalsRequest) => any;
|
|
3590
|
+
/**
|
|
3591
|
+
* @internal
|
|
3592
|
+
*/
|
|
3593
|
+
export declare const UsageFilterSensitiveLog: (obj: Usage) => any;
|
|
3594
|
+
/**
|
|
3595
|
+
* @internal
|
|
3596
|
+
*/
|
|
3597
|
+
export declare const UsageTotalFilterSensitiveLog: (obj: UsageTotal) => any;
|
|
3598
|
+
/**
|
|
3599
|
+
* @internal
|
|
3600
|
+
*/
|
|
3601
|
+
export declare const ListUsageTotalsResponseFilterSensitiveLog: (obj: ListUsageTotalsResponse) => any;
|
|
3602
|
+
/**
|
|
3603
|
+
* @internal
|
|
3604
|
+
*/
|
|
3605
|
+
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
3606
|
+
/**
|
|
3607
|
+
* @internal
|
|
3608
|
+
*/
|
|
3609
|
+
export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
3610
|
+
/**
|
|
3611
|
+
* @internal
|
|
3612
|
+
*/
|
|
3613
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
3614
|
+
/**
|
|
3615
|
+
* @internal
|
|
3616
|
+
*/
|
|
3617
|
+
export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
3618
|
+
/**
|
|
3619
|
+
* @internal
|
|
3620
|
+
*/
|
|
3621
|
+
export declare const UpdateConfigurationRequestFilterSensitiveLog: (obj: UpdateConfigurationRequest) => any;
|
|
3622
|
+
/**
|
|
3623
|
+
* @internal
|
|
3624
|
+
*/
|
|
3625
|
+
export declare const UpdateConfigurationResponseFilterSensitiveLog: (obj: UpdateConfigurationResponse) => any;
|
|
3626
|
+
/**
|
|
3627
|
+
* @internal
|
|
3628
|
+
*/
|
|
3629
|
+
export declare const UpdateFilterRequestFilterSensitiveLog: (obj: UpdateFilterRequest) => any;
|
|
3630
|
+
/**
|
|
3631
|
+
* @internal
|
|
3632
|
+
*/
|
|
3633
|
+
export declare const UpdateFilterResponseFilterSensitiveLog: (obj: UpdateFilterResponse) => any;
|
|
3634
|
+
/**
|
|
3635
|
+
* @internal
|
|
3636
|
+
*/
|
|
3637
|
+
export declare const UpdateOrganizationConfigurationRequestFilterSensitiveLog: (obj: UpdateOrganizationConfigurationRequest) => any;
|
|
3638
|
+
/**
|
|
3639
|
+
* @internal
|
|
3640
|
+
*/
|
|
3641
|
+
export declare const UpdateOrganizationConfigurationResponseFilterSensitiveLog: (obj: UpdateOrganizationConfigurationResponse) => any;
|