@aws-sdk/client-inspector2 3.170.0 → 3.171.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 +8 -0
- package/dist-types/ts3.4/Inspector2.d.ts +0 -32
- package/dist-types/ts3.4/Inspector2Client.d.ts +0 -25
- package/dist-types/ts3.4/commands/AssociateMemberCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/BatchGetAccountStatusCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/BatchGetFreeTrialInfoCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CancelFindingsReportCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateFilterCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateFindingsReportCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteFilterCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeOrganizationConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DisableCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DisableDelegatedAdminAccountCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DisassociateMemberCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/EnableCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/EnableDelegatedAdminAccountCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetDelegatedAdminAccountCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetFindingsReportStatusCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetMemberCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListAccountPermissionsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListCoverageCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListCoverageStatisticsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListDelegatedAdminAccountsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListFiltersCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListFindingAggregationsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListFindingsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListMembersCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListUsageTotalsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateFilterCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateOrganizationConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/Inspector2ServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -560
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/package.json +26 -26
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Inspector2ServiceException as __BaseException } from "./Inspector2ServiceException";
|
|
3
|
-
|
|
4
3
|
export declare class AccessDeniedException extends __BaseException {
|
|
5
4
|
readonly name: "AccessDeniedException";
|
|
6
5
|
readonly $fault: "client";
|
|
7
|
-
|
|
8
6
|
constructor(
|
|
9
7
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
10
8
|
);
|
|
@@ -17,18 +15,13 @@ export declare enum Status {
|
|
|
17
15
|
SUSPENDED = "SUSPENDED",
|
|
18
16
|
SUSPENDING = "SUSPENDING",
|
|
19
17
|
}
|
|
20
|
-
|
|
21
18
|
export interface ResourceStatus {
|
|
22
19
|
ec2: Status | string | undefined;
|
|
23
|
-
|
|
24
20
|
ecr: Status | string | undefined;
|
|
25
21
|
}
|
|
26
|
-
|
|
27
22
|
export interface Account {
|
|
28
23
|
accountId: string | undefined;
|
|
29
|
-
|
|
30
24
|
status: Status | string | undefined;
|
|
31
|
-
|
|
32
25
|
resourceStatus: ResourceStatus | undefined;
|
|
33
26
|
}
|
|
34
27
|
export declare enum AggregationFindingType {
|
|
@@ -48,30 +41,20 @@ export declare enum SortOrder {
|
|
|
48
41
|
ASC = "ASC",
|
|
49
42
|
DESC = "DESC",
|
|
50
43
|
}
|
|
51
|
-
|
|
52
44
|
export interface AccountAggregation {
|
|
53
45
|
findingType?: AggregationFindingType | string;
|
|
54
|
-
|
|
55
46
|
resourceType?: AggregationResourceType | string;
|
|
56
|
-
|
|
57
47
|
sortOrder?: SortOrder | string;
|
|
58
|
-
|
|
59
48
|
sortBy?: AccountSortBy | string;
|
|
60
49
|
}
|
|
61
|
-
|
|
62
50
|
export interface SeverityCounts {
|
|
63
51
|
all?: number;
|
|
64
|
-
|
|
65
52
|
medium?: number;
|
|
66
|
-
|
|
67
53
|
high?: number;
|
|
68
|
-
|
|
69
54
|
critical?: number;
|
|
70
55
|
}
|
|
71
|
-
|
|
72
56
|
export interface AccountAggregationResponse {
|
|
73
57
|
accountId?: string;
|
|
74
|
-
|
|
75
58
|
severityCounts?: SeverityCounts;
|
|
76
59
|
}
|
|
77
60
|
export declare enum ErrorCode {
|
|
@@ -90,26 +73,18 @@ export declare enum ErrorCode {
|
|
|
90
73
|
SSM_UNAVAILABLE = "SSM_UNAVAILABLE",
|
|
91
74
|
SUSPEND_IN_PROGRESS = "SUSPEND_IN_PROGRESS",
|
|
92
75
|
}
|
|
93
|
-
|
|
94
76
|
export interface State {
|
|
95
77
|
status: Status | string | undefined;
|
|
96
|
-
|
|
97
78
|
errorCode: ErrorCode | string | undefined;
|
|
98
|
-
|
|
99
79
|
errorMessage: string | undefined;
|
|
100
80
|
}
|
|
101
|
-
|
|
102
81
|
export interface ResourceState {
|
|
103
82
|
ec2: State | undefined;
|
|
104
|
-
|
|
105
83
|
ecr: State | undefined;
|
|
106
84
|
}
|
|
107
|
-
|
|
108
85
|
export interface AccountState {
|
|
109
86
|
accountId: string | undefined;
|
|
110
|
-
|
|
111
87
|
state: State | undefined;
|
|
112
|
-
|
|
113
88
|
resourceState: ResourceState | undefined;
|
|
114
89
|
}
|
|
115
90
|
export declare enum StringComparison {
|
|
@@ -117,10 +92,8 @@ export declare enum StringComparison {
|
|
|
117
92
|
NOT_EQUALS = "NOT_EQUALS",
|
|
118
93
|
PREFIX = "PREFIX",
|
|
119
94
|
}
|
|
120
|
-
|
|
121
95
|
export interface StringFilter {
|
|
122
96
|
comparison: StringComparison | string | undefined;
|
|
123
|
-
|
|
124
97
|
value: string | undefined;
|
|
125
98
|
}
|
|
126
99
|
export declare enum AmiSortBy {
|
|
@@ -129,12 +102,9 @@ export declare enum AmiSortBy {
|
|
|
129
102
|
CRITICAL = "CRITICAL",
|
|
130
103
|
HIGH = "HIGH",
|
|
131
104
|
}
|
|
132
|
-
|
|
133
105
|
export interface AmiAggregation {
|
|
134
106
|
amis?: StringFilter[];
|
|
135
|
-
|
|
136
107
|
sortOrder?: SortOrder | string;
|
|
137
|
-
|
|
138
108
|
sortBy?: AmiSortBy | string;
|
|
139
109
|
}
|
|
140
110
|
export declare enum AwsEcrContainerSortBy {
|
|
@@ -142,31 +112,21 @@ export declare enum AwsEcrContainerSortBy {
|
|
|
142
112
|
CRITICAL = "CRITICAL",
|
|
143
113
|
HIGH = "HIGH",
|
|
144
114
|
}
|
|
145
|
-
|
|
146
115
|
export interface AwsEcrContainerAggregation {
|
|
147
116
|
resourceIds?: StringFilter[];
|
|
148
|
-
|
|
149
117
|
imageShas?: StringFilter[];
|
|
150
|
-
|
|
151
118
|
repositories?: StringFilter[];
|
|
152
|
-
|
|
153
119
|
architectures?: StringFilter[];
|
|
154
|
-
|
|
155
120
|
imageTags?: StringFilter[];
|
|
156
|
-
|
|
157
121
|
sortOrder?: SortOrder | string;
|
|
158
|
-
|
|
159
122
|
sortBy?: AwsEcrContainerSortBy | string;
|
|
160
123
|
}
|
|
161
124
|
export declare enum MapComparison {
|
|
162
125
|
EQUALS = "EQUALS",
|
|
163
126
|
}
|
|
164
|
-
|
|
165
127
|
export interface MapFilter {
|
|
166
128
|
comparison: MapComparison | string | undefined;
|
|
167
|
-
|
|
168
129
|
key: string | undefined;
|
|
169
|
-
|
|
170
130
|
value?: string;
|
|
171
131
|
}
|
|
172
132
|
export declare enum Ec2InstanceSortBy {
|
|
@@ -175,18 +135,12 @@ export declare enum Ec2InstanceSortBy {
|
|
|
175
135
|
HIGH = "HIGH",
|
|
176
136
|
NETWORK_FINDINGS = "NETWORK_FINDINGS",
|
|
177
137
|
}
|
|
178
|
-
|
|
179
138
|
export interface Ec2InstanceAggregation {
|
|
180
139
|
amis?: StringFilter[];
|
|
181
|
-
|
|
182
140
|
operatingSystems?: StringFilter[];
|
|
183
|
-
|
|
184
141
|
instanceIds?: StringFilter[];
|
|
185
|
-
|
|
186
142
|
instanceTags?: MapFilter[];
|
|
187
|
-
|
|
188
143
|
sortOrder?: SortOrder | string;
|
|
189
|
-
|
|
190
144
|
sortBy?: Ec2InstanceSortBy | string;
|
|
191
145
|
}
|
|
192
146
|
export declare enum FindingTypeSortBy {
|
|
@@ -194,14 +148,10 @@ export declare enum FindingTypeSortBy {
|
|
|
194
148
|
CRITICAL = "CRITICAL",
|
|
195
149
|
HIGH = "HIGH",
|
|
196
150
|
}
|
|
197
|
-
|
|
198
151
|
export interface FindingTypeAggregation {
|
|
199
152
|
findingType?: AggregationFindingType | string;
|
|
200
|
-
|
|
201
153
|
resourceType?: AggregationResourceType | string;
|
|
202
|
-
|
|
203
154
|
sortOrder?: SortOrder | string;
|
|
204
|
-
|
|
205
155
|
sortBy?: FindingTypeSortBy | string;
|
|
206
156
|
}
|
|
207
157
|
export declare enum ImageLayerSortBy {
|
|
@@ -209,16 +159,11 @@ export declare enum ImageLayerSortBy {
|
|
|
209
159
|
CRITICAL = "CRITICAL",
|
|
210
160
|
HIGH = "HIGH",
|
|
211
161
|
}
|
|
212
|
-
|
|
213
162
|
export interface ImageLayerAggregation {
|
|
214
163
|
repositories?: StringFilter[];
|
|
215
|
-
|
|
216
164
|
resourceIds?: StringFilter[];
|
|
217
|
-
|
|
218
165
|
layerHashes?: StringFilter[];
|
|
219
|
-
|
|
220
166
|
sortOrder?: SortOrder | string;
|
|
221
|
-
|
|
222
167
|
sortBy?: ImageLayerSortBy | string;
|
|
223
168
|
}
|
|
224
169
|
export declare enum PackageSortBy {
|
|
@@ -226,12 +171,9 @@ export declare enum PackageSortBy {
|
|
|
226
171
|
CRITICAL = "CRITICAL",
|
|
227
172
|
HIGH = "HIGH",
|
|
228
173
|
}
|
|
229
|
-
|
|
230
174
|
export interface PackageAggregation {
|
|
231
175
|
packageNames?: StringFilter[];
|
|
232
|
-
|
|
233
176
|
sortOrder?: SortOrder | string;
|
|
234
|
-
|
|
235
177
|
sortBy?: PackageSortBy | string;
|
|
236
178
|
}
|
|
237
179
|
export declare enum RepositorySortBy {
|
|
@@ -240,12 +182,9 @@ export declare enum RepositorySortBy {
|
|
|
240
182
|
CRITICAL = "CRITICAL",
|
|
241
183
|
HIGH = "HIGH",
|
|
242
184
|
}
|
|
243
|
-
|
|
244
185
|
export interface RepositoryAggregation {
|
|
245
186
|
repositories?: StringFilter[];
|
|
246
|
-
|
|
247
187
|
sortOrder?: SortOrder | string;
|
|
248
|
-
|
|
249
188
|
sortBy?: RepositorySortBy | string;
|
|
250
189
|
}
|
|
251
190
|
export declare enum TitleSortBy {
|
|
@@ -253,19 +192,13 @@ export declare enum TitleSortBy {
|
|
|
253
192
|
CRITICAL = "CRITICAL",
|
|
254
193
|
HIGH = "HIGH",
|
|
255
194
|
}
|
|
256
|
-
|
|
257
195
|
export interface TitleAggregation {
|
|
258
196
|
titles?: StringFilter[];
|
|
259
|
-
|
|
260
197
|
vulnerabilityIds?: StringFilter[];
|
|
261
|
-
|
|
262
198
|
resourceType?: AggregationResourceType | string;
|
|
263
|
-
|
|
264
199
|
sortOrder?: SortOrder | string;
|
|
265
|
-
|
|
266
200
|
sortBy?: TitleSortBy | string;
|
|
267
201
|
}
|
|
268
|
-
|
|
269
202
|
export declare type AggregationRequest =
|
|
270
203
|
| AggregationRequest.AccountAggregationMember
|
|
271
204
|
| AggregationRequest.AmiAggregationMember
|
|
@@ -290,7 +223,6 @@ export declare namespace AggregationRequest {
|
|
|
290
223
|
titleAggregation?: never;
|
|
291
224
|
$unknown?: never;
|
|
292
225
|
}
|
|
293
|
-
|
|
294
226
|
interface AmiAggregationMember {
|
|
295
227
|
accountAggregation?: never;
|
|
296
228
|
amiAggregation: AmiAggregation;
|
|
@@ -303,7 +235,6 @@ export declare namespace AggregationRequest {
|
|
|
303
235
|
titleAggregation?: never;
|
|
304
236
|
$unknown?: never;
|
|
305
237
|
}
|
|
306
|
-
|
|
307
238
|
interface AwsEcrContainerAggregationMember {
|
|
308
239
|
accountAggregation?: never;
|
|
309
240
|
amiAggregation?: never;
|
|
@@ -316,7 +247,6 @@ export declare namespace AggregationRequest {
|
|
|
316
247
|
titleAggregation?: never;
|
|
317
248
|
$unknown?: never;
|
|
318
249
|
}
|
|
319
|
-
|
|
320
250
|
interface Ec2InstanceAggregationMember {
|
|
321
251
|
accountAggregation?: never;
|
|
322
252
|
amiAggregation?: never;
|
|
@@ -329,7 +259,6 @@ export declare namespace AggregationRequest {
|
|
|
329
259
|
titleAggregation?: never;
|
|
330
260
|
$unknown?: never;
|
|
331
261
|
}
|
|
332
|
-
|
|
333
262
|
interface FindingTypeAggregationMember {
|
|
334
263
|
accountAggregation?: never;
|
|
335
264
|
amiAggregation?: never;
|
|
@@ -342,7 +271,6 @@ export declare namespace AggregationRequest {
|
|
|
342
271
|
titleAggregation?: never;
|
|
343
272
|
$unknown?: never;
|
|
344
273
|
}
|
|
345
|
-
|
|
346
274
|
interface ImageLayerAggregationMember {
|
|
347
275
|
accountAggregation?: never;
|
|
348
276
|
amiAggregation?: never;
|
|
@@ -355,7 +283,6 @@ export declare namespace AggregationRequest {
|
|
|
355
283
|
titleAggregation?: never;
|
|
356
284
|
$unknown?: never;
|
|
357
285
|
}
|
|
358
|
-
|
|
359
286
|
interface PackageAggregationMember {
|
|
360
287
|
accountAggregation?: never;
|
|
361
288
|
amiAggregation?: never;
|
|
@@ -368,7 +295,6 @@ export declare namespace AggregationRequest {
|
|
|
368
295
|
titleAggregation?: never;
|
|
369
296
|
$unknown?: never;
|
|
370
297
|
}
|
|
371
|
-
|
|
372
298
|
interface RepositoryAggregationMember {
|
|
373
299
|
accountAggregation?: never;
|
|
374
300
|
amiAggregation?: never;
|
|
@@ -381,7 +307,6 @@ export declare namespace AggregationRequest {
|
|
|
381
307
|
titleAggregation?: never;
|
|
382
308
|
$unknown?: never;
|
|
383
309
|
}
|
|
384
|
-
|
|
385
310
|
interface TitleAggregationMember {
|
|
386
311
|
accountAggregation?: never;
|
|
387
312
|
amiAggregation?: never;
|
|
@@ -420,95 +345,58 @@ export declare namespace AggregationRequest {
|
|
|
420
345
|
}
|
|
421
346
|
const visit: <T>(value: AggregationRequest, visitor: Visitor<T>) => T;
|
|
422
347
|
}
|
|
423
|
-
|
|
424
348
|
export interface AmiAggregationResponse {
|
|
425
349
|
ami: string | undefined;
|
|
426
|
-
|
|
427
350
|
accountId?: string;
|
|
428
|
-
|
|
429
351
|
severityCounts?: SeverityCounts;
|
|
430
|
-
|
|
431
352
|
affectedInstances?: number;
|
|
432
353
|
}
|
|
433
|
-
|
|
434
354
|
export interface AwsEcrContainerAggregationResponse {
|
|
435
355
|
resourceId: string | undefined;
|
|
436
|
-
|
|
437
356
|
imageSha?: string;
|
|
438
|
-
|
|
439
357
|
repository?: string;
|
|
440
|
-
|
|
441
358
|
architecture?: string;
|
|
442
|
-
|
|
443
359
|
imageTags?: string[];
|
|
444
|
-
|
|
445
360
|
accountId?: string;
|
|
446
|
-
|
|
447
361
|
severityCounts?: SeverityCounts;
|
|
448
362
|
}
|
|
449
|
-
|
|
450
363
|
export interface Ec2InstanceAggregationResponse {
|
|
451
364
|
instanceId: string | undefined;
|
|
452
|
-
|
|
453
365
|
ami?: string;
|
|
454
|
-
|
|
455
366
|
operatingSystem?: string;
|
|
456
|
-
|
|
457
367
|
instanceTags?: Record<string, string>;
|
|
458
|
-
|
|
459
368
|
accountId?: string;
|
|
460
|
-
|
|
461
369
|
severityCounts?: SeverityCounts;
|
|
462
|
-
|
|
463
370
|
networkFindings?: number;
|
|
464
371
|
}
|
|
465
|
-
|
|
466
372
|
export interface FindingTypeAggregationResponse {
|
|
467
373
|
accountId?: string;
|
|
468
|
-
|
|
469
374
|
severityCounts?: SeverityCounts;
|
|
470
375
|
}
|
|
471
|
-
|
|
472
376
|
export interface ImageLayerAggregationResponse {
|
|
473
377
|
repository: string | undefined;
|
|
474
|
-
|
|
475
378
|
resourceId: string | undefined;
|
|
476
|
-
|
|
477
379
|
layerHash: string | undefined;
|
|
478
|
-
|
|
479
380
|
accountId: string | undefined;
|
|
480
|
-
|
|
481
381
|
severityCounts?: SeverityCounts;
|
|
482
382
|
}
|
|
483
|
-
|
|
484
383
|
export interface PackageAggregationResponse {
|
|
485
384
|
packageName: string | undefined;
|
|
486
|
-
|
|
487
385
|
accountId?: string;
|
|
488
|
-
|
|
489
386
|
severityCounts?: SeverityCounts;
|
|
490
387
|
}
|
|
491
|
-
|
|
492
388
|
export interface RepositoryAggregationResponse {
|
|
493
389
|
repository: string | undefined;
|
|
494
|
-
|
|
495
390
|
accountId?: string;
|
|
496
|
-
|
|
497
391
|
severityCounts?: SeverityCounts;
|
|
498
|
-
|
|
499
392
|
affectedImages?: number;
|
|
500
393
|
}
|
|
501
|
-
|
|
502
394
|
export interface TitleAggregationResponse {
|
|
503
395
|
title: string | undefined;
|
|
504
|
-
|
|
505
396
|
vulnerabilityId?: string;
|
|
506
|
-
|
|
507
397
|
accountId?: string;
|
|
508
|
-
|
|
509
398
|
severityCounts?: SeverityCounts;
|
|
510
399
|
}
|
|
511
|
-
|
|
512
400
|
export declare type AggregationResponse =
|
|
513
401
|
| AggregationResponse.AccountAggregationMember
|
|
514
402
|
| AggregationResponse.AmiAggregationMember
|
|
@@ -533,7 +421,6 @@ export declare namespace AggregationResponse {
|
|
|
533
421
|
titleAggregation?: never;
|
|
534
422
|
$unknown?: never;
|
|
535
423
|
}
|
|
536
|
-
|
|
537
424
|
interface AmiAggregationMember {
|
|
538
425
|
accountAggregation?: never;
|
|
539
426
|
amiAggregation: AmiAggregationResponse;
|
|
@@ -546,7 +433,6 @@ export declare namespace AggregationResponse {
|
|
|
546
433
|
titleAggregation?: never;
|
|
547
434
|
$unknown?: never;
|
|
548
435
|
}
|
|
549
|
-
|
|
550
436
|
interface AwsEcrContainerAggregationMember {
|
|
551
437
|
accountAggregation?: never;
|
|
552
438
|
amiAggregation?: never;
|
|
@@ -559,7 +445,6 @@ export declare namespace AggregationResponse {
|
|
|
559
445
|
titleAggregation?: never;
|
|
560
446
|
$unknown?: never;
|
|
561
447
|
}
|
|
562
|
-
|
|
563
448
|
interface Ec2InstanceAggregationMember {
|
|
564
449
|
accountAggregation?: never;
|
|
565
450
|
amiAggregation?: never;
|
|
@@ -572,7 +457,6 @@ export declare namespace AggregationResponse {
|
|
|
572
457
|
titleAggregation?: never;
|
|
573
458
|
$unknown?: never;
|
|
574
459
|
}
|
|
575
|
-
|
|
576
460
|
interface FindingTypeAggregationMember {
|
|
577
461
|
accountAggregation?: never;
|
|
578
462
|
amiAggregation?: never;
|
|
@@ -585,7 +469,6 @@ export declare namespace AggregationResponse {
|
|
|
585
469
|
titleAggregation?: never;
|
|
586
470
|
$unknown?: never;
|
|
587
471
|
}
|
|
588
|
-
|
|
589
472
|
interface ImageLayerAggregationMember {
|
|
590
473
|
accountAggregation?: never;
|
|
591
474
|
amiAggregation?: never;
|
|
@@ -598,7 +481,6 @@ export declare namespace AggregationResponse {
|
|
|
598
481
|
titleAggregation?: never;
|
|
599
482
|
$unknown?: never;
|
|
600
483
|
}
|
|
601
|
-
|
|
602
484
|
interface PackageAggregationMember {
|
|
603
485
|
accountAggregation?: never;
|
|
604
486
|
amiAggregation?: never;
|
|
@@ -611,7 +493,6 @@ export declare namespace AggregationResponse {
|
|
|
611
493
|
titleAggregation?: never;
|
|
612
494
|
$unknown?: never;
|
|
613
495
|
}
|
|
614
|
-
|
|
615
496
|
interface RepositoryAggregationMember {
|
|
616
497
|
accountAggregation?: never;
|
|
617
498
|
amiAggregation?: never;
|
|
@@ -624,7 +505,6 @@ export declare namespace AggregationResponse {
|
|
|
624
505
|
titleAggregation?: never;
|
|
625
506
|
$unknown?: never;
|
|
626
507
|
}
|
|
627
|
-
|
|
628
508
|
interface TitleAggregationMember {
|
|
629
509
|
accountAggregation?: never;
|
|
630
510
|
amiAggregation?: never;
|
|
@@ -682,31 +562,24 @@ export interface AssociateMemberRequest {
|
|
|
682
562
|
export interface AssociateMemberResponse {
|
|
683
563
|
accountId: string | undefined;
|
|
684
564
|
}
|
|
685
|
-
|
|
686
565
|
export declare class InternalServerException extends __BaseException {
|
|
687
566
|
readonly name: "InternalServerException";
|
|
688
567
|
readonly $fault: "server";
|
|
689
568
|
$retryable: {};
|
|
690
|
-
|
|
691
569
|
retryAfterSeconds?: number;
|
|
692
|
-
|
|
693
570
|
constructor(
|
|
694
571
|
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
695
572
|
);
|
|
696
573
|
}
|
|
697
|
-
|
|
698
574
|
export declare class ThrottlingException extends __BaseException {
|
|
699
575
|
readonly name: "ThrottlingException";
|
|
700
576
|
readonly $fault: "client";
|
|
701
|
-
|
|
702
577
|
constructor(
|
|
703
578
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
704
579
|
);
|
|
705
580
|
}
|
|
706
|
-
|
|
707
581
|
export interface ValidationExceptionField {
|
|
708
582
|
name: string | undefined;
|
|
709
|
-
|
|
710
583
|
message: string | undefined;
|
|
711
584
|
}
|
|
712
585
|
export declare enum ValidationExceptionReason {
|
|
@@ -714,70 +587,44 @@ export declare enum ValidationExceptionReason {
|
|
|
714
587
|
FIELD_VALIDATION_FAILED = "FIELD_VALIDATION_FAILED",
|
|
715
588
|
OTHER = "OTHER",
|
|
716
589
|
}
|
|
717
|
-
|
|
718
590
|
export declare class ValidationException extends __BaseException {
|
|
719
591
|
readonly name: "ValidationException";
|
|
720
592
|
readonly $fault: "client";
|
|
721
|
-
|
|
722
593
|
reason: ValidationExceptionReason | string | undefined;
|
|
723
|
-
|
|
724
594
|
fields?: ValidationExceptionField[];
|
|
725
|
-
|
|
726
595
|
constructor(
|
|
727
596
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
728
597
|
);
|
|
729
598
|
}
|
|
730
|
-
|
|
731
599
|
export interface AutoEnable {
|
|
732
600
|
ec2: boolean | undefined;
|
|
733
|
-
|
|
734
601
|
ecr: boolean | undefined;
|
|
735
602
|
}
|
|
736
|
-
|
|
737
603
|
export interface AwsEc2InstanceDetails {
|
|
738
604
|
type?: string;
|
|
739
|
-
|
|
740
605
|
imageId?: string;
|
|
741
|
-
|
|
742
606
|
ipV4Addresses?: string[];
|
|
743
|
-
|
|
744
607
|
ipV6Addresses?: string[];
|
|
745
|
-
|
|
746
608
|
keyName?: string;
|
|
747
|
-
|
|
748
609
|
iamInstanceProfileArn?: string;
|
|
749
|
-
|
|
750
610
|
vpcId?: string;
|
|
751
|
-
|
|
752
611
|
subnetId?: string;
|
|
753
|
-
|
|
754
612
|
launchedAt?: Date;
|
|
755
|
-
|
|
756
613
|
platform?: string;
|
|
757
614
|
}
|
|
758
|
-
|
|
759
615
|
export interface AwsEcrContainerImageDetails {
|
|
760
616
|
repositoryName: string | undefined;
|
|
761
|
-
|
|
762
617
|
imageTags?: string[];
|
|
763
|
-
|
|
764
618
|
pushedAt?: Date;
|
|
765
|
-
|
|
766
619
|
author?: string;
|
|
767
|
-
|
|
768
620
|
architecture?: string;
|
|
769
|
-
|
|
770
621
|
imageHash: string | undefined;
|
|
771
|
-
|
|
772
622
|
registry: string | undefined;
|
|
773
|
-
|
|
774
623
|
platform?: string;
|
|
775
624
|
}
|
|
776
|
-
|
|
777
625
|
export declare class BadRequestException extends __BaseException {
|
|
778
626
|
readonly name: "BadRequestException";
|
|
779
627
|
readonly $fault: "client";
|
|
780
|
-
|
|
781
628
|
constructor(
|
|
782
629
|
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
783
630
|
);
|
|
@@ -785,28 +632,20 @@ export declare class BadRequestException extends __BaseException {
|
|
|
785
632
|
export interface BatchGetAccountStatusRequest {
|
|
786
633
|
accountIds?: string[];
|
|
787
634
|
}
|
|
788
|
-
|
|
789
635
|
export interface FailedAccount {
|
|
790
636
|
accountId: string | undefined;
|
|
791
|
-
|
|
792
637
|
status?: Status | string;
|
|
793
|
-
|
|
794
638
|
resourceStatus?: ResourceStatus;
|
|
795
|
-
|
|
796
639
|
errorCode: ErrorCode | string | undefined;
|
|
797
|
-
|
|
798
640
|
errorMessage: string | undefined;
|
|
799
641
|
}
|
|
800
642
|
export interface BatchGetAccountStatusResponse {
|
|
801
643
|
accounts: AccountState[] | undefined;
|
|
802
|
-
|
|
803
644
|
failedAccounts?: FailedAccount[];
|
|
804
645
|
}
|
|
805
|
-
|
|
806
646
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
807
647
|
readonly name: "ResourceNotFoundException";
|
|
808
648
|
readonly $fault: "client";
|
|
809
|
-
|
|
810
649
|
constructor(
|
|
811
650
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
812
651
|
);
|
|
@@ -822,37 +661,27 @@ export declare enum FreeTrialType {
|
|
|
822
661
|
EC2 = "EC2",
|
|
823
662
|
ECR = "ECR",
|
|
824
663
|
}
|
|
825
|
-
|
|
826
664
|
export interface FreeTrialInfo {
|
|
827
665
|
type: FreeTrialType | string | undefined;
|
|
828
|
-
|
|
829
666
|
start: Date | undefined;
|
|
830
|
-
|
|
831
667
|
end: Date | undefined;
|
|
832
|
-
|
|
833
668
|
status: FreeTrialStatus | string | undefined;
|
|
834
669
|
}
|
|
835
|
-
|
|
836
670
|
export interface FreeTrialAccountInfo {
|
|
837
671
|
accountId: string | undefined;
|
|
838
|
-
|
|
839
672
|
freeTrialInfo: FreeTrialInfo[] | undefined;
|
|
840
673
|
}
|
|
841
674
|
export declare enum FreeTrialInfoErrorCode {
|
|
842
675
|
ACCESS_DENIED = "ACCESS_DENIED",
|
|
843
676
|
INTERNAL_ERROR = "INTERNAL_ERROR",
|
|
844
677
|
}
|
|
845
|
-
|
|
846
678
|
export interface FreeTrialInfoError {
|
|
847
679
|
accountId: string | undefined;
|
|
848
|
-
|
|
849
680
|
code: FreeTrialInfoErrorCode | string | undefined;
|
|
850
|
-
|
|
851
681
|
message: string | undefined;
|
|
852
682
|
}
|
|
853
683
|
export interface BatchGetFreeTrialInfoResponse {
|
|
854
684
|
accounts: FreeTrialAccountInfo[] | undefined;
|
|
855
|
-
|
|
856
685
|
failedAccounts: FreeTrialInfoError[] | undefined;
|
|
857
686
|
}
|
|
858
687
|
export interface CancelFindingsReportRequest {
|
|
@@ -861,15 +690,11 @@ export interface CancelFindingsReportRequest {
|
|
|
861
690
|
export interface CancelFindingsReportResponse {
|
|
862
691
|
reportId: string | undefined;
|
|
863
692
|
}
|
|
864
|
-
|
|
865
693
|
export declare class ConflictException extends __BaseException {
|
|
866
694
|
readonly name: "ConflictException";
|
|
867
695
|
readonly $fault: "client";
|
|
868
|
-
|
|
869
696
|
resourceId: string | undefined;
|
|
870
|
-
|
|
871
697
|
resourceType: string | undefined;
|
|
872
|
-
|
|
873
698
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
874
699
|
}
|
|
875
700
|
export declare enum GroupKey {
|
|
@@ -879,51 +704,35 @@ export declare enum GroupKey {
|
|
|
879
704
|
SCAN_STATUS_CODE = "SCAN_STATUS_CODE",
|
|
880
705
|
SCAN_STATUS_REASON = "SCAN_STATUS_REASON",
|
|
881
706
|
}
|
|
882
|
-
|
|
883
707
|
export interface Counts {
|
|
884
708
|
count?: number;
|
|
885
|
-
|
|
886
709
|
groupKey?: GroupKey | string;
|
|
887
710
|
}
|
|
888
711
|
export declare enum CoverageStringComparison {
|
|
889
712
|
EQUALS = "EQUALS",
|
|
890
713
|
NOT_EQUALS = "NOT_EQUALS",
|
|
891
714
|
}
|
|
892
|
-
|
|
893
715
|
export interface CoverageStringFilter {
|
|
894
716
|
comparison: CoverageStringComparison | string | undefined;
|
|
895
|
-
|
|
896
717
|
value: string | undefined;
|
|
897
718
|
}
|
|
898
719
|
export declare enum CoverageMapComparison {
|
|
899
720
|
EQUALS = "EQUALS",
|
|
900
721
|
}
|
|
901
|
-
|
|
902
722
|
export interface CoverageMapFilter {
|
|
903
723
|
comparison: CoverageMapComparison | string | undefined;
|
|
904
|
-
|
|
905
724
|
key: string | undefined;
|
|
906
|
-
|
|
907
725
|
value?: string;
|
|
908
726
|
}
|
|
909
|
-
|
|
910
727
|
export interface CoverageFilterCriteria {
|
|
911
728
|
scanStatusCode?: CoverageStringFilter[];
|
|
912
|
-
|
|
913
729
|
scanStatusReason?: CoverageStringFilter[];
|
|
914
|
-
|
|
915
730
|
accountId?: CoverageStringFilter[];
|
|
916
|
-
|
|
917
731
|
resourceId?: CoverageStringFilter[];
|
|
918
|
-
|
|
919
732
|
resourceType?: CoverageStringFilter[];
|
|
920
|
-
|
|
921
733
|
scanType?: CoverageStringFilter[];
|
|
922
|
-
|
|
923
734
|
ecrRepositoryName?: CoverageStringFilter[];
|
|
924
|
-
|
|
925
735
|
ecrImageTags?: CoverageStringFilter[];
|
|
926
|
-
|
|
927
736
|
ec2InstanceTags?: CoverageMapFilter[];
|
|
928
737
|
}
|
|
929
738
|
export declare enum CoverageResourceType {
|
|
@@ -936,15 +745,11 @@ export declare enum Ec2Platform {
|
|
|
936
745
|
UNKNOWN = "UNKNOWN",
|
|
937
746
|
WINDOWS = "WINDOWS",
|
|
938
747
|
}
|
|
939
|
-
|
|
940
748
|
export interface Ec2Metadata {
|
|
941
749
|
tags?: Record<string, string>;
|
|
942
|
-
|
|
943
750
|
amiId?: string;
|
|
944
|
-
|
|
945
751
|
platform?: Ec2Platform | string;
|
|
946
752
|
}
|
|
947
|
-
|
|
948
753
|
export interface EcrContainerImageMetadata {
|
|
949
754
|
tags?: string[];
|
|
950
755
|
}
|
|
@@ -953,18 +758,13 @@ export declare enum EcrScanFrequency {
|
|
|
953
758
|
MANUAL = "MANUAL",
|
|
954
759
|
SCAN_ON_PUSH = "SCAN_ON_PUSH",
|
|
955
760
|
}
|
|
956
|
-
|
|
957
761
|
export interface EcrRepositoryMetadata {
|
|
958
762
|
name?: string;
|
|
959
|
-
|
|
960
763
|
scanFrequency?: EcrScanFrequency | string;
|
|
961
764
|
}
|
|
962
|
-
|
|
963
765
|
export interface ResourceScanMetadata {
|
|
964
766
|
ecrRepository?: EcrRepositoryMetadata;
|
|
965
|
-
|
|
966
767
|
ecrImage?: EcrContainerImageMetadata;
|
|
967
|
-
|
|
968
768
|
ec2?: Ec2Metadata;
|
|
969
769
|
}
|
|
970
770
|
export declare enum ScanStatusReason {
|
|
@@ -989,155 +789,95 @@ export declare enum ScanStatusCode {
|
|
|
989
789
|
ACTIVE = "ACTIVE",
|
|
990
790
|
INACTIVE = "INACTIVE",
|
|
991
791
|
}
|
|
992
|
-
|
|
993
792
|
export interface ScanStatus {
|
|
994
793
|
statusCode: ScanStatusCode | string | undefined;
|
|
995
|
-
|
|
996
794
|
reason: ScanStatusReason | string | undefined;
|
|
997
795
|
}
|
|
998
796
|
export declare enum ScanType {
|
|
999
797
|
NETWORK = "NETWORK",
|
|
1000
798
|
PACKAGE = "PACKAGE",
|
|
1001
799
|
}
|
|
1002
|
-
|
|
1003
800
|
export interface CoveredResource {
|
|
1004
801
|
resourceType: CoverageResourceType | string | undefined;
|
|
1005
|
-
|
|
1006
802
|
resourceId: string | undefined;
|
|
1007
|
-
|
|
1008
803
|
accountId: string | undefined;
|
|
1009
|
-
|
|
1010
804
|
scanType: ScanType | string | undefined;
|
|
1011
|
-
|
|
1012
805
|
scanStatus?: ScanStatus;
|
|
1013
|
-
|
|
1014
806
|
resourceMetadata?: ResourceScanMetadata;
|
|
1015
807
|
}
|
|
1016
808
|
export declare enum FilterAction {
|
|
1017
809
|
NONE = "NONE",
|
|
1018
810
|
SUPPRESS = "SUPPRESS",
|
|
1019
811
|
}
|
|
1020
|
-
|
|
1021
812
|
export interface DateFilter {
|
|
1022
813
|
startInclusive?: Date;
|
|
1023
|
-
|
|
1024
814
|
endInclusive?: Date;
|
|
1025
815
|
}
|
|
1026
|
-
|
|
1027
816
|
export interface NumberFilter {
|
|
1028
817
|
upperInclusive?: number;
|
|
1029
|
-
|
|
1030
818
|
lowerInclusive?: number;
|
|
1031
819
|
}
|
|
1032
|
-
|
|
1033
820
|
export interface PortRangeFilter {
|
|
1034
821
|
beginInclusive?: number;
|
|
1035
|
-
|
|
1036
822
|
endInclusive?: number;
|
|
1037
823
|
}
|
|
1038
|
-
|
|
1039
824
|
export interface PackageFilter {
|
|
1040
825
|
name?: StringFilter;
|
|
1041
|
-
|
|
1042
826
|
version?: StringFilter;
|
|
1043
|
-
|
|
1044
827
|
epoch?: NumberFilter;
|
|
1045
|
-
|
|
1046
828
|
release?: StringFilter;
|
|
1047
|
-
|
|
1048
829
|
architecture?: StringFilter;
|
|
1049
|
-
|
|
1050
830
|
sourceLayerHash?: StringFilter;
|
|
1051
831
|
}
|
|
1052
|
-
|
|
1053
832
|
export interface FilterCriteria {
|
|
1054
833
|
findingArn?: StringFilter[];
|
|
1055
|
-
|
|
1056
834
|
awsAccountId?: StringFilter[];
|
|
1057
|
-
|
|
1058
835
|
findingType?: StringFilter[];
|
|
1059
|
-
|
|
1060
836
|
severity?: StringFilter[];
|
|
1061
|
-
|
|
1062
837
|
firstObservedAt?: DateFilter[];
|
|
1063
|
-
|
|
1064
838
|
lastObservedAt?: DateFilter[];
|
|
1065
|
-
|
|
1066
839
|
updatedAt?: DateFilter[];
|
|
1067
|
-
|
|
1068
840
|
findingStatus?: StringFilter[];
|
|
1069
|
-
|
|
1070
841
|
title?: StringFilter[];
|
|
1071
|
-
|
|
1072
842
|
inspectorScore?: NumberFilter[];
|
|
1073
|
-
|
|
1074
843
|
resourceType?: StringFilter[];
|
|
1075
|
-
|
|
1076
844
|
resourceId?: StringFilter[];
|
|
1077
|
-
|
|
1078
845
|
resourceTags?: MapFilter[];
|
|
1079
|
-
|
|
1080
846
|
ec2InstanceImageId?: StringFilter[];
|
|
1081
|
-
|
|
1082
847
|
ec2InstanceVpcId?: StringFilter[];
|
|
1083
|
-
|
|
1084
848
|
ec2InstanceSubnetId?: StringFilter[];
|
|
1085
|
-
|
|
1086
849
|
ecrImagePushedAt?: DateFilter[];
|
|
1087
|
-
|
|
1088
850
|
ecrImageArchitecture?: StringFilter[];
|
|
1089
|
-
|
|
1090
851
|
ecrImageRegistry?: StringFilter[];
|
|
1091
|
-
|
|
1092
852
|
ecrImageRepositoryName?: StringFilter[];
|
|
1093
|
-
|
|
1094
853
|
ecrImageTags?: StringFilter[];
|
|
1095
|
-
|
|
1096
854
|
ecrImageHash?: StringFilter[];
|
|
1097
|
-
|
|
1098
855
|
portRange?: PortRangeFilter[];
|
|
1099
|
-
|
|
1100
856
|
networkProtocol?: StringFilter[];
|
|
1101
|
-
|
|
1102
857
|
componentId?: StringFilter[];
|
|
1103
|
-
|
|
1104
858
|
componentType?: StringFilter[];
|
|
1105
|
-
|
|
1106
859
|
vulnerabilityId?: StringFilter[];
|
|
1107
|
-
|
|
1108
860
|
vulnerabilitySource?: StringFilter[];
|
|
1109
|
-
|
|
1110
861
|
vendorSeverity?: StringFilter[];
|
|
1111
|
-
|
|
1112
862
|
vulnerablePackages?: PackageFilter[];
|
|
1113
|
-
|
|
1114
863
|
relatedVulnerabilities?: StringFilter[];
|
|
1115
|
-
|
|
1116
864
|
fixAvailable?: StringFilter[];
|
|
1117
865
|
}
|
|
1118
866
|
export interface CreateFilterRequest {
|
|
1119
867
|
action: FilterAction | string | undefined;
|
|
1120
|
-
|
|
1121
868
|
description?: string;
|
|
1122
|
-
|
|
1123
869
|
filterCriteria: FilterCriteria | undefined;
|
|
1124
|
-
|
|
1125
870
|
name: string | undefined;
|
|
1126
|
-
|
|
1127
871
|
tags?: Record<string, string>;
|
|
1128
|
-
|
|
1129
872
|
reason?: string;
|
|
1130
873
|
}
|
|
1131
874
|
export interface CreateFilterResponse {
|
|
1132
875
|
arn: string | undefined;
|
|
1133
876
|
}
|
|
1134
|
-
|
|
1135
877
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
1136
878
|
readonly name: "ServiceQuotaExceededException";
|
|
1137
879
|
readonly $fault: "client";
|
|
1138
|
-
|
|
1139
880
|
resourceId: string | undefined;
|
|
1140
|
-
|
|
1141
881
|
constructor(
|
|
1142
882
|
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
1143
883
|
);
|
|
@@ -1146,19 +886,14 @@ export declare enum ReportFormat {
|
|
|
1146
886
|
CSV = "CSV",
|
|
1147
887
|
JSON = "JSON",
|
|
1148
888
|
}
|
|
1149
|
-
|
|
1150
889
|
export interface Destination {
|
|
1151
890
|
bucketName: string | undefined;
|
|
1152
|
-
|
|
1153
891
|
keyPrefix?: string;
|
|
1154
|
-
|
|
1155
892
|
kmsKeyArn: string | undefined;
|
|
1156
893
|
}
|
|
1157
894
|
export interface CreateFindingsReportRequest {
|
|
1158
895
|
filterCriteria?: FilterCriteria;
|
|
1159
|
-
|
|
1160
896
|
reportFormat: ReportFormat | string | undefined;
|
|
1161
|
-
|
|
1162
897
|
s3Destination: Destination | undefined;
|
|
1163
898
|
}
|
|
1164
899
|
export interface CreateFindingsReportResponse {
|
|
@@ -1167,34 +902,22 @@ export interface CreateFindingsReportResponse {
|
|
|
1167
902
|
export declare enum Currency {
|
|
1168
903
|
USD = "USD",
|
|
1169
904
|
}
|
|
1170
|
-
|
|
1171
905
|
export interface CvssScore {
|
|
1172
906
|
baseScore: number | undefined;
|
|
1173
|
-
|
|
1174
907
|
scoringVector: string | undefined;
|
|
1175
|
-
|
|
1176
908
|
version: string | undefined;
|
|
1177
|
-
|
|
1178
909
|
source: string | undefined;
|
|
1179
910
|
}
|
|
1180
|
-
|
|
1181
911
|
export interface CvssScoreAdjustment {
|
|
1182
912
|
metric: string | undefined;
|
|
1183
|
-
|
|
1184
913
|
reason: string | undefined;
|
|
1185
914
|
}
|
|
1186
|
-
|
|
1187
915
|
export interface CvssScoreDetails {
|
|
1188
916
|
scoreSource: string | undefined;
|
|
1189
|
-
|
|
1190
917
|
cvssSource?: string;
|
|
1191
|
-
|
|
1192
918
|
version: string | undefined;
|
|
1193
|
-
|
|
1194
919
|
score: number | undefined;
|
|
1195
|
-
|
|
1196
920
|
scoringVector: string | undefined;
|
|
1197
|
-
|
|
1198
921
|
adjustments?: CvssScoreAdjustment[];
|
|
1199
922
|
}
|
|
1200
923
|
export declare enum RelationshipStatus {
|
|
@@ -1211,20 +934,16 @@ export declare enum RelationshipStatus {
|
|
|
1211
934
|
REMOVED = "REMOVED",
|
|
1212
935
|
RESIGNED = "RESIGNED",
|
|
1213
936
|
}
|
|
1214
|
-
|
|
1215
937
|
export interface DelegatedAdmin {
|
|
1216
938
|
accountId?: string;
|
|
1217
|
-
|
|
1218
939
|
relationshipStatus?: RelationshipStatus | string;
|
|
1219
940
|
}
|
|
1220
941
|
export declare enum DelegatedAdminStatus {
|
|
1221
942
|
DISABLE_IN_PROGRESS = "DISABLE_IN_PROGRESS",
|
|
1222
943
|
ENABLED = "ENABLED",
|
|
1223
944
|
}
|
|
1224
|
-
|
|
1225
945
|
export interface DelegatedAdminAccount {
|
|
1226
946
|
accountId?: string;
|
|
1227
|
-
|
|
1228
947
|
status?: DelegatedAdminStatus | string;
|
|
1229
948
|
}
|
|
1230
949
|
export interface DeleteFilterRequest {
|
|
@@ -1236,7 +955,6 @@ export interface DeleteFilterResponse {
|
|
|
1236
955
|
export interface DescribeOrganizationConfigurationRequest {}
|
|
1237
956
|
export interface DescribeOrganizationConfigurationResponse {
|
|
1238
957
|
autoEnable?: AutoEnable;
|
|
1239
|
-
|
|
1240
958
|
maxAccountLimitReached?: boolean;
|
|
1241
959
|
}
|
|
1242
960
|
export declare enum ResourceScanType {
|
|
@@ -1245,12 +963,10 @@ export declare enum ResourceScanType {
|
|
|
1245
963
|
}
|
|
1246
964
|
export interface DisableRequest {
|
|
1247
965
|
accountIds?: string[];
|
|
1248
|
-
|
|
1249
966
|
resourceTypes?: (ResourceScanType | string)[];
|
|
1250
967
|
}
|
|
1251
968
|
export interface DisableResponse {
|
|
1252
969
|
accounts: Account[] | undefined;
|
|
1253
|
-
|
|
1254
970
|
failedAccounts?: FailedAccount[];
|
|
1255
971
|
}
|
|
1256
972
|
export interface DisableDelegatedAdminAccountRequest {
|
|
@@ -1270,7 +986,6 @@ export declare enum EcrRescanDuration {
|
|
|
1270
986
|
DAYS_30 = "DAYS_30",
|
|
1271
987
|
LIFETIME = "LIFETIME",
|
|
1272
988
|
}
|
|
1273
|
-
|
|
1274
989
|
export interface EcrConfiguration {
|
|
1275
990
|
rescanDuration: EcrRescanDuration | string | undefined;
|
|
1276
991
|
}
|
|
@@ -1279,33 +994,25 @@ export declare enum EcrRescanDurationStatus {
|
|
|
1279
994
|
PENDING = "PENDING",
|
|
1280
995
|
SUCCESS = "SUCCESS",
|
|
1281
996
|
}
|
|
1282
|
-
|
|
1283
997
|
export interface EcrRescanDurationState {
|
|
1284
998
|
rescanDuration?: EcrRescanDuration | string;
|
|
1285
|
-
|
|
1286
999
|
status?: EcrRescanDurationStatus | string;
|
|
1287
|
-
|
|
1288
1000
|
updatedAt?: Date;
|
|
1289
1001
|
}
|
|
1290
|
-
|
|
1291
1002
|
export interface EcrConfigurationState {
|
|
1292
1003
|
rescanDurationState?: EcrRescanDurationState;
|
|
1293
1004
|
}
|
|
1294
1005
|
export interface EnableRequest {
|
|
1295
1006
|
accountIds?: string[];
|
|
1296
|
-
|
|
1297
1007
|
resourceTypes: (ResourceScanType | string)[] | undefined;
|
|
1298
|
-
|
|
1299
1008
|
clientToken?: string;
|
|
1300
1009
|
}
|
|
1301
1010
|
export interface EnableResponse {
|
|
1302
1011
|
accounts: Account[] | undefined;
|
|
1303
|
-
|
|
1304
1012
|
failedAccounts?: FailedAccount[];
|
|
1305
1013
|
}
|
|
1306
1014
|
export interface EnableDelegatedAdminAccountRequest {
|
|
1307
1015
|
delegatedAdminAccountId: string | undefined;
|
|
1308
|
-
|
|
1309
1016
|
clientToken?: string;
|
|
1310
1017
|
}
|
|
1311
1018
|
export interface EnableDelegatedAdminAccountResponse {
|
|
@@ -1317,26 +1024,16 @@ export declare enum ExternalReportStatus {
|
|
|
1317
1024
|
IN_PROGRESS = "IN_PROGRESS",
|
|
1318
1025
|
SUCCEEDED = "SUCCEEDED",
|
|
1319
1026
|
}
|
|
1320
|
-
|
|
1321
1027
|
export interface Filter {
|
|
1322
1028
|
arn: string | undefined;
|
|
1323
|
-
|
|
1324
1029
|
ownerId: string | undefined;
|
|
1325
|
-
|
|
1326
1030
|
name: string | undefined;
|
|
1327
|
-
|
|
1328
1031
|
criteria: FilterCriteria | undefined;
|
|
1329
|
-
|
|
1330
1032
|
action: FilterAction | string | undefined;
|
|
1331
|
-
|
|
1332
1033
|
createdAt: Date | undefined;
|
|
1333
|
-
|
|
1334
1034
|
updatedAt: Date | undefined;
|
|
1335
|
-
|
|
1336
1035
|
description?: string;
|
|
1337
|
-
|
|
1338
1036
|
reason?: string;
|
|
1339
|
-
|
|
1340
1037
|
tags?: Record<string, string>;
|
|
1341
1038
|
}
|
|
1342
1039
|
export declare enum FixAvailable {
|
|
@@ -1344,36 +1041,27 @@ export declare enum FixAvailable {
|
|
|
1344
1041
|
PARTIAL = "PARTIAL",
|
|
1345
1042
|
YES = "YES",
|
|
1346
1043
|
}
|
|
1347
|
-
|
|
1348
1044
|
export interface InspectorScoreDetails {
|
|
1349
1045
|
adjustedCvss?: CvssScoreDetails;
|
|
1350
1046
|
}
|
|
1351
|
-
|
|
1352
1047
|
export interface Step {
|
|
1353
1048
|
componentId: string | undefined;
|
|
1354
|
-
|
|
1355
1049
|
componentType: string | undefined;
|
|
1356
1050
|
}
|
|
1357
|
-
|
|
1358
1051
|
export interface NetworkPath {
|
|
1359
1052
|
steps?: Step[];
|
|
1360
1053
|
}
|
|
1361
|
-
|
|
1362
1054
|
export interface PortRange {
|
|
1363
1055
|
begin: number | undefined;
|
|
1364
|
-
|
|
1365
1056
|
end: number | undefined;
|
|
1366
1057
|
}
|
|
1367
1058
|
export declare enum NetworkProtocol {
|
|
1368
1059
|
TCP = "TCP",
|
|
1369
1060
|
UDP = "UDP",
|
|
1370
1061
|
}
|
|
1371
|
-
|
|
1372
1062
|
export interface NetworkReachabilityDetails {
|
|
1373
1063
|
openPortRange: PortRange | undefined;
|
|
1374
|
-
|
|
1375
1064
|
protocol: NetworkProtocol | string | undefined;
|
|
1376
|
-
|
|
1377
1065
|
networkPath: NetworkPath | undefined;
|
|
1378
1066
|
}
|
|
1379
1067
|
export declare enum PackageManager {
|
|
@@ -1394,64 +1082,39 @@ export declare enum PackageManager {
|
|
|
1394
1082
|
PYTHONPKG = "PYTHONPKG",
|
|
1395
1083
|
YARN = "YARN",
|
|
1396
1084
|
}
|
|
1397
|
-
|
|
1398
1085
|
export interface VulnerablePackage {
|
|
1399
1086
|
name: string | undefined;
|
|
1400
|
-
|
|
1401
1087
|
version: string | undefined;
|
|
1402
|
-
|
|
1403
1088
|
sourceLayerHash?: string;
|
|
1404
|
-
|
|
1405
1089
|
epoch?: number;
|
|
1406
|
-
|
|
1407
1090
|
release?: string;
|
|
1408
|
-
|
|
1409
1091
|
arch?: string;
|
|
1410
|
-
|
|
1411
1092
|
packageManager?: PackageManager | string;
|
|
1412
|
-
|
|
1413
1093
|
filePath?: string;
|
|
1414
|
-
|
|
1415
1094
|
fixedInVersion?: string;
|
|
1416
|
-
|
|
1417
1095
|
remediation?: string;
|
|
1418
1096
|
}
|
|
1419
|
-
|
|
1420
1097
|
export interface PackageVulnerabilityDetails {
|
|
1421
1098
|
vulnerabilityId: string | undefined;
|
|
1422
|
-
|
|
1423
1099
|
vulnerablePackages?: VulnerablePackage[];
|
|
1424
|
-
|
|
1425
1100
|
source: string | undefined;
|
|
1426
|
-
|
|
1427
1101
|
cvss?: CvssScore[];
|
|
1428
|
-
|
|
1429
1102
|
relatedVulnerabilities?: string[];
|
|
1430
|
-
|
|
1431
1103
|
sourceUrl?: string;
|
|
1432
|
-
|
|
1433
1104
|
vendorSeverity?: string;
|
|
1434
|
-
|
|
1435
1105
|
vendorCreatedAt?: Date;
|
|
1436
|
-
|
|
1437
1106
|
vendorUpdatedAt?: Date;
|
|
1438
|
-
|
|
1439
1107
|
referenceUrls?: string[];
|
|
1440
1108
|
}
|
|
1441
|
-
|
|
1442
1109
|
export interface Recommendation {
|
|
1443
1110
|
text?: string;
|
|
1444
|
-
|
|
1445
1111
|
Url?: string;
|
|
1446
1112
|
}
|
|
1447
|
-
|
|
1448
1113
|
export interface Remediation {
|
|
1449
1114
|
recommendation?: Recommendation;
|
|
1450
1115
|
}
|
|
1451
|
-
|
|
1452
1116
|
export interface ResourceDetails {
|
|
1453
1117
|
awsEc2Instance?: AwsEc2InstanceDetails;
|
|
1454
|
-
|
|
1455
1118
|
awsEcrContainerImage?: AwsEcrContainerImageDetails;
|
|
1456
1119
|
}
|
|
1457
1120
|
export declare enum ResourceType {
|
|
@@ -1459,18 +1122,12 @@ export declare enum ResourceType {
|
|
|
1459
1122
|
AWS_ECR_CONTAINER_IMAGE = "AWS_ECR_CONTAINER_IMAGE",
|
|
1460
1123
|
AWS_ECR_REPOSITORY = "AWS_ECR_REPOSITORY",
|
|
1461
1124
|
}
|
|
1462
|
-
|
|
1463
1125
|
export interface Resource {
|
|
1464
1126
|
type: ResourceType | string | undefined;
|
|
1465
|
-
|
|
1466
1127
|
id: string | undefined;
|
|
1467
|
-
|
|
1468
1128
|
partition?: string;
|
|
1469
|
-
|
|
1470
1129
|
region?: string;
|
|
1471
|
-
|
|
1472
1130
|
tags?: Record<string, string>;
|
|
1473
|
-
|
|
1474
1131
|
details?: ResourceDetails;
|
|
1475
1132
|
}
|
|
1476
1133
|
export declare enum Severity {
|
|
@@ -1490,40 +1147,23 @@ export declare enum FindingType {
|
|
|
1490
1147
|
NETWORK_REACHABILITY = "NETWORK_REACHABILITY",
|
|
1491
1148
|
PACKAGE_VULNERABILITY = "PACKAGE_VULNERABILITY",
|
|
1492
1149
|
}
|
|
1493
|
-
|
|
1494
1150
|
export interface Finding {
|
|
1495
1151
|
findingArn: string | undefined;
|
|
1496
|
-
|
|
1497
1152
|
awsAccountId: string | undefined;
|
|
1498
|
-
|
|
1499
1153
|
type: FindingType | string | undefined;
|
|
1500
|
-
|
|
1501
1154
|
description: string | undefined;
|
|
1502
|
-
|
|
1503
1155
|
title?: string;
|
|
1504
|
-
|
|
1505
1156
|
remediation: Remediation | undefined;
|
|
1506
|
-
|
|
1507
1157
|
severity: Severity | string | undefined;
|
|
1508
|
-
|
|
1509
1158
|
firstObservedAt: Date | undefined;
|
|
1510
|
-
|
|
1511
1159
|
lastObservedAt: Date | undefined;
|
|
1512
|
-
|
|
1513
1160
|
updatedAt?: Date;
|
|
1514
|
-
|
|
1515
1161
|
status: FindingStatus | string | undefined;
|
|
1516
|
-
|
|
1517
1162
|
resources: Resource[] | undefined;
|
|
1518
|
-
|
|
1519
1163
|
inspectorScore?: number;
|
|
1520
|
-
|
|
1521
1164
|
inspectorScoreDetails?: InspectorScoreDetails;
|
|
1522
|
-
|
|
1523
1165
|
networkReachabilityDetails?: NetworkReachabilityDetails;
|
|
1524
|
-
|
|
1525
1166
|
packageVulnerabilityDetails?: PackageVulnerabilityDetails;
|
|
1526
|
-
|
|
1527
1167
|
fixAvailable?: FixAvailable | string;
|
|
1528
1168
|
}
|
|
1529
1169
|
export interface GetConfigurationRequest {}
|
|
@@ -1547,28 +1187,19 @@ export declare enum ReportingErrorCode {
|
|
|
1547
1187
|
}
|
|
1548
1188
|
export interface GetFindingsReportStatusResponse {
|
|
1549
1189
|
reportId?: string;
|
|
1550
|
-
|
|
1551
1190
|
status?: ExternalReportStatus | string;
|
|
1552
|
-
|
|
1553
1191
|
errorCode?: ReportingErrorCode | string;
|
|
1554
|
-
|
|
1555
1192
|
errorMessage?: string;
|
|
1556
|
-
|
|
1557
1193
|
destination?: Destination;
|
|
1558
|
-
|
|
1559
1194
|
filterCriteria?: FilterCriteria;
|
|
1560
1195
|
}
|
|
1561
1196
|
export interface GetMemberRequest {
|
|
1562
1197
|
accountId: string | undefined;
|
|
1563
1198
|
}
|
|
1564
|
-
|
|
1565
1199
|
export interface Member {
|
|
1566
1200
|
accountId?: string;
|
|
1567
|
-
|
|
1568
1201
|
relationshipStatus?: RelationshipStatus | string;
|
|
1569
|
-
|
|
1570
1202
|
delegatedAdminAccountId?: string;
|
|
1571
|
-
|
|
1572
1203
|
updatedAt?: Date;
|
|
1573
1204
|
}
|
|
1574
1205
|
export interface GetMemberResponse {
|
|
@@ -1580,9 +1211,7 @@ export declare enum Service {
|
|
|
1580
1211
|
}
|
|
1581
1212
|
export interface ListAccountPermissionsRequest {
|
|
1582
1213
|
service?: Service | string;
|
|
1583
|
-
|
|
1584
1214
|
maxResults?: number;
|
|
1585
|
-
|
|
1586
1215
|
nextToken?: string;
|
|
1587
1216
|
}
|
|
1588
1217
|
export declare enum Operation {
|
|
@@ -1591,83 +1220,61 @@ export declare enum Operation {
|
|
|
1591
1220
|
ENABLE_REPOSITORY = "ENABLE_REPOSITORY",
|
|
1592
1221
|
ENABLE_SCANNING = "ENABLE_SCANNING",
|
|
1593
1222
|
}
|
|
1594
|
-
|
|
1595
1223
|
export interface Permission {
|
|
1596
1224
|
service: Service | string | undefined;
|
|
1597
|
-
|
|
1598
1225
|
operation: Operation | string | undefined;
|
|
1599
1226
|
}
|
|
1600
1227
|
export interface ListAccountPermissionsResponse {
|
|
1601
1228
|
permissions: Permission[] | undefined;
|
|
1602
|
-
|
|
1603
1229
|
nextToken?: string;
|
|
1604
1230
|
}
|
|
1605
1231
|
export interface ListCoverageRequest {
|
|
1606
1232
|
maxResults?: number;
|
|
1607
|
-
|
|
1608
1233
|
nextToken?: string;
|
|
1609
|
-
|
|
1610
1234
|
filterCriteria?: CoverageFilterCriteria;
|
|
1611
1235
|
}
|
|
1612
1236
|
export interface ListCoverageResponse {
|
|
1613
1237
|
nextToken?: string;
|
|
1614
|
-
|
|
1615
1238
|
coveredResources?: CoveredResource[];
|
|
1616
1239
|
}
|
|
1617
1240
|
export interface ListCoverageStatisticsRequest {
|
|
1618
1241
|
filterCriteria?: CoverageFilterCriteria;
|
|
1619
|
-
|
|
1620
1242
|
groupBy?: GroupKey | string;
|
|
1621
|
-
|
|
1622
1243
|
nextToken?: string;
|
|
1623
1244
|
}
|
|
1624
1245
|
export interface ListCoverageStatisticsResponse {
|
|
1625
1246
|
countsByGroup?: Counts[];
|
|
1626
|
-
|
|
1627
1247
|
totalCounts: number | undefined;
|
|
1628
|
-
|
|
1629
1248
|
nextToken?: string;
|
|
1630
1249
|
}
|
|
1631
1250
|
export interface ListDelegatedAdminAccountsRequest {
|
|
1632
1251
|
maxResults?: number;
|
|
1633
|
-
|
|
1634
1252
|
nextToken?: string;
|
|
1635
1253
|
}
|
|
1636
1254
|
export interface ListDelegatedAdminAccountsResponse {
|
|
1637
1255
|
delegatedAdminAccounts?: DelegatedAdminAccount[];
|
|
1638
|
-
|
|
1639
1256
|
nextToken?: string;
|
|
1640
1257
|
}
|
|
1641
1258
|
export interface ListFiltersRequest {
|
|
1642
1259
|
arns?: string[];
|
|
1643
|
-
|
|
1644
1260
|
action?: FilterAction | string;
|
|
1645
|
-
|
|
1646
1261
|
nextToken?: string;
|
|
1647
|
-
|
|
1648
1262
|
maxResults?: number;
|
|
1649
1263
|
}
|
|
1650
1264
|
export interface ListFiltersResponse {
|
|
1651
1265
|
filters: Filter[] | undefined;
|
|
1652
|
-
|
|
1653
1266
|
nextToken?: string;
|
|
1654
1267
|
}
|
|
1655
1268
|
export interface ListFindingAggregationsRequest {
|
|
1656
1269
|
aggregationType: AggregationType | string | undefined;
|
|
1657
|
-
|
|
1658
1270
|
nextToken?: string;
|
|
1659
|
-
|
|
1660
1271
|
maxResults?: number;
|
|
1661
|
-
|
|
1662
1272
|
accountIds?: StringFilter[];
|
|
1663
|
-
|
|
1664
1273
|
aggregationRequest?: AggregationRequest;
|
|
1665
1274
|
}
|
|
1666
1275
|
export interface ListFindingAggregationsResponse {
|
|
1667
1276
|
aggregationType: AggregationType | string | undefined;
|
|
1668
|
-
|
|
1669
1277
|
responses?: AggregationResponse[];
|
|
1670
|
-
|
|
1671
1278
|
nextToken?: string;
|
|
1672
1279
|
}
|
|
1673
1280
|
export declare enum SortField {
|
|
@@ -1688,36 +1295,27 @@ export declare enum SortField {
|
|
|
1688
1295
|
VULNERABILITY_ID = "VULNERABILITY_ID",
|
|
1689
1296
|
VULNERABILITY_SOURCE = "VULNERABILITY_SOURCE",
|
|
1690
1297
|
}
|
|
1691
|
-
|
|
1692
1298
|
export interface SortCriteria {
|
|
1693
1299
|
field: SortField | string | undefined;
|
|
1694
|
-
|
|
1695
1300
|
sortOrder: SortOrder | string | undefined;
|
|
1696
1301
|
}
|
|
1697
1302
|
export interface ListFindingsRequest {
|
|
1698
1303
|
maxResults?: number;
|
|
1699
|
-
|
|
1700
1304
|
nextToken?: string;
|
|
1701
|
-
|
|
1702
1305
|
filterCriteria?: FilterCriteria;
|
|
1703
|
-
|
|
1704
1306
|
sortCriteria?: SortCriteria;
|
|
1705
1307
|
}
|
|
1706
1308
|
export interface ListFindingsResponse {
|
|
1707
1309
|
nextToken?: string;
|
|
1708
|
-
|
|
1709
1310
|
findings?: Finding[];
|
|
1710
1311
|
}
|
|
1711
1312
|
export interface ListMembersRequest {
|
|
1712
1313
|
onlyAssociated?: boolean;
|
|
1713
|
-
|
|
1714
1314
|
maxResults?: number;
|
|
1715
|
-
|
|
1716
1315
|
nextToken?: string;
|
|
1717
1316
|
}
|
|
1718
1317
|
export interface ListMembersResponse {
|
|
1719
1318
|
members?: Member[];
|
|
1720
|
-
|
|
1721
1319
|
nextToken?: string;
|
|
1722
1320
|
}
|
|
1723
1321
|
export interface ListTagsForResourceRequest {
|
|
@@ -1728,9 +1326,7 @@ export interface ListTagsForResourceResponse {
|
|
|
1728
1326
|
}
|
|
1729
1327
|
export interface ListUsageTotalsRequest {
|
|
1730
1328
|
maxResults?: number;
|
|
1731
|
-
|
|
1732
1329
|
nextToken?: string;
|
|
1733
|
-
|
|
1734
1330
|
accountIds?: string[];
|
|
1735
1331
|
}
|
|
1736
1332
|
export declare enum UsageType {
|
|
@@ -1738,36 +1334,27 @@ export declare enum UsageType {
|
|
|
1738
1334
|
ECR_INITIAL_SCAN = "ECR_INITIAL_SCAN",
|
|
1739
1335
|
ECR_RESCAN = "ECR_RESCAN",
|
|
1740
1336
|
}
|
|
1741
|
-
|
|
1742
1337
|
export interface Usage {
|
|
1743
1338
|
type?: UsageType | string;
|
|
1744
|
-
|
|
1745
1339
|
total?: number;
|
|
1746
|
-
|
|
1747
1340
|
estimatedMonthlyCost?: number;
|
|
1748
|
-
|
|
1749
1341
|
currency?: Currency | string;
|
|
1750
1342
|
}
|
|
1751
|
-
|
|
1752
1343
|
export interface UsageTotal {
|
|
1753
1344
|
accountId?: string;
|
|
1754
|
-
|
|
1755
1345
|
usage?: Usage[];
|
|
1756
1346
|
}
|
|
1757
1347
|
export interface ListUsageTotalsResponse {
|
|
1758
1348
|
nextToken?: string;
|
|
1759
|
-
|
|
1760
1349
|
totals?: UsageTotal[];
|
|
1761
1350
|
}
|
|
1762
1351
|
export interface TagResourceRequest {
|
|
1763
1352
|
resourceArn: string | undefined;
|
|
1764
|
-
|
|
1765
1353
|
tags: Record<string, string> | undefined;
|
|
1766
1354
|
}
|
|
1767
1355
|
export interface TagResourceResponse {}
|
|
1768
1356
|
export interface UntagResourceRequest {
|
|
1769
1357
|
resourceArn: string | undefined;
|
|
1770
|
-
|
|
1771
1358
|
tagKeys: string[] | undefined;
|
|
1772
1359
|
}
|
|
1773
1360
|
export interface UntagResourceResponse {}
|
|
@@ -1777,15 +1364,10 @@ export interface UpdateConfigurationRequest {
|
|
|
1777
1364
|
export interface UpdateConfigurationResponse {}
|
|
1778
1365
|
export interface UpdateFilterRequest {
|
|
1779
1366
|
action?: FilterAction | string;
|
|
1780
|
-
|
|
1781
1367
|
description?: string;
|
|
1782
|
-
|
|
1783
1368
|
filterCriteria?: FilterCriteria;
|
|
1784
|
-
|
|
1785
1369
|
name?: string;
|
|
1786
|
-
|
|
1787
1370
|
filterArn: string | undefined;
|
|
1788
|
-
|
|
1789
1371
|
reason?: string;
|
|
1790
1372
|
}
|
|
1791
1373
|
export interface UpdateFilterResponse {
|
|
@@ -1797,521 +1379,379 @@ export interface UpdateOrganizationConfigurationRequest {
|
|
|
1797
1379
|
export interface UpdateOrganizationConfigurationResponse {
|
|
1798
1380
|
autoEnable: AutoEnable | undefined;
|
|
1799
1381
|
}
|
|
1800
|
-
|
|
1801
1382
|
export declare const ResourceStatusFilterSensitiveLog: (
|
|
1802
1383
|
obj: ResourceStatus
|
|
1803
1384
|
) => any;
|
|
1804
|
-
|
|
1805
1385
|
export declare const AccountFilterSensitiveLog: (obj: Account) => any;
|
|
1806
|
-
|
|
1807
1386
|
export declare const AccountAggregationFilterSensitiveLog: (
|
|
1808
1387
|
obj: AccountAggregation
|
|
1809
1388
|
) => any;
|
|
1810
|
-
|
|
1811
1389
|
export declare const SeverityCountsFilterSensitiveLog: (
|
|
1812
1390
|
obj: SeverityCounts
|
|
1813
1391
|
) => any;
|
|
1814
|
-
|
|
1815
1392
|
export declare const AccountAggregationResponseFilterSensitiveLog: (
|
|
1816
1393
|
obj: AccountAggregationResponse
|
|
1817
1394
|
) => any;
|
|
1818
|
-
|
|
1819
1395
|
export declare const StateFilterSensitiveLog: (obj: State) => any;
|
|
1820
|
-
|
|
1821
1396
|
export declare const ResourceStateFilterSensitiveLog: (
|
|
1822
1397
|
obj: ResourceState
|
|
1823
1398
|
) => any;
|
|
1824
|
-
|
|
1825
1399
|
export declare const AccountStateFilterSensitiveLog: (obj: AccountState) => any;
|
|
1826
|
-
|
|
1827
1400
|
export declare const StringFilterFilterSensitiveLog: (obj: StringFilter) => any;
|
|
1828
|
-
|
|
1829
1401
|
export declare const AmiAggregationFilterSensitiveLog: (
|
|
1830
1402
|
obj: AmiAggregation
|
|
1831
1403
|
) => any;
|
|
1832
|
-
|
|
1833
1404
|
export declare const AwsEcrContainerAggregationFilterSensitiveLog: (
|
|
1834
1405
|
obj: AwsEcrContainerAggregation
|
|
1835
1406
|
) => any;
|
|
1836
|
-
|
|
1837
1407
|
export declare const MapFilterFilterSensitiveLog: (obj: MapFilter) => any;
|
|
1838
|
-
|
|
1839
1408
|
export declare const Ec2InstanceAggregationFilterSensitiveLog: (
|
|
1840
1409
|
obj: Ec2InstanceAggregation
|
|
1841
1410
|
) => any;
|
|
1842
|
-
|
|
1843
1411
|
export declare const FindingTypeAggregationFilterSensitiveLog: (
|
|
1844
1412
|
obj: FindingTypeAggregation
|
|
1845
1413
|
) => any;
|
|
1846
|
-
|
|
1847
1414
|
export declare const ImageLayerAggregationFilterSensitiveLog: (
|
|
1848
1415
|
obj: ImageLayerAggregation
|
|
1849
1416
|
) => any;
|
|
1850
|
-
|
|
1851
1417
|
export declare const PackageAggregationFilterSensitiveLog: (
|
|
1852
1418
|
obj: PackageAggregation
|
|
1853
1419
|
) => any;
|
|
1854
|
-
|
|
1855
1420
|
export declare const RepositoryAggregationFilterSensitiveLog: (
|
|
1856
1421
|
obj: RepositoryAggregation
|
|
1857
1422
|
) => any;
|
|
1858
|
-
|
|
1859
1423
|
export declare const TitleAggregationFilterSensitiveLog: (
|
|
1860
1424
|
obj: TitleAggregation
|
|
1861
1425
|
) => any;
|
|
1862
|
-
|
|
1863
1426
|
export declare const AggregationRequestFilterSensitiveLog: (
|
|
1864
1427
|
obj: AggregationRequest
|
|
1865
1428
|
) => any;
|
|
1866
|
-
|
|
1867
1429
|
export declare const AmiAggregationResponseFilterSensitiveLog: (
|
|
1868
1430
|
obj: AmiAggregationResponse
|
|
1869
1431
|
) => any;
|
|
1870
|
-
|
|
1871
1432
|
export declare const AwsEcrContainerAggregationResponseFilterSensitiveLog: (
|
|
1872
1433
|
obj: AwsEcrContainerAggregationResponse
|
|
1873
1434
|
) => any;
|
|
1874
|
-
|
|
1875
1435
|
export declare const Ec2InstanceAggregationResponseFilterSensitiveLog: (
|
|
1876
1436
|
obj: Ec2InstanceAggregationResponse
|
|
1877
1437
|
) => any;
|
|
1878
|
-
|
|
1879
1438
|
export declare const FindingTypeAggregationResponseFilterSensitiveLog: (
|
|
1880
1439
|
obj: FindingTypeAggregationResponse
|
|
1881
1440
|
) => any;
|
|
1882
|
-
|
|
1883
1441
|
export declare const ImageLayerAggregationResponseFilterSensitiveLog: (
|
|
1884
1442
|
obj: ImageLayerAggregationResponse
|
|
1885
1443
|
) => any;
|
|
1886
|
-
|
|
1887
1444
|
export declare const PackageAggregationResponseFilterSensitiveLog: (
|
|
1888
1445
|
obj: PackageAggregationResponse
|
|
1889
1446
|
) => any;
|
|
1890
|
-
|
|
1891
1447
|
export declare const RepositoryAggregationResponseFilterSensitiveLog: (
|
|
1892
1448
|
obj: RepositoryAggregationResponse
|
|
1893
1449
|
) => any;
|
|
1894
|
-
|
|
1895
1450
|
export declare const TitleAggregationResponseFilterSensitiveLog: (
|
|
1896
1451
|
obj: TitleAggregationResponse
|
|
1897
1452
|
) => any;
|
|
1898
|
-
|
|
1899
1453
|
export declare const AggregationResponseFilterSensitiveLog: (
|
|
1900
1454
|
obj: AggregationResponse
|
|
1901
1455
|
) => any;
|
|
1902
|
-
|
|
1903
1456
|
export declare const AssociateMemberRequestFilterSensitiveLog: (
|
|
1904
1457
|
obj: AssociateMemberRequest
|
|
1905
1458
|
) => any;
|
|
1906
|
-
|
|
1907
1459
|
export declare const AssociateMemberResponseFilterSensitiveLog: (
|
|
1908
1460
|
obj: AssociateMemberResponse
|
|
1909
1461
|
) => any;
|
|
1910
|
-
|
|
1911
1462
|
export declare const ValidationExceptionFieldFilterSensitiveLog: (
|
|
1912
1463
|
obj: ValidationExceptionField
|
|
1913
1464
|
) => any;
|
|
1914
|
-
|
|
1915
1465
|
export declare const AutoEnableFilterSensitiveLog: (obj: AutoEnable) => any;
|
|
1916
|
-
|
|
1917
1466
|
export declare const AwsEc2InstanceDetailsFilterSensitiveLog: (
|
|
1918
1467
|
obj: AwsEc2InstanceDetails
|
|
1919
1468
|
) => any;
|
|
1920
|
-
|
|
1921
1469
|
export declare const AwsEcrContainerImageDetailsFilterSensitiveLog: (
|
|
1922
1470
|
obj: AwsEcrContainerImageDetails
|
|
1923
1471
|
) => any;
|
|
1924
|
-
|
|
1925
1472
|
export declare const BatchGetAccountStatusRequestFilterSensitiveLog: (
|
|
1926
1473
|
obj: BatchGetAccountStatusRequest
|
|
1927
1474
|
) => any;
|
|
1928
|
-
|
|
1929
1475
|
export declare const FailedAccountFilterSensitiveLog: (
|
|
1930
1476
|
obj: FailedAccount
|
|
1931
1477
|
) => any;
|
|
1932
|
-
|
|
1933
1478
|
export declare const BatchGetAccountStatusResponseFilterSensitiveLog: (
|
|
1934
1479
|
obj: BatchGetAccountStatusResponse
|
|
1935
1480
|
) => any;
|
|
1936
|
-
|
|
1937
1481
|
export declare const BatchGetFreeTrialInfoRequestFilterSensitiveLog: (
|
|
1938
1482
|
obj: BatchGetFreeTrialInfoRequest
|
|
1939
1483
|
) => any;
|
|
1940
|
-
|
|
1941
1484
|
export declare const FreeTrialInfoFilterSensitiveLog: (
|
|
1942
1485
|
obj: FreeTrialInfo
|
|
1943
1486
|
) => any;
|
|
1944
|
-
|
|
1945
1487
|
export declare const FreeTrialAccountInfoFilterSensitiveLog: (
|
|
1946
1488
|
obj: FreeTrialAccountInfo
|
|
1947
1489
|
) => any;
|
|
1948
|
-
|
|
1949
1490
|
export declare const FreeTrialInfoErrorFilterSensitiveLog: (
|
|
1950
1491
|
obj: FreeTrialInfoError
|
|
1951
1492
|
) => any;
|
|
1952
|
-
|
|
1953
1493
|
export declare const BatchGetFreeTrialInfoResponseFilterSensitiveLog: (
|
|
1954
1494
|
obj: BatchGetFreeTrialInfoResponse
|
|
1955
1495
|
) => any;
|
|
1956
|
-
|
|
1957
1496
|
export declare const CancelFindingsReportRequestFilterSensitiveLog: (
|
|
1958
1497
|
obj: CancelFindingsReportRequest
|
|
1959
1498
|
) => any;
|
|
1960
|
-
|
|
1961
1499
|
export declare const CancelFindingsReportResponseFilterSensitiveLog: (
|
|
1962
1500
|
obj: CancelFindingsReportResponse
|
|
1963
1501
|
) => any;
|
|
1964
|
-
|
|
1965
1502
|
export declare const CountsFilterSensitiveLog: (obj: Counts) => any;
|
|
1966
|
-
|
|
1967
1503
|
export declare const CoverageStringFilterFilterSensitiveLog: (
|
|
1968
1504
|
obj: CoverageStringFilter
|
|
1969
1505
|
) => any;
|
|
1970
|
-
|
|
1971
1506
|
export declare const CoverageMapFilterFilterSensitiveLog: (
|
|
1972
1507
|
obj: CoverageMapFilter
|
|
1973
1508
|
) => any;
|
|
1974
|
-
|
|
1975
1509
|
export declare const CoverageFilterCriteriaFilterSensitiveLog: (
|
|
1976
1510
|
obj: CoverageFilterCriteria
|
|
1977
1511
|
) => any;
|
|
1978
|
-
|
|
1979
1512
|
export declare const Ec2MetadataFilterSensitiveLog: (obj: Ec2Metadata) => any;
|
|
1980
|
-
|
|
1981
1513
|
export declare const EcrContainerImageMetadataFilterSensitiveLog: (
|
|
1982
1514
|
obj: EcrContainerImageMetadata
|
|
1983
1515
|
) => any;
|
|
1984
|
-
|
|
1985
1516
|
export declare const EcrRepositoryMetadataFilterSensitiveLog: (
|
|
1986
1517
|
obj: EcrRepositoryMetadata
|
|
1987
1518
|
) => any;
|
|
1988
|
-
|
|
1989
1519
|
export declare const ResourceScanMetadataFilterSensitiveLog: (
|
|
1990
1520
|
obj: ResourceScanMetadata
|
|
1991
1521
|
) => any;
|
|
1992
|
-
|
|
1993
1522
|
export declare const ScanStatusFilterSensitiveLog: (obj: ScanStatus) => any;
|
|
1994
|
-
|
|
1995
1523
|
export declare const CoveredResourceFilterSensitiveLog: (
|
|
1996
1524
|
obj: CoveredResource
|
|
1997
1525
|
) => any;
|
|
1998
|
-
|
|
1999
1526
|
export declare const DateFilterFilterSensitiveLog: (obj: DateFilter) => any;
|
|
2000
|
-
|
|
2001
1527
|
export declare const NumberFilterFilterSensitiveLog: (obj: NumberFilter) => any;
|
|
2002
|
-
|
|
2003
1528
|
export declare const PortRangeFilterFilterSensitiveLog: (
|
|
2004
1529
|
obj: PortRangeFilter
|
|
2005
1530
|
) => any;
|
|
2006
|
-
|
|
2007
1531
|
export declare const PackageFilterFilterSensitiveLog: (
|
|
2008
1532
|
obj: PackageFilter
|
|
2009
1533
|
) => any;
|
|
2010
|
-
|
|
2011
1534
|
export declare const FilterCriteriaFilterSensitiveLog: (
|
|
2012
1535
|
obj: FilterCriteria
|
|
2013
1536
|
) => any;
|
|
2014
|
-
|
|
2015
1537
|
export declare const CreateFilterRequestFilterSensitiveLog: (
|
|
2016
1538
|
obj: CreateFilterRequest
|
|
2017
1539
|
) => any;
|
|
2018
|
-
|
|
2019
1540
|
export declare const CreateFilterResponseFilterSensitiveLog: (
|
|
2020
1541
|
obj: CreateFilterResponse
|
|
2021
1542
|
) => any;
|
|
2022
|
-
|
|
2023
1543
|
export declare const DestinationFilterSensitiveLog: (obj: Destination) => any;
|
|
2024
|
-
|
|
2025
1544
|
export declare const CreateFindingsReportRequestFilterSensitiveLog: (
|
|
2026
1545
|
obj: CreateFindingsReportRequest
|
|
2027
1546
|
) => any;
|
|
2028
|
-
|
|
2029
1547
|
export declare const CreateFindingsReportResponseFilterSensitiveLog: (
|
|
2030
1548
|
obj: CreateFindingsReportResponse
|
|
2031
1549
|
) => any;
|
|
2032
|
-
|
|
2033
1550
|
export declare const CvssScoreFilterSensitiveLog: (obj: CvssScore) => any;
|
|
2034
|
-
|
|
2035
1551
|
export declare const CvssScoreAdjustmentFilterSensitiveLog: (
|
|
2036
1552
|
obj: CvssScoreAdjustment
|
|
2037
1553
|
) => any;
|
|
2038
|
-
|
|
2039
1554
|
export declare const CvssScoreDetailsFilterSensitiveLog: (
|
|
2040
1555
|
obj: CvssScoreDetails
|
|
2041
1556
|
) => any;
|
|
2042
|
-
|
|
2043
1557
|
export declare const DelegatedAdminFilterSensitiveLog: (
|
|
2044
1558
|
obj: DelegatedAdmin
|
|
2045
1559
|
) => any;
|
|
2046
|
-
|
|
2047
1560
|
export declare const DelegatedAdminAccountFilterSensitiveLog: (
|
|
2048
1561
|
obj: DelegatedAdminAccount
|
|
2049
1562
|
) => any;
|
|
2050
|
-
|
|
2051
1563
|
export declare const DeleteFilterRequestFilterSensitiveLog: (
|
|
2052
1564
|
obj: DeleteFilterRequest
|
|
2053
1565
|
) => any;
|
|
2054
|
-
|
|
2055
1566
|
export declare const DeleteFilterResponseFilterSensitiveLog: (
|
|
2056
1567
|
obj: DeleteFilterResponse
|
|
2057
1568
|
) => any;
|
|
2058
|
-
|
|
2059
1569
|
export declare const DescribeOrganizationConfigurationRequestFilterSensitiveLog: (
|
|
2060
1570
|
obj: DescribeOrganizationConfigurationRequest
|
|
2061
1571
|
) => any;
|
|
2062
|
-
|
|
2063
1572
|
export declare const DescribeOrganizationConfigurationResponseFilterSensitiveLog: (
|
|
2064
1573
|
obj: DescribeOrganizationConfigurationResponse
|
|
2065
1574
|
) => any;
|
|
2066
|
-
|
|
2067
1575
|
export declare const DisableRequestFilterSensitiveLog: (
|
|
2068
1576
|
obj: DisableRequest
|
|
2069
1577
|
) => any;
|
|
2070
|
-
|
|
2071
1578
|
export declare const DisableResponseFilterSensitiveLog: (
|
|
2072
1579
|
obj: DisableResponse
|
|
2073
1580
|
) => any;
|
|
2074
|
-
|
|
2075
1581
|
export declare const DisableDelegatedAdminAccountRequestFilterSensitiveLog: (
|
|
2076
1582
|
obj: DisableDelegatedAdminAccountRequest
|
|
2077
1583
|
) => any;
|
|
2078
|
-
|
|
2079
1584
|
export declare const DisableDelegatedAdminAccountResponseFilterSensitiveLog: (
|
|
2080
1585
|
obj: DisableDelegatedAdminAccountResponse
|
|
2081
1586
|
) => any;
|
|
2082
|
-
|
|
2083
1587
|
export declare const DisassociateMemberRequestFilterSensitiveLog: (
|
|
2084
1588
|
obj: DisassociateMemberRequest
|
|
2085
1589
|
) => any;
|
|
2086
|
-
|
|
2087
1590
|
export declare const DisassociateMemberResponseFilterSensitiveLog: (
|
|
2088
1591
|
obj: DisassociateMemberResponse
|
|
2089
1592
|
) => any;
|
|
2090
|
-
|
|
2091
1593
|
export declare const EcrConfigurationFilterSensitiveLog: (
|
|
2092
1594
|
obj: EcrConfiguration
|
|
2093
1595
|
) => any;
|
|
2094
|
-
|
|
2095
1596
|
export declare const EcrRescanDurationStateFilterSensitiveLog: (
|
|
2096
1597
|
obj: EcrRescanDurationState
|
|
2097
1598
|
) => any;
|
|
2098
|
-
|
|
2099
1599
|
export declare const EcrConfigurationStateFilterSensitiveLog: (
|
|
2100
1600
|
obj: EcrConfigurationState
|
|
2101
1601
|
) => any;
|
|
2102
|
-
|
|
2103
1602
|
export declare const EnableRequestFilterSensitiveLog: (
|
|
2104
1603
|
obj: EnableRequest
|
|
2105
1604
|
) => any;
|
|
2106
|
-
|
|
2107
1605
|
export declare const EnableResponseFilterSensitiveLog: (
|
|
2108
1606
|
obj: EnableResponse
|
|
2109
1607
|
) => any;
|
|
2110
|
-
|
|
2111
1608
|
export declare const EnableDelegatedAdminAccountRequestFilterSensitiveLog: (
|
|
2112
1609
|
obj: EnableDelegatedAdminAccountRequest
|
|
2113
1610
|
) => any;
|
|
2114
|
-
|
|
2115
1611
|
export declare const EnableDelegatedAdminAccountResponseFilterSensitiveLog: (
|
|
2116
1612
|
obj: EnableDelegatedAdminAccountResponse
|
|
2117
1613
|
) => any;
|
|
2118
|
-
|
|
2119
1614
|
export declare const FilterFilterSensitiveLog: (obj: Filter) => any;
|
|
2120
|
-
|
|
2121
1615
|
export declare const InspectorScoreDetailsFilterSensitiveLog: (
|
|
2122
1616
|
obj: InspectorScoreDetails
|
|
2123
1617
|
) => any;
|
|
2124
|
-
|
|
2125
1618
|
export declare const StepFilterSensitiveLog: (obj: Step) => any;
|
|
2126
|
-
|
|
2127
1619
|
export declare const NetworkPathFilterSensitiveLog: (obj: NetworkPath) => any;
|
|
2128
|
-
|
|
2129
1620
|
export declare const PortRangeFilterSensitiveLog: (obj: PortRange) => any;
|
|
2130
|
-
|
|
2131
1621
|
export declare const NetworkReachabilityDetailsFilterSensitiveLog: (
|
|
2132
1622
|
obj: NetworkReachabilityDetails
|
|
2133
1623
|
) => any;
|
|
2134
|
-
|
|
2135
1624
|
export declare const VulnerablePackageFilterSensitiveLog: (
|
|
2136
1625
|
obj: VulnerablePackage
|
|
2137
1626
|
) => any;
|
|
2138
|
-
|
|
2139
1627
|
export declare const PackageVulnerabilityDetailsFilterSensitiveLog: (
|
|
2140
1628
|
obj: PackageVulnerabilityDetails
|
|
2141
1629
|
) => any;
|
|
2142
|
-
|
|
2143
1630
|
export declare const RecommendationFilterSensitiveLog: (
|
|
2144
1631
|
obj: Recommendation
|
|
2145
1632
|
) => any;
|
|
2146
|
-
|
|
2147
1633
|
export declare const RemediationFilterSensitiveLog: (obj: Remediation) => any;
|
|
2148
|
-
|
|
2149
1634
|
export declare const ResourceDetailsFilterSensitiveLog: (
|
|
2150
1635
|
obj: ResourceDetails
|
|
2151
1636
|
) => any;
|
|
2152
|
-
|
|
2153
1637
|
export declare const ResourceFilterSensitiveLog: (obj: Resource) => any;
|
|
2154
|
-
|
|
2155
1638
|
export declare const FindingFilterSensitiveLog: (obj: Finding) => any;
|
|
2156
|
-
|
|
2157
1639
|
export declare const GetConfigurationRequestFilterSensitiveLog: (
|
|
2158
1640
|
obj: GetConfigurationRequest
|
|
2159
1641
|
) => any;
|
|
2160
|
-
|
|
2161
1642
|
export declare const GetConfigurationResponseFilterSensitiveLog: (
|
|
2162
1643
|
obj: GetConfigurationResponse
|
|
2163
1644
|
) => any;
|
|
2164
|
-
|
|
2165
1645
|
export declare const GetDelegatedAdminAccountRequestFilterSensitiveLog: (
|
|
2166
1646
|
obj: GetDelegatedAdminAccountRequest
|
|
2167
1647
|
) => any;
|
|
2168
|
-
|
|
2169
1648
|
export declare const GetDelegatedAdminAccountResponseFilterSensitiveLog: (
|
|
2170
1649
|
obj: GetDelegatedAdminAccountResponse
|
|
2171
1650
|
) => any;
|
|
2172
|
-
|
|
2173
1651
|
export declare const GetFindingsReportStatusRequestFilterSensitiveLog: (
|
|
2174
1652
|
obj: GetFindingsReportStatusRequest
|
|
2175
1653
|
) => any;
|
|
2176
|
-
|
|
2177
1654
|
export declare const GetFindingsReportStatusResponseFilterSensitiveLog: (
|
|
2178
1655
|
obj: GetFindingsReportStatusResponse
|
|
2179
1656
|
) => any;
|
|
2180
|
-
|
|
2181
1657
|
export declare const GetMemberRequestFilterSensitiveLog: (
|
|
2182
1658
|
obj: GetMemberRequest
|
|
2183
1659
|
) => any;
|
|
2184
|
-
|
|
2185
1660
|
export declare const MemberFilterSensitiveLog: (obj: Member) => any;
|
|
2186
|
-
|
|
2187
1661
|
export declare const GetMemberResponseFilterSensitiveLog: (
|
|
2188
1662
|
obj: GetMemberResponse
|
|
2189
1663
|
) => any;
|
|
2190
|
-
|
|
2191
1664
|
export declare const ListAccountPermissionsRequestFilterSensitiveLog: (
|
|
2192
1665
|
obj: ListAccountPermissionsRequest
|
|
2193
1666
|
) => any;
|
|
2194
|
-
|
|
2195
1667
|
export declare const PermissionFilterSensitiveLog: (obj: Permission) => any;
|
|
2196
|
-
|
|
2197
1668
|
export declare const ListAccountPermissionsResponseFilterSensitiveLog: (
|
|
2198
1669
|
obj: ListAccountPermissionsResponse
|
|
2199
1670
|
) => any;
|
|
2200
|
-
|
|
2201
1671
|
export declare const ListCoverageRequestFilterSensitiveLog: (
|
|
2202
1672
|
obj: ListCoverageRequest
|
|
2203
1673
|
) => any;
|
|
2204
|
-
|
|
2205
1674
|
export declare const ListCoverageResponseFilterSensitiveLog: (
|
|
2206
1675
|
obj: ListCoverageResponse
|
|
2207
1676
|
) => any;
|
|
2208
|
-
|
|
2209
1677
|
export declare const ListCoverageStatisticsRequestFilterSensitiveLog: (
|
|
2210
1678
|
obj: ListCoverageStatisticsRequest
|
|
2211
1679
|
) => any;
|
|
2212
|
-
|
|
2213
1680
|
export declare const ListCoverageStatisticsResponseFilterSensitiveLog: (
|
|
2214
1681
|
obj: ListCoverageStatisticsResponse
|
|
2215
1682
|
) => any;
|
|
2216
|
-
|
|
2217
1683
|
export declare const ListDelegatedAdminAccountsRequestFilterSensitiveLog: (
|
|
2218
1684
|
obj: ListDelegatedAdminAccountsRequest
|
|
2219
1685
|
) => any;
|
|
2220
|
-
|
|
2221
1686
|
export declare const ListDelegatedAdminAccountsResponseFilterSensitiveLog: (
|
|
2222
1687
|
obj: ListDelegatedAdminAccountsResponse
|
|
2223
1688
|
) => any;
|
|
2224
|
-
|
|
2225
1689
|
export declare const ListFiltersRequestFilterSensitiveLog: (
|
|
2226
1690
|
obj: ListFiltersRequest
|
|
2227
1691
|
) => any;
|
|
2228
|
-
|
|
2229
1692
|
export declare const ListFiltersResponseFilterSensitiveLog: (
|
|
2230
1693
|
obj: ListFiltersResponse
|
|
2231
1694
|
) => any;
|
|
2232
|
-
|
|
2233
1695
|
export declare const ListFindingAggregationsRequestFilterSensitiveLog: (
|
|
2234
1696
|
obj: ListFindingAggregationsRequest
|
|
2235
1697
|
) => any;
|
|
2236
|
-
|
|
2237
1698
|
export declare const ListFindingAggregationsResponseFilterSensitiveLog: (
|
|
2238
1699
|
obj: ListFindingAggregationsResponse
|
|
2239
1700
|
) => any;
|
|
2240
|
-
|
|
2241
1701
|
export declare const SortCriteriaFilterSensitiveLog: (obj: SortCriteria) => any;
|
|
2242
|
-
|
|
2243
1702
|
export declare const ListFindingsRequestFilterSensitiveLog: (
|
|
2244
1703
|
obj: ListFindingsRequest
|
|
2245
1704
|
) => any;
|
|
2246
|
-
|
|
2247
1705
|
export declare const ListFindingsResponseFilterSensitiveLog: (
|
|
2248
1706
|
obj: ListFindingsResponse
|
|
2249
1707
|
) => any;
|
|
2250
|
-
|
|
2251
1708
|
export declare const ListMembersRequestFilterSensitiveLog: (
|
|
2252
1709
|
obj: ListMembersRequest
|
|
2253
1710
|
) => any;
|
|
2254
|
-
|
|
2255
1711
|
export declare const ListMembersResponseFilterSensitiveLog: (
|
|
2256
1712
|
obj: ListMembersResponse
|
|
2257
1713
|
) => any;
|
|
2258
|
-
|
|
2259
1714
|
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
2260
1715
|
obj: ListTagsForResourceRequest
|
|
2261
1716
|
) => any;
|
|
2262
|
-
|
|
2263
1717
|
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
2264
1718
|
obj: ListTagsForResourceResponse
|
|
2265
1719
|
) => any;
|
|
2266
|
-
|
|
2267
1720
|
export declare const ListUsageTotalsRequestFilterSensitiveLog: (
|
|
2268
1721
|
obj: ListUsageTotalsRequest
|
|
2269
1722
|
) => any;
|
|
2270
|
-
|
|
2271
1723
|
export declare const UsageFilterSensitiveLog: (obj: Usage) => any;
|
|
2272
|
-
|
|
2273
1724
|
export declare const UsageTotalFilterSensitiveLog: (obj: UsageTotal) => any;
|
|
2274
|
-
|
|
2275
1725
|
export declare const ListUsageTotalsResponseFilterSensitiveLog: (
|
|
2276
1726
|
obj: ListUsageTotalsResponse
|
|
2277
1727
|
) => any;
|
|
2278
|
-
|
|
2279
1728
|
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
2280
1729
|
obj: TagResourceRequest
|
|
2281
1730
|
) => any;
|
|
2282
|
-
|
|
2283
1731
|
export declare const TagResourceResponseFilterSensitiveLog: (
|
|
2284
1732
|
obj: TagResourceResponse
|
|
2285
1733
|
) => any;
|
|
2286
|
-
|
|
2287
1734
|
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
2288
1735
|
obj: UntagResourceRequest
|
|
2289
1736
|
) => any;
|
|
2290
|
-
|
|
2291
1737
|
export declare const UntagResourceResponseFilterSensitiveLog: (
|
|
2292
1738
|
obj: UntagResourceResponse
|
|
2293
1739
|
) => any;
|
|
2294
|
-
|
|
2295
1740
|
export declare const UpdateConfigurationRequestFilterSensitiveLog: (
|
|
2296
1741
|
obj: UpdateConfigurationRequest
|
|
2297
1742
|
) => any;
|
|
2298
|
-
|
|
2299
1743
|
export declare const UpdateConfigurationResponseFilterSensitiveLog: (
|
|
2300
1744
|
obj: UpdateConfigurationResponse
|
|
2301
1745
|
) => any;
|
|
2302
|
-
|
|
2303
1746
|
export declare const UpdateFilterRequestFilterSensitiveLog: (
|
|
2304
1747
|
obj: UpdateFilterRequest
|
|
2305
1748
|
) => any;
|
|
2306
|
-
|
|
2307
1749
|
export declare const UpdateFilterResponseFilterSensitiveLog: (
|
|
2308
1750
|
obj: UpdateFilterResponse
|
|
2309
1751
|
) => any;
|
|
2310
|
-
|
|
2311
1752
|
export declare const UpdateOrganizationConfigurationRequestFilterSensitiveLog: (
|
|
2312
1753
|
obj: UpdateOrganizationConfigurationRequest
|
|
2313
1754
|
) => any;
|
|
2314
|
-
|
|
2315
1755
|
export declare const UpdateOrganizationConfigurationResponseFilterSensitiveLog: (
|
|
2316
1756
|
obj: UpdateOrganizationConfigurationResponse
|
|
2317
1757
|
) => any;
|