@aws-sdk/client-accessanalyzer 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/AccessAnalyzer.d.ts +0 -28
- package/dist-types/ts3.4/AccessAnalyzerClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/ApplyArchiveRuleCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CancelPolicyGenerationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateAccessPreviewCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateAnalyzerCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateArchiveRuleCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteAnalyzerCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteArchiveRuleCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetAccessPreviewCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetAnalyzedResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetAnalyzerCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetArchiveRuleCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetFindingCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetGeneratedPolicyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListAccessPreviewFindingsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListAccessPreviewsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListAnalyzedResourcesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListAnalyzersCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListArchiveRulesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListFindingsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListPolicyGenerationsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StartPolicyGenerationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StartResourceScanCommand.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/UpdateArchiveRuleCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateFindingsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ValidatePolicyCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/AccessAnalyzerServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -399
- 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,101 +1,71 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { AccessAnalyzerServiceException as __BaseException } from "./AccessAnalyzerServiceException";
|
|
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
|
);
|
|
11
9
|
}
|
|
12
|
-
|
|
13
10
|
export declare class ConflictException extends __BaseException {
|
|
14
11
|
readonly name: "ConflictException";
|
|
15
12
|
readonly $fault: "client";
|
|
16
|
-
|
|
17
13
|
resourceId: string | undefined;
|
|
18
|
-
|
|
19
14
|
resourceType: string | undefined;
|
|
20
|
-
|
|
21
15
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
22
16
|
}
|
|
23
|
-
|
|
24
17
|
export interface Criterion {
|
|
25
18
|
eq?: string[];
|
|
26
|
-
|
|
27
19
|
neq?: string[];
|
|
28
|
-
|
|
29
20
|
contains?: string[];
|
|
30
|
-
|
|
31
21
|
exists?: boolean;
|
|
32
22
|
}
|
|
33
|
-
|
|
34
23
|
export interface CreateArchiveRuleRequest {
|
|
35
24
|
analyzerName: string | undefined;
|
|
36
|
-
|
|
37
25
|
ruleName: string | undefined;
|
|
38
|
-
|
|
39
26
|
filter: Record<string, Criterion> | undefined;
|
|
40
|
-
|
|
41
27
|
clientToken?: string;
|
|
42
28
|
}
|
|
43
|
-
|
|
44
29
|
export declare class InternalServerException extends __BaseException {
|
|
45
30
|
readonly name: "InternalServerException";
|
|
46
31
|
readonly $fault: "server";
|
|
47
32
|
$retryable: {};
|
|
48
|
-
|
|
49
33
|
retryAfterSeconds?: number;
|
|
50
|
-
|
|
51
34
|
constructor(
|
|
52
35
|
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
53
36
|
);
|
|
54
37
|
}
|
|
55
|
-
|
|
56
38
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
57
39
|
readonly name: "ResourceNotFoundException";
|
|
58
40
|
readonly $fault: "client";
|
|
59
|
-
|
|
60
41
|
resourceId: string | undefined;
|
|
61
|
-
|
|
62
42
|
resourceType: string | undefined;
|
|
63
|
-
|
|
64
43
|
constructor(
|
|
65
44
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
66
45
|
);
|
|
67
46
|
}
|
|
68
|
-
|
|
69
47
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
70
48
|
readonly name: "ServiceQuotaExceededException";
|
|
71
49
|
readonly $fault: "client";
|
|
72
|
-
|
|
73
50
|
resourceId: string | undefined;
|
|
74
|
-
|
|
75
51
|
resourceType: string | undefined;
|
|
76
|
-
|
|
77
52
|
constructor(
|
|
78
53
|
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
79
54
|
);
|
|
80
55
|
}
|
|
81
|
-
|
|
82
56
|
export declare class ThrottlingException extends __BaseException {
|
|
83
57
|
readonly name: "ThrottlingException";
|
|
84
58
|
readonly $fault: "client";
|
|
85
59
|
$retryable: {
|
|
86
60
|
throttling: boolean;
|
|
87
61
|
};
|
|
88
|
-
|
|
89
62
|
retryAfterSeconds?: number;
|
|
90
|
-
|
|
91
63
|
constructor(
|
|
92
64
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
93
65
|
);
|
|
94
66
|
}
|
|
95
|
-
|
|
96
67
|
export interface ValidationExceptionField {
|
|
97
68
|
name: string | undefined;
|
|
98
|
-
|
|
99
69
|
message: string | undefined;
|
|
100
70
|
}
|
|
101
71
|
export declare enum ValidationExceptionReason {
|
|
@@ -104,101 +74,67 @@ export declare enum ValidationExceptionReason {
|
|
|
104
74
|
OTHER = "other",
|
|
105
75
|
UNKNOWN_OPERATION = "unknownOperation",
|
|
106
76
|
}
|
|
107
|
-
|
|
108
77
|
export declare class ValidationException extends __BaseException {
|
|
109
78
|
readonly name: "ValidationException";
|
|
110
79
|
readonly $fault: "client";
|
|
111
|
-
|
|
112
80
|
reason: ValidationExceptionReason | string | undefined;
|
|
113
|
-
|
|
114
81
|
fieldList?: ValidationExceptionField[];
|
|
115
|
-
|
|
116
82
|
constructor(
|
|
117
83
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
118
84
|
);
|
|
119
85
|
}
|
|
120
|
-
|
|
121
86
|
export interface DeleteArchiveRuleRequest {
|
|
122
87
|
analyzerName: string | undefined;
|
|
123
|
-
|
|
124
88
|
ruleName: string | undefined;
|
|
125
|
-
|
|
126
89
|
clientToken?: string;
|
|
127
90
|
}
|
|
128
|
-
|
|
129
91
|
export interface GetArchiveRuleRequest {
|
|
130
92
|
analyzerName: string | undefined;
|
|
131
|
-
|
|
132
93
|
ruleName: string | undefined;
|
|
133
94
|
}
|
|
134
|
-
|
|
135
95
|
export interface ArchiveRuleSummary {
|
|
136
96
|
ruleName: string | undefined;
|
|
137
|
-
|
|
138
97
|
filter: Record<string, Criterion> | undefined;
|
|
139
|
-
|
|
140
98
|
createdAt: Date | undefined;
|
|
141
|
-
|
|
142
99
|
updatedAt: Date | undefined;
|
|
143
100
|
}
|
|
144
|
-
|
|
145
101
|
export interface GetArchiveRuleResponse {
|
|
146
102
|
archiveRule: ArchiveRuleSummary | undefined;
|
|
147
103
|
}
|
|
148
|
-
|
|
149
104
|
export interface ListArchiveRulesRequest {
|
|
150
105
|
analyzerName: string | undefined;
|
|
151
|
-
|
|
152
106
|
nextToken?: string;
|
|
153
|
-
|
|
154
107
|
maxResults?: number;
|
|
155
108
|
}
|
|
156
|
-
|
|
157
109
|
export interface ListArchiveRulesResponse {
|
|
158
110
|
archiveRules: ArchiveRuleSummary[] | undefined;
|
|
159
|
-
|
|
160
111
|
nextToken?: string;
|
|
161
112
|
}
|
|
162
|
-
|
|
163
113
|
export interface UpdateArchiveRuleRequest {
|
|
164
114
|
analyzerName: string | undefined;
|
|
165
|
-
|
|
166
115
|
ruleName: string | undefined;
|
|
167
|
-
|
|
168
116
|
filter: Record<string, Criterion> | undefined;
|
|
169
|
-
|
|
170
117
|
clientToken?: string;
|
|
171
118
|
}
|
|
172
|
-
|
|
173
119
|
export interface InlineArchiveRule {
|
|
174
120
|
ruleName: string | undefined;
|
|
175
|
-
|
|
176
121
|
filter: Record<string, Criterion> | undefined;
|
|
177
122
|
}
|
|
178
123
|
export declare type Type = "ACCOUNT" | "ORGANIZATION";
|
|
179
|
-
|
|
180
124
|
export interface CreateAnalyzerRequest {
|
|
181
125
|
analyzerName: string | undefined;
|
|
182
|
-
|
|
183
126
|
type: Type | string | undefined;
|
|
184
|
-
|
|
185
127
|
archiveRules?: InlineArchiveRule[];
|
|
186
|
-
|
|
187
128
|
tags?: Record<string, string>;
|
|
188
|
-
|
|
189
129
|
clientToken?: string;
|
|
190
130
|
}
|
|
191
|
-
|
|
192
131
|
export interface CreateAnalyzerResponse {
|
|
193
132
|
arn?: string;
|
|
194
133
|
}
|
|
195
|
-
|
|
196
134
|
export interface DeleteAnalyzerRequest {
|
|
197
135
|
analyzerName: string | undefined;
|
|
198
|
-
|
|
199
136
|
clientToken?: string;
|
|
200
137
|
}
|
|
201
|
-
|
|
202
138
|
export interface GetAnalyzerRequest {
|
|
203
139
|
analyzerName: string | undefined;
|
|
204
140
|
}
|
|
@@ -212,68 +148,46 @@ export declare type ReasonCode =
|
|
|
212
148
|
| "DELEGATED_ADMINISTRATOR_DEREGISTERED"
|
|
213
149
|
| "ORGANIZATION_DELETED"
|
|
214
150
|
| "SERVICE_LINKED_ROLE_CREATION_FAILED";
|
|
215
|
-
|
|
216
151
|
export interface StatusReason {
|
|
217
152
|
code: ReasonCode | string | undefined;
|
|
218
153
|
}
|
|
219
|
-
|
|
220
154
|
export interface AnalyzerSummary {
|
|
221
155
|
arn: string | undefined;
|
|
222
|
-
|
|
223
156
|
name: string | undefined;
|
|
224
|
-
|
|
225
157
|
type: Type | string | undefined;
|
|
226
|
-
|
|
227
158
|
createdAt: Date | undefined;
|
|
228
|
-
|
|
229
159
|
lastResourceAnalyzed?: string;
|
|
230
|
-
|
|
231
160
|
lastResourceAnalyzedAt?: Date;
|
|
232
|
-
|
|
233
161
|
tags?: Record<string, string>;
|
|
234
|
-
|
|
235
162
|
status: AnalyzerStatus | string | undefined;
|
|
236
|
-
|
|
237
163
|
statusReason?: StatusReason;
|
|
238
164
|
}
|
|
239
|
-
|
|
240
165
|
export interface GetAnalyzerResponse {
|
|
241
166
|
analyzer: AnalyzerSummary | undefined;
|
|
242
167
|
}
|
|
243
|
-
|
|
244
168
|
export interface ListAnalyzersRequest {
|
|
245
169
|
nextToken?: string;
|
|
246
|
-
|
|
247
170
|
maxResults?: number;
|
|
248
|
-
|
|
249
171
|
type?: Type | string;
|
|
250
172
|
}
|
|
251
|
-
|
|
252
173
|
export interface ListAnalyzersResponse {
|
|
253
174
|
analyzers: AnalyzerSummary[] | undefined;
|
|
254
|
-
|
|
255
175
|
nextToken?: string;
|
|
256
176
|
}
|
|
257
|
-
|
|
258
177
|
export interface ApplyArchiveRuleRequest {
|
|
259
178
|
analyzerArn: string | undefined;
|
|
260
|
-
|
|
261
179
|
ruleName: string | undefined;
|
|
262
|
-
|
|
263
180
|
clientToken?: string;
|
|
264
181
|
}
|
|
265
182
|
export interface CancelPolicyGenerationRequest {
|
|
266
183
|
jobId: string | undefined;
|
|
267
184
|
}
|
|
268
185
|
export interface CancelPolicyGenerationResponse {}
|
|
269
|
-
|
|
270
186
|
export interface IamRoleConfiguration {
|
|
271
187
|
trustPolicy?: string;
|
|
272
188
|
}
|
|
273
|
-
|
|
274
189
|
export interface KmsGrantConstraints {
|
|
275
190
|
encryptionContextEquals?: Record<string, string>;
|
|
276
|
-
|
|
277
191
|
encryptionContextSubset?: Record<string, string>;
|
|
278
192
|
}
|
|
279
193
|
export declare enum KmsGrantOperation {
|
|
@@ -292,31 +206,21 @@ export declare enum KmsGrantOperation {
|
|
|
292
206
|
SIGN = "Sign",
|
|
293
207
|
VERIFY = "Verify",
|
|
294
208
|
}
|
|
295
|
-
|
|
296
209
|
export interface KmsGrantConfiguration {
|
|
297
210
|
operations: (KmsGrantOperation | string)[] | undefined;
|
|
298
|
-
|
|
299
211
|
granteePrincipal: string | undefined;
|
|
300
|
-
|
|
301
212
|
retiringPrincipal?: string;
|
|
302
|
-
|
|
303
213
|
constraints?: KmsGrantConstraints;
|
|
304
|
-
|
|
305
214
|
issuingAccount: string | undefined;
|
|
306
215
|
}
|
|
307
|
-
|
|
308
216
|
export interface KmsKeyConfiguration {
|
|
309
217
|
keyPolicies?: Record<string, string>;
|
|
310
|
-
|
|
311
218
|
grants?: KmsGrantConfiguration[];
|
|
312
219
|
}
|
|
313
|
-
|
|
314
220
|
export interface InternetConfiguration {}
|
|
315
|
-
|
|
316
221
|
export interface VpcConfiguration {
|
|
317
222
|
vpcId: string | undefined;
|
|
318
223
|
}
|
|
319
|
-
|
|
320
224
|
export declare type NetworkOriginConfiguration =
|
|
321
225
|
| NetworkOriginConfiguration.InternetConfigurationMember
|
|
322
226
|
| NetworkOriginConfiguration.VpcConfigurationMember
|
|
@@ -327,7 +231,6 @@ export declare namespace NetworkOriginConfiguration {
|
|
|
327
231
|
internetConfiguration?: never;
|
|
328
232
|
$unknown?: never;
|
|
329
233
|
}
|
|
330
|
-
|
|
331
234
|
interface InternetConfigurationMember {
|
|
332
235
|
vpcConfiguration?: never;
|
|
333
236
|
internetConfiguration: InternetConfiguration;
|
|
@@ -345,21 +248,15 @@ export declare namespace NetworkOriginConfiguration {
|
|
|
345
248
|
}
|
|
346
249
|
const visit: <T>(value: NetworkOriginConfiguration, visitor: Visitor<T>) => T;
|
|
347
250
|
}
|
|
348
|
-
|
|
349
251
|
export interface S3PublicAccessBlockConfiguration {
|
|
350
252
|
ignorePublicAcls: boolean | undefined;
|
|
351
|
-
|
|
352
253
|
restrictPublicBuckets: boolean | undefined;
|
|
353
254
|
}
|
|
354
|
-
|
|
355
255
|
export interface S3AccessPointConfiguration {
|
|
356
256
|
accessPointPolicy?: string;
|
|
357
|
-
|
|
358
257
|
publicAccessBlock?: S3PublicAccessBlockConfiguration;
|
|
359
|
-
|
|
360
258
|
networkOrigin?: NetworkOriginConfiguration;
|
|
361
259
|
}
|
|
362
|
-
|
|
363
260
|
export declare type AclGrantee =
|
|
364
261
|
| AclGrantee.IdMember
|
|
365
262
|
| AclGrantee.UriMember
|
|
@@ -370,7 +267,6 @@ export declare namespace AclGrantee {
|
|
|
370
267
|
uri?: never;
|
|
371
268
|
$unknown?: never;
|
|
372
269
|
}
|
|
373
|
-
|
|
374
270
|
interface UriMember {
|
|
375
271
|
id?: never;
|
|
376
272
|
uri: string;
|
|
@@ -395,33 +291,23 @@ export declare enum AclPermission {
|
|
|
395
291
|
WRITE = "WRITE",
|
|
396
292
|
WRITE_ACP = "WRITE_ACP",
|
|
397
293
|
}
|
|
398
|
-
|
|
399
294
|
export interface S3BucketAclGrantConfiguration {
|
|
400
295
|
permission: AclPermission | string | undefined;
|
|
401
|
-
|
|
402
296
|
grantee: AclGrantee | undefined;
|
|
403
297
|
}
|
|
404
|
-
|
|
405
298
|
export interface S3BucketConfiguration {
|
|
406
299
|
bucketPolicy?: string;
|
|
407
|
-
|
|
408
300
|
bucketAclGrants?: S3BucketAclGrantConfiguration[];
|
|
409
|
-
|
|
410
301
|
bucketPublicAccessBlock?: S3PublicAccessBlockConfiguration;
|
|
411
|
-
|
|
412
302
|
accessPoints?: Record<string, S3AccessPointConfiguration>;
|
|
413
303
|
}
|
|
414
|
-
|
|
415
304
|
export interface SecretsManagerSecretConfiguration {
|
|
416
305
|
kmsKeyId?: string;
|
|
417
|
-
|
|
418
306
|
secretPolicy?: string;
|
|
419
307
|
}
|
|
420
|
-
|
|
421
308
|
export interface SqsQueueConfiguration {
|
|
422
309
|
queuePolicy?: string;
|
|
423
310
|
}
|
|
424
|
-
|
|
425
311
|
export declare type Configuration =
|
|
426
312
|
| Configuration.IamRoleMember
|
|
427
313
|
| Configuration.KmsKeyMember
|
|
@@ -438,7 +324,6 @@ export declare namespace Configuration {
|
|
|
438
324
|
sqsQueue?: never;
|
|
439
325
|
$unknown?: never;
|
|
440
326
|
}
|
|
441
|
-
|
|
442
327
|
interface KmsKeyMember {
|
|
443
328
|
iamRole?: never;
|
|
444
329
|
kmsKey: KmsKeyConfiguration;
|
|
@@ -447,7 +332,6 @@ export declare namespace Configuration {
|
|
|
447
332
|
sqsQueue?: never;
|
|
448
333
|
$unknown?: never;
|
|
449
334
|
}
|
|
450
|
-
|
|
451
335
|
interface SecretsManagerSecretMember {
|
|
452
336
|
iamRole?: never;
|
|
453
337
|
kmsKey?: never;
|
|
@@ -456,7 +340,6 @@ export declare namespace Configuration {
|
|
|
456
340
|
sqsQueue?: never;
|
|
457
341
|
$unknown?: never;
|
|
458
342
|
}
|
|
459
|
-
|
|
460
343
|
interface S3BucketMember {
|
|
461
344
|
iamRole?: never;
|
|
462
345
|
kmsKey?: never;
|
|
@@ -465,7 +348,6 @@ export declare namespace Configuration {
|
|
|
465
348
|
sqsQueue?: never;
|
|
466
349
|
$unknown?: never;
|
|
467
350
|
}
|
|
468
|
-
|
|
469
351
|
interface SqsQueueMember {
|
|
470
352
|
iamRole?: never;
|
|
471
353
|
kmsKey?: never;
|
|
@@ -494,9 +376,7 @@ export declare namespace Configuration {
|
|
|
494
376
|
}
|
|
495
377
|
export interface CreateAccessPreviewRequest {
|
|
496
378
|
analyzerArn: string | undefined;
|
|
497
|
-
|
|
498
379
|
configurations: Record<string, Configuration> | undefined;
|
|
499
|
-
|
|
500
380
|
clientToken?: string;
|
|
501
381
|
}
|
|
502
382
|
export interface CreateAccessPreviewResponse {
|
|
@@ -504,7 +384,6 @@ export interface CreateAccessPreviewResponse {
|
|
|
504
384
|
}
|
|
505
385
|
export interface GetAccessPreviewRequest {
|
|
506
386
|
accessPreviewId: string | undefined;
|
|
507
|
-
|
|
508
387
|
analyzerArn: string | undefined;
|
|
509
388
|
}
|
|
510
389
|
export declare enum AccessPreviewStatus {
|
|
@@ -516,31 +395,22 @@ export declare enum AccessPreviewStatusReasonCode {
|
|
|
516
395
|
INTERNAL_ERROR = "INTERNAL_ERROR",
|
|
517
396
|
INVALID_CONFIGURATION = "INVALID_CONFIGURATION",
|
|
518
397
|
}
|
|
519
|
-
|
|
520
398
|
export interface AccessPreviewStatusReason {
|
|
521
399
|
code: AccessPreviewStatusReasonCode | string | undefined;
|
|
522
400
|
}
|
|
523
|
-
|
|
524
401
|
export interface AccessPreview {
|
|
525
402
|
id: string | undefined;
|
|
526
|
-
|
|
527
403
|
analyzerArn: string | undefined;
|
|
528
|
-
|
|
529
404
|
configurations: Record<string, Configuration> | undefined;
|
|
530
|
-
|
|
531
405
|
createdAt: Date | undefined;
|
|
532
|
-
|
|
533
406
|
status: AccessPreviewStatus | string | undefined;
|
|
534
|
-
|
|
535
407
|
statusReason?: AccessPreviewStatusReason;
|
|
536
408
|
}
|
|
537
409
|
export interface GetAccessPreviewResponse {
|
|
538
410
|
accessPreview: AccessPreview | undefined;
|
|
539
411
|
}
|
|
540
|
-
|
|
541
412
|
export interface GetAnalyzedResourceRequest {
|
|
542
413
|
analyzerArn: string | undefined;
|
|
543
|
-
|
|
544
414
|
resourceArn: string | undefined;
|
|
545
415
|
}
|
|
546
416
|
export declare type ResourceType =
|
|
@@ -552,41 +422,26 @@ export declare type ResourceType =
|
|
|
552
422
|
| "AWS::SQS::Queue"
|
|
553
423
|
| "AWS::SecretsManager::Secret";
|
|
554
424
|
export declare type FindingStatus = "ACTIVE" | "ARCHIVED" | "RESOLVED";
|
|
555
|
-
|
|
556
425
|
export interface AnalyzedResource {
|
|
557
426
|
resourceArn: string | undefined;
|
|
558
|
-
|
|
559
427
|
resourceType: ResourceType | string | undefined;
|
|
560
|
-
|
|
561
428
|
createdAt: Date | undefined;
|
|
562
|
-
|
|
563
429
|
analyzedAt: Date | undefined;
|
|
564
|
-
|
|
565
430
|
updatedAt: Date | undefined;
|
|
566
|
-
|
|
567
431
|
isPublic: boolean | undefined;
|
|
568
|
-
|
|
569
432
|
actions?: string[];
|
|
570
|
-
|
|
571
433
|
sharedVia?: string[];
|
|
572
|
-
|
|
573
434
|
status?: FindingStatus | string;
|
|
574
|
-
|
|
575
435
|
resourceOwnerAccount: string | undefined;
|
|
576
|
-
|
|
577
436
|
error?: string;
|
|
578
437
|
}
|
|
579
|
-
|
|
580
438
|
export interface GetAnalyzedResourceResponse {
|
|
581
439
|
resource?: AnalyzedResource;
|
|
582
440
|
}
|
|
583
|
-
|
|
584
441
|
export interface GetFindingRequest {
|
|
585
442
|
analyzerArn: string | undefined;
|
|
586
|
-
|
|
587
443
|
id: string | undefined;
|
|
588
444
|
}
|
|
589
|
-
|
|
590
445
|
export interface FindingSourceDetail {
|
|
591
446
|
accessPointArn?: string;
|
|
592
447
|
}
|
|
@@ -594,85 +449,54 @@ export declare type FindingSourceType =
|
|
|
594
449
|
| "BUCKET_ACL"
|
|
595
450
|
| "POLICY"
|
|
596
451
|
| "S3_ACCESS_POINT";
|
|
597
|
-
|
|
598
452
|
export interface FindingSource {
|
|
599
453
|
type: FindingSourceType | string | undefined;
|
|
600
|
-
|
|
601
454
|
detail?: FindingSourceDetail;
|
|
602
455
|
}
|
|
603
|
-
|
|
604
456
|
export interface Finding {
|
|
605
457
|
id: string | undefined;
|
|
606
|
-
|
|
607
458
|
principal?: Record<string, string>;
|
|
608
|
-
|
|
609
459
|
action?: string[];
|
|
610
|
-
|
|
611
460
|
resource?: string;
|
|
612
|
-
|
|
613
461
|
isPublic?: boolean;
|
|
614
|
-
|
|
615
462
|
resourceType: ResourceType | string | undefined;
|
|
616
|
-
|
|
617
463
|
condition: Record<string, string> | undefined;
|
|
618
|
-
|
|
619
464
|
createdAt: Date | undefined;
|
|
620
|
-
|
|
621
465
|
analyzedAt: Date | undefined;
|
|
622
|
-
|
|
623
466
|
updatedAt: Date | undefined;
|
|
624
|
-
|
|
625
467
|
status: FindingStatus | string | undefined;
|
|
626
|
-
|
|
627
468
|
resourceOwnerAccount: string | undefined;
|
|
628
|
-
|
|
629
469
|
error?: string;
|
|
630
|
-
|
|
631
470
|
sources?: FindingSource[];
|
|
632
471
|
}
|
|
633
|
-
|
|
634
472
|
export interface GetFindingResponse {
|
|
635
473
|
finding?: Finding;
|
|
636
474
|
}
|
|
637
475
|
export interface GetGeneratedPolicyRequest {
|
|
638
476
|
jobId: string | undefined;
|
|
639
|
-
|
|
640
477
|
includeResourcePlaceholders?: boolean;
|
|
641
|
-
|
|
642
478
|
includeServiceLevelTemplate?: boolean;
|
|
643
479
|
}
|
|
644
|
-
|
|
645
480
|
export interface GeneratedPolicy {
|
|
646
481
|
policy: string | undefined;
|
|
647
482
|
}
|
|
648
|
-
|
|
649
483
|
export interface TrailProperties {
|
|
650
484
|
cloudTrailArn: string | undefined;
|
|
651
|
-
|
|
652
485
|
regions?: string[];
|
|
653
|
-
|
|
654
486
|
allRegions?: boolean;
|
|
655
487
|
}
|
|
656
|
-
|
|
657
488
|
export interface CloudTrailProperties {
|
|
658
489
|
trailProperties: TrailProperties[] | undefined;
|
|
659
|
-
|
|
660
490
|
startTime: Date | undefined;
|
|
661
|
-
|
|
662
491
|
endTime: Date | undefined;
|
|
663
492
|
}
|
|
664
|
-
|
|
665
493
|
export interface GeneratedPolicyProperties {
|
|
666
494
|
isComplete?: boolean;
|
|
667
|
-
|
|
668
495
|
principalArn: string | undefined;
|
|
669
|
-
|
|
670
496
|
cloudTrailProperties?: CloudTrailProperties;
|
|
671
497
|
}
|
|
672
|
-
|
|
673
498
|
export interface GeneratedPolicyResult {
|
|
674
499
|
properties: GeneratedPolicyProperties | undefined;
|
|
675
|
-
|
|
676
500
|
generatedPolicies?: GeneratedPolicy[];
|
|
677
501
|
}
|
|
678
502
|
export declare enum JobErrorCode {
|
|
@@ -681,10 +505,8 @@ export declare enum JobErrorCode {
|
|
|
681
505
|
SERVICE_ERROR = "SERVICE_ERROR",
|
|
682
506
|
SERVICE_QUOTA_EXCEEDED_ERROR = "SERVICE_QUOTA_EXCEEDED_ERROR",
|
|
683
507
|
}
|
|
684
|
-
|
|
685
508
|
export interface JobError {
|
|
686
509
|
code: JobErrorCode | string | undefined;
|
|
687
|
-
|
|
688
510
|
message: string | undefined;
|
|
689
511
|
}
|
|
690
512
|
export declare enum JobStatus {
|
|
@@ -693,32 +515,22 @@ export declare enum JobStatus {
|
|
|
693
515
|
IN_PROGRESS = "IN_PROGRESS",
|
|
694
516
|
SUCCEEDED = "SUCCEEDED",
|
|
695
517
|
}
|
|
696
|
-
|
|
697
518
|
export interface JobDetails {
|
|
698
519
|
jobId: string | undefined;
|
|
699
|
-
|
|
700
520
|
status: JobStatus | string | undefined;
|
|
701
|
-
|
|
702
521
|
startedOn: Date | undefined;
|
|
703
|
-
|
|
704
522
|
completedOn?: Date;
|
|
705
|
-
|
|
706
523
|
jobError?: JobError;
|
|
707
524
|
}
|
|
708
525
|
export interface GetGeneratedPolicyResponse {
|
|
709
526
|
jobDetails: JobDetails | undefined;
|
|
710
|
-
|
|
711
527
|
generatedPolicyResult: GeneratedPolicyResult | undefined;
|
|
712
528
|
}
|
|
713
529
|
export interface ListAccessPreviewFindingsRequest {
|
|
714
530
|
accessPreviewId: string | undefined;
|
|
715
|
-
|
|
716
531
|
analyzerArn: string | undefined;
|
|
717
|
-
|
|
718
532
|
filter?: Record<string, Criterion>;
|
|
719
|
-
|
|
720
533
|
nextToken?: string;
|
|
721
|
-
|
|
722
534
|
maxResults?: number;
|
|
723
535
|
}
|
|
724
536
|
export declare enum FindingChangeType {
|
|
@@ -726,243 +538,154 @@ export declare enum FindingChangeType {
|
|
|
726
538
|
NEW = "NEW",
|
|
727
539
|
UNCHANGED = "UNCHANGED",
|
|
728
540
|
}
|
|
729
|
-
|
|
730
541
|
export interface AccessPreviewFinding {
|
|
731
542
|
id: string | undefined;
|
|
732
|
-
|
|
733
543
|
existingFindingId?: string;
|
|
734
|
-
|
|
735
544
|
existingFindingStatus?: FindingStatus | string;
|
|
736
|
-
|
|
737
545
|
principal?: Record<string, string>;
|
|
738
|
-
|
|
739
546
|
action?: string[];
|
|
740
|
-
|
|
741
547
|
condition?: Record<string, string>;
|
|
742
|
-
|
|
743
548
|
resource?: string;
|
|
744
|
-
|
|
745
549
|
isPublic?: boolean;
|
|
746
|
-
|
|
747
550
|
resourceType: ResourceType | string | undefined;
|
|
748
|
-
|
|
749
551
|
createdAt: Date | undefined;
|
|
750
|
-
|
|
751
552
|
changeType: FindingChangeType | string | undefined;
|
|
752
|
-
|
|
753
553
|
status: FindingStatus | string | undefined;
|
|
754
|
-
|
|
755
554
|
resourceOwnerAccount: string | undefined;
|
|
756
|
-
|
|
757
555
|
error?: string;
|
|
758
|
-
|
|
759
556
|
sources?: FindingSource[];
|
|
760
557
|
}
|
|
761
558
|
export interface ListAccessPreviewFindingsResponse {
|
|
762
559
|
findings: AccessPreviewFinding[] | undefined;
|
|
763
|
-
|
|
764
560
|
nextToken?: string;
|
|
765
561
|
}
|
|
766
562
|
export interface ListAccessPreviewsRequest {
|
|
767
563
|
analyzerArn: string | undefined;
|
|
768
|
-
|
|
769
564
|
nextToken?: string;
|
|
770
|
-
|
|
771
565
|
maxResults?: number;
|
|
772
566
|
}
|
|
773
|
-
|
|
774
567
|
export interface AccessPreviewSummary {
|
|
775
568
|
id: string | undefined;
|
|
776
|
-
|
|
777
569
|
analyzerArn: string | undefined;
|
|
778
|
-
|
|
779
570
|
createdAt: Date | undefined;
|
|
780
|
-
|
|
781
571
|
status: AccessPreviewStatus | string | undefined;
|
|
782
|
-
|
|
783
572
|
statusReason?: AccessPreviewStatusReason;
|
|
784
573
|
}
|
|
785
574
|
export interface ListAccessPreviewsResponse {
|
|
786
575
|
accessPreviews: AccessPreviewSummary[] | undefined;
|
|
787
|
-
|
|
788
576
|
nextToken?: string;
|
|
789
577
|
}
|
|
790
|
-
|
|
791
578
|
export interface ListAnalyzedResourcesRequest {
|
|
792
579
|
analyzerArn: string | undefined;
|
|
793
|
-
|
|
794
580
|
resourceType?: ResourceType | string;
|
|
795
|
-
|
|
796
581
|
nextToken?: string;
|
|
797
|
-
|
|
798
582
|
maxResults?: number;
|
|
799
583
|
}
|
|
800
|
-
|
|
801
584
|
export interface AnalyzedResourceSummary {
|
|
802
585
|
resourceArn: string | undefined;
|
|
803
|
-
|
|
804
586
|
resourceOwnerAccount: string | undefined;
|
|
805
|
-
|
|
806
587
|
resourceType: ResourceType | string | undefined;
|
|
807
588
|
}
|
|
808
|
-
|
|
809
589
|
export interface ListAnalyzedResourcesResponse {
|
|
810
590
|
analyzedResources: AnalyzedResourceSummary[] | undefined;
|
|
811
|
-
|
|
812
591
|
nextToken?: string;
|
|
813
592
|
}
|
|
814
593
|
export declare type OrderBy = "ASC" | "DESC";
|
|
815
|
-
|
|
816
594
|
export interface SortCriteria {
|
|
817
595
|
attributeName?: string;
|
|
818
|
-
|
|
819
596
|
orderBy?: OrderBy | string;
|
|
820
597
|
}
|
|
821
|
-
|
|
822
598
|
export interface ListFindingsRequest {
|
|
823
599
|
analyzerArn: string | undefined;
|
|
824
|
-
|
|
825
600
|
filter?: Record<string, Criterion>;
|
|
826
|
-
|
|
827
601
|
sort?: SortCriteria;
|
|
828
|
-
|
|
829
602
|
nextToken?: string;
|
|
830
|
-
|
|
831
603
|
maxResults?: number;
|
|
832
604
|
}
|
|
833
|
-
|
|
834
605
|
export interface FindingSummary {
|
|
835
606
|
id: string | undefined;
|
|
836
|
-
|
|
837
607
|
principal?: Record<string, string>;
|
|
838
|
-
|
|
839
608
|
action?: string[];
|
|
840
|
-
|
|
841
609
|
resource?: string;
|
|
842
|
-
|
|
843
610
|
isPublic?: boolean;
|
|
844
|
-
|
|
845
611
|
resourceType: ResourceType | string | undefined;
|
|
846
|
-
|
|
847
612
|
condition: Record<string, string> | undefined;
|
|
848
|
-
|
|
849
613
|
createdAt: Date | undefined;
|
|
850
|
-
|
|
851
614
|
analyzedAt: Date | undefined;
|
|
852
|
-
|
|
853
615
|
updatedAt: Date | undefined;
|
|
854
|
-
|
|
855
616
|
status: FindingStatus | string | undefined;
|
|
856
|
-
|
|
857
617
|
resourceOwnerAccount: string | undefined;
|
|
858
|
-
|
|
859
618
|
error?: string;
|
|
860
|
-
|
|
861
619
|
sources?: FindingSource[];
|
|
862
620
|
}
|
|
863
|
-
|
|
864
621
|
export interface ListFindingsResponse {
|
|
865
622
|
findings: FindingSummary[] | undefined;
|
|
866
|
-
|
|
867
623
|
nextToken?: string;
|
|
868
624
|
}
|
|
869
625
|
export interface ListPolicyGenerationsRequest {
|
|
870
626
|
principalArn?: string;
|
|
871
|
-
|
|
872
627
|
maxResults?: number;
|
|
873
|
-
|
|
874
628
|
nextToken?: string;
|
|
875
629
|
}
|
|
876
|
-
|
|
877
630
|
export interface PolicyGeneration {
|
|
878
631
|
jobId: string | undefined;
|
|
879
|
-
|
|
880
632
|
principalArn: string | undefined;
|
|
881
|
-
|
|
882
633
|
status: JobStatus | string | undefined;
|
|
883
|
-
|
|
884
634
|
startedOn: Date | undefined;
|
|
885
|
-
|
|
886
635
|
completedOn?: Date;
|
|
887
636
|
}
|
|
888
637
|
export interface ListPolicyGenerationsResponse {
|
|
889
638
|
policyGenerations: PolicyGeneration[] | undefined;
|
|
890
|
-
|
|
891
639
|
nextToken?: string;
|
|
892
640
|
}
|
|
893
|
-
|
|
894
641
|
export interface ListTagsForResourceRequest {
|
|
895
642
|
resourceArn: string | undefined;
|
|
896
643
|
}
|
|
897
|
-
|
|
898
644
|
export interface ListTagsForResourceResponse {
|
|
899
645
|
tags?: Record<string, string>;
|
|
900
646
|
}
|
|
901
|
-
|
|
902
647
|
export interface Trail {
|
|
903
648
|
cloudTrailArn: string | undefined;
|
|
904
|
-
|
|
905
649
|
regions?: string[];
|
|
906
|
-
|
|
907
650
|
allRegions?: boolean;
|
|
908
651
|
}
|
|
909
|
-
|
|
910
652
|
export interface CloudTrailDetails {
|
|
911
653
|
trails: Trail[] | undefined;
|
|
912
|
-
|
|
913
654
|
accessRole: string | undefined;
|
|
914
|
-
|
|
915
655
|
startTime: Date | undefined;
|
|
916
|
-
|
|
917
656
|
endTime?: Date;
|
|
918
657
|
}
|
|
919
|
-
|
|
920
658
|
export interface PolicyGenerationDetails {
|
|
921
659
|
principalArn: string | undefined;
|
|
922
660
|
}
|
|
923
661
|
export interface StartPolicyGenerationRequest {
|
|
924
662
|
policyGenerationDetails: PolicyGenerationDetails | undefined;
|
|
925
|
-
|
|
926
663
|
cloudTrailDetails?: CloudTrailDetails;
|
|
927
|
-
|
|
928
664
|
clientToken?: string;
|
|
929
665
|
}
|
|
930
666
|
export interface StartPolicyGenerationResponse {
|
|
931
667
|
jobId: string | undefined;
|
|
932
668
|
}
|
|
933
|
-
|
|
934
669
|
export interface StartResourceScanRequest {
|
|
935
670
|
analyzerArn: string | undefined;
|
|
936
|
-
|
|
937
671
|
resourceArn: string | undefined;
|
|
938
672
|
}
|
|
939
|
-
|
|
940
673
|
export interface TagResourceRequest {
|
|
941
674
|
resourceArn: string | undefined;
|
|
942
|
-
|
|
943
675
|
tags: Record<string, string> | undefined;
|
|
944
676
|
}
|
|
945
|
-
|
|
946
677
|
export interface TagResourceResponse {}
|
|
947
|
-
|
|
948
678
|
export interface UntagResourceRequest {
|
|
949
679
|
resourceArn: string | undefined;
|
|
950
|
-
|
|
951
680
|
tagKeys: string[] | undefined;
|
|
952
681
|
}
|
|
953
|
-
|
|
954
682
|
export interface UntagResourceResponse {}
|
|
955
683
|
export declare type FindingStatusUpdate = "ACTIVE" | "ARCHIVED";
|
|
956
|
-
|
|
957
684
|
export interface UpdateFindingsRequest {
|
|
958
685
|
analyzerArn: string | undefined;
|
|
959
|
-
|
|
960
686
|
status: FindingStatusUpdate | string | undefined;
|
|
961
|
-
|
|
962
687
|
ids?: string[];
|
|
963
|
-
|
|
964
688
|
resourceArn?: string;
|
|
965
|
-
|
|
966
689
|
clientToken?: string;
|
|
967
690
|
}
|
|
968
691
|
export declare enum Locale {
|
|
@@ -990,15 +713,10 @@ export declare enum ValidatePolicyResourceType {
|
|
|
990
713
|
}
|
|
991
714
|
export interface ValidatePolicyRequest {
|
|
992
715
|
locale?: Locale | string;
|
|
993
|
-
|
|
994
716
|
maxResults?: number;
|
|
995
|
-
|
|
996
717
|
nextToken?: string;
|
|
997
|
-
|
|
998
718
|
policyDocument: string | undefined;
|
|
999
|
-
|
|
1000
719
|
policyType: PolicyType | string | undefined;
|
|
1001
|
-
|
|
1002
720
|
validatePolicyResourceType?: ValidatePolicyResourceType | string;
|
|
1003
721
|
}
|
|
1004
722
|
export declare enum ValidatePolicyFindingType {
|
|
@@ -1007,13 +725,10 @@ export declare enum ValidatePolicyFindingType {
|
|
|
1007
725
|
SUGGESTION = "SUGGESTION",
|
|
1008
726
|
WARNING = "WARNING",
|
|
1009
727
|
}
|
|
1010
|
-
|
|
1011
728
|
export interface Substring {
|
|
1012
729
|
start: number | undefined;
|
|
1013
|
-
|
|
1014
730
|
length: number | undefined;
|
|
1015
731
|
}
|
|
1016
|
-
|
|
1017
732
|
export declare type PathElement =
|
|
1018
733
|
| PathElement.IndexMember
|
|
1019
734
|
| PathElement.KeyMember
|
|
@@ -1028,7 +743,6 @@ export declare namespace PathElement {
|
|
|
1028
743
|
value?: never;
|
|
1029
744
|
$unknown?: never;
|
|
1030
745
|
}
|
|
1031
|
-
|
|
1032
746
|
interface KeyMember {
|
|
1033
747
|
index?: never;
|
|
1034
748
|
key: string;
|
|
@@ -1036,7 +750,6 @@ export declare namespace PathElement {
|
|
|
1036
750
|
value?: never;
|
|
1037
751
|
$unknown?: never;
|
|
1038
752
|
}
|
|
1039
|
-
|
|
1040
753
|
interface SubstringMember {
|
|
1041
754
|
index?: never;
|
|
1042
755
|
key?: never;
|
|
@@ -1044,7 +757,6 @@ export declare namespace PathElement {
|
|
|
1044
757
|
value?: never;
|
|
1045
758
|
$unknown?: never;
|
|
1046
759
|
}
|
|
1047
|
-
|
|
1048
760
|
interface ValueMember {
|
|
1049
761
|
index?: never;
|
|
1050
762
|
key?: never;
|
|
@@ -1068,406 +780,295 @@ export declare namespace PathElement {
|
|
|
1068
780
|
}
|
|
1069
781
|
const visit: <T>(value: PathElement, visitor: Visitor<T>) => T;
|
|
1070
782
|
}
|
|
1071
|
-
|
|
1072
783
|
export interface Position {
|
|
1073
784
|
line: number | undefined;
|
|
1074
|
-
|
|
1075
785
|
column: number | undefined;
|
|
1076
|
-
|
|
1077
786
|
offset: number | undefined;
|
|
1078
787
|
}
|
|
1079
|
-
|
|
1080
788
|
export interface Span {
|
|
1081
789
|
start: Position | undefined;
|
|
1082
|
-
|
|
1083
790
|
end: Position | undefined;
|
|
1084
791
|
}
|
|
1085
|
-
|
|
1086
792
|
export interface Location {
|
|
1087
793
|
path: PathElement[] | undefined;
|
|
1088
|
-
|
|
1089
794
|
span: Span | undefined;
|
|
1090
795
|
}
|
|
1091
|
-
|
|
1092
796
|
export interface ValidatePolicyFinding {
|
|
1093
797
|
findingDetails: string | undefined;
|
|
1094
|
-
|
|
1095
798
|
findingType: ValidatePolicyFindingType | string | undefined;
|
|
1096
|
-
|
|
1097
799
|
issueCode: string | undefined;
|
|
1098
|
-
|
|
1099
800
|
learnMoreLink: string | undefined;
|
|
1100
|
-
|
|
1101
801
|
locations: Location[] | undefined;
|
|
1102
802
|
}
|
|
1103
803
|
export interface ValidatePolicyResponse {
|
|
1104
804
|
findings: ValidatePolicyFinding[] | undefined;
|
|
1105
|
-
|
|
1106
805
|
nextToken?: string;
|
|
1107
806
|
}
|
|
1108
|
-
|
|
1109
807
|
export declare const CriterionFilterSensitiveLog: (obj: Criterion) => any;
|
|
1110
|
-
|
|
1111
808
|
export declare const CreateArchiveRuleRequestFilterSensitiveLog: (
|
|
1112
809
|
obj: CreateArchiveRuleRequest
|
|
1113
810
|
) => any;
|
|
1114
|
-
|
|
1115
811
|
export declare const ValidationExceptionFieldFilterSensitiveLog: (
|
|
1116
812
|
obj: ValidationExceptionField
|
|
1117
813
|
) => any;
|
|
1118
|
-
|
|
1119
814
|
export declare const DeleteArchiveRuleRequestFilterSensitiveLog: (
|
|
1120
815
|
obj: DeleteArchiveRuleRequest
|
|
1121
816
|
) => any;
|
|
1122
|
-
|
|
1123
817
|
export declare const GetArchiveRuleRequestFilterSensitiveLog: (
|
|
1124
818
|
obj: GetArchiveRuleRequest
|
|
1125
819
|
) => any;
|
|
1126
|
-
|
|
1127
820
|
export declare const ArchiveRuleSummaryFilterSensitiveLog: (
|
|
1128
821
|
obj: ArchiveRuleSummary
|
|
1129
822
|
) => any;
|
|
1130
|
-
|
|
1131
823
|
export declare const GetArchiveRuleResponseFilterSensitiveLog: (
|
|
1132
824
|
obj: GetArchiveRuleResponse
|
|
1133
825
|
) => any;
|
|
1134
|
-
|
|
1135
826
|
export declare const ListArchiveRulesRequestFilterSensitiveLog: (
|
|
1136
827
|
obj: ListArchiveRulesRequest
|
|
1137
828
|
) => any;
|
|
1138
|
-
|
|
1139
829
|
export declare const ListArchiveRulesResponseFilterSensitiveLog: (
|
|
1140
830
|
obj: ListArchiveRulesResponse
|
|
1141
831
|
) => any;
|
|
1142
|
-
|
|
1143
832
|
export declare const UpdateArchiveRuleRequestFilterSensitiveLog: (
|
|
1144
833
|
obj: UpdateArchiveRuleRequest
|
|
1145
834
|
) => any;
|
|
1146
|
-
|
|
1147
835
|
export declare const InlineArchiveRuleFilterSensitiveLog: (
|
|
1148
836
|
obj: InlineArchiveRule
|
|
1149
837
|
) => any;
|
|
1150
|
-
|
|
1151
838
|
export declare const CreateAnalyzerRequestFilterSensitiveLog: (
|
|
1152
839
|
obj: CreateAnalyzerRequest
|
|
1153
840
|
) => any;
|
|
1154
|
-
|
|
1155
841
|
export declare const CreateAnalyzerResponseFilterSensitiveLog: (
|
|
1156
842
|
obj: CreateAnalyzerResponse
|
|
1157
843
|
) => any;
|
|
1158
|
-
|
|
1159
844
|
export declare const DeleteAnalyzerRequestFilterSensitiveLog: (
|
|
1160
845
|
obj: DeleteAnalyzerRequest
|
|
1161
846
|
) => any;
|
|
1162
|
-
|
|
1163
847
|
export declare const GetAnalyzerRequestFilterSensitiveLog: (
|
|
1164
848
|
obj: GetAnalyzerRequest
|
|
1165
849
|
) => any;
|
|
1166
|
-
|
|
1167
850
|
export declare const StatusReasonFilterSensitiveLog: (obj: StatusReason) => any;
|
|
1168
|
-
|
|
1169
851
|
export declare const AnalyzerSummaryFilterSensitiveLog: (
|
|
1170
852
|
obj: AnalyzerSummary
|
|
1171
853
|
) => any;
|
|
1172
|
-
|
|
1173
854
|
export declare const GetAnalyzerResponseFilterSensitiveLog: (
|
|
1174
855
|
obj: GetAnalyzerResponse
|
|
1175
856
|
) => any;
|
|
1176
|
-
|
|
1177
857
|
export declare const ListAnalyzersRequestFilterSensitiveLog: (
|
|
1178
858
|
obj: ListAnalyzersRequest
|
|
1179
859
|
) => any;
|
|
1180
|
-
|
|
1181
860
|
export declare const ListAnalyzersResponseFilterSensitiveLog: (
|
|
1182
861
|
obj: ListAnalyzersResponse
|
|
1183
862
|
) => any;
|
|
1184
|
-
|
|
1185
863
|
export declare const ApplyArchiveRuleRequestFilterSensitiveLog: (
|
|
1186
864
|
obj: ApplyArchiveRuleRequest
|
|
1187
865
|
) => any;
|
|
1188
|
-
|
|
1189
866
|
export declare const CancelPolicyGenerationRequestFilterSensitiveLog: (
|
|
1190
867
|
obj: CancelPolicyGenerationRequest
|
|
1191
868
|
) => any;
|
|
1192
|
-
|
|
1193
869
|
export declare const CancelPolicyGenerationResponseFilterSensitiveLog: (
|
|
1194
870
|
obj: CancelPolicyGenerationResponse
|
|
1195
871
|
) => any;
|
|
1196
|
-
|
|
1197
872
|
export declare const IamRoleConfigurationFilterSensitiveLog: (
|
|
1198
873
|
obj: IamRoleConfiguration
|
|
1199
874
|
) => any;
|
|
1200
|
-
|
|
1201
875
|
export declare const KmsGrantConstraintsFilterSensitiveLog: (
|
|
1202
876
|
obj: KmsGrantConstraints
|
|
1203
877
|
) => any;
|
|
1204
|
-
|
|
1205
878
|
export declare const KmsGrantConfigurationFilterSensitiveLog: (
|
|
1206
879
|
obj: KmsGrantConfiguration
|
|
1207
880
|
) => any;
|
|
1208
|
-
|
|
1209
881
|
export declare const KmsKeyConfigurationFilterSensitiveLog: (
|
|
1210
882
|
obj: KmsKeyConfiguration
|
|
1211
883
|
) => any;
|
|
1212
|
-
|
|
1213
884
|
export declare const InternetConfigurationFilterSensitiveLog: (
|
|
1214
885
|
obj: InternetConfiguration
|
|
1215
886
|
) => any;
|
|
1216
|
-
|
|
1217
887
|
export declare const VpcConfigurationFilterSensitiveLog: (
|
|
1218
888
|
obj: VpcConfiguration
|
|
1219
889
|
) => any;
|
|
1220
|
-
|
|
1221
890
|
export declare const NetworkOriginConfigurationFilterSensitiveLog: (
|
|
1222
891
|
obj: NetworkOriginConfiguration
|
|
1223
892
|
) => any;
|
|
1224
|
-
|
|
1225
893
|
export declare const S3PublicAccessBlockConfigurationFilterSensitiveLog: (
|
|
1226
894
|
obj: S3PublicAccessBlockConfiguration
|
|
1227
895
|
) => any;
|
|
1228
|
-
|
|
1229
896
|
export declare const S3AccessPointConfigurationFilterSensitiveLog: (
|
|
1230
897
|
obj: S3AccessPointConfiguration
|
|
1231
898
|
) => any;
|
|
1232
|
-
|
|
1233
899
|
export declare const AclGranteeFilterSensitiveLog: (obj: AclGrantee) => any;
|
|
1234
|
-
|
|
1235
900
|
export declare const S3BucketAclGrantConfigurationFilterSensitiveLog: (
|
|
1236
901
|
obj: S3BucketAclGrantConfiguration
|
|
1237
902
|
) => any;
|
|
1238
|
-
|
|
1239
903
|
export declare const S3BucketConfigurationFilterSensitiveLog: (
|
|
1240
904
|
obj: S3BucketConfiguration
|
|
1241
905
|
) => any;
|
|
1242
|
-
|
|
1243
906
|
export declare const SecretsManagerSecretConfigurationFilterSensitiveLog: (
|
|
1244
907
|
obj: SecretsManagerSecretConfiguration
|
|
1245
908
|
) => any;
|
|
1246
|
-
|
|
1247
909
|
export declare const SqsQueueConfigurationFilterSensitiveLog: (
|
|
1248
910
|
obj: SqsQueueConfiguration
|
|
1249
911
|
) => any;
|
|
1250
|
-
|
|
1251
912
|
export declare const ConfigurationFilterSensitiveLog: (
|
|
1252
913
|
obj: Configuration
|
|
1253
914
|
) => any;
|
|
1254
|
-
|
|
1255
915
|
export declare const CreateAccessPreviewRequestFilterSensitiveLog: (
|
|
1256
916
|
obj: CreateAccessPreviewRequest
|
|
1257
917
|
) => any;
|
|
1258
|
-
|
|
1259
918
|
export declare const CreateAccessPreviewResponseFilterSensitiveLog: (
|
|
1260
919
|
obj: CreateAccessPreviewResponse
|
|
1261
920
|
) => any;
|
|
1262
|
-
|
|
1263
921
|
export declare const GetAccessPreviewRequestFilterSensitiveLog: (
|
|
1264
922
|
obj: GetAccessPreviewRequest
|
|
1265
923
|
) => any;
|
|
1266
|
-
|
|
1267
924
|
export declare const AccessPreviewStatusReasonFilterSensitiveLog: (
|
|
1268
925
|
obj: AccessPreviewStatusReason
|
|
1269
926
|
) => any;
|
|
1270
|
-
|
|
1271
927
|
export declare const AccessPreviewFilterSensitiveLog: (
|
|
1272
928
|
obj: AccessPreview
|
|
1273
929
|
) => any;
|
|
1274
|
-
|
|
1275
930
|
export declare const GetAccessPreviewResponseFilterSensitiveLog: (
|
|
1276
931
|
obj: GetAccessPreviewResponse
|
|
1277
932
|
) => any;
|
|
1278
|
-
|
|
1279
933
|
export declare const GetAnalyzedResourceRequestFilterSensitiveLog: (
|
|
1280
934
|
obj: GetAnalyzedResourceRequest
|
|
1281
935
|
) => any;
|
|
1282
|
-
|
|
1283
936
|
export declare const AnalyzedResourceFilterSensitiveLog: (
|
|
1284
937
|
obj: AnalyzedResource
|
|
1285
938
|
) => any;
|
|
1286
|
-
|
|
1287
939
|
export declare const GetAnalyzedResourceResponseFilterSensitiveLog: (
|
|
1288
940
|
obj: GetAnalyzedResourceResponse
|
|
1289
941
|
) => any;
|
|
1290
|
-
|
|
1291
942
|
export declare const GetFindingRequestFilterSensitiveLog: (
|
|
1292
943
|
obj: GetFindingRequest
|
|
1293
944
|
) => any;
|
|
1294
|
-
|
|
1295
945
|
export declare const FindingSourceDetailFilterSensitiveLog: (
|
|
1296
946
|
obj: FindingSourceDetail
|
|
1297
947
|
) => any;
|
|
1298
|
-
|
|
1299
948
|
export declare const FindingSourceFilterSensitiveLog: (
|
|
1300
949
|
obj: FindingSource
|
|
1301
950
|
) => any;
|
|
1302
|
-
|
|
1303
951
|
export declare const FindingFilterSensitiveLog: (obj: Finding) => any;
|
|
1304
|
-
|
|
1305
952
|
export declare const GetFindingResponseFilterSensitiveLog: (
|
|
1306
953
|
obj: GetFindingResponse
|
|
1307
954
|
) => any;
|
|
1308
|
-
|
|
1309
955
|
export declare const GetGeneratedPolicyRequestFilterSensitiveLog: (
|
|
1310
956
|
obj: GetGeneratedPolicyRequest
|
|
1311
957
|
) => any;
|
|
1312
|
-
|
|
1313
958
|
export declare const GeneratedPolicyFilterSensitiveLog: (
|
|
1314
959
|
obj: GeneratedPolicy
|
|
1315
960
|
) => any;
|
|
1316
|
-
|
|
1317
961
|
export declare const TrailPropertiesFilterSensitiveLog: (
|
|
1318
962
|
obj: TrailProperties
|
|
1319
963
|
) => any;
|
|
1320
|
-
|
|
1321
964
|
export declare const CloudTrailPropertiesFilterSensitiveLog: (
|
|
1322
965
|
obj: CloudTrailProperties
|
|
1323
966
|
) => any;
|
|
1324
|
-
|
|
1325
967
|
export declare const GeneratedPolicyPropertiesFilterSensitiveLog: (
|
|
1326
968
|
obj: GeneratedPolicyProperties
|
|
1327
969
|
) => any;
|
|
1328
|
-
|
|
1329
970
|
export declare const GeneratedPolicyResultFilterSensitiveLog: (
|
|
1330
971
|
obj: GeneratedPolicyResult
|
|
1331
972
|
) => any;
|
|
1332
|
-
|
|
1333
973
|
export declare const JobErrorFilterSensitiveLog: (obj: JobError) => any;
|
|
1334
|
-
|
|
1335
974
|
export declare const JobDetailsFilterSensitiveLog: (obj: JobDetails) => any;
|
|
1336
|
-
|
|
1337
975
|
export declare const GetGeneratedPolicyResponseFilterSensitiveLog: (
|
|
1338
976
|
obj: GetGeneratedPolicyResponse
|
|
1339
977
|
) => any;
|
|
1340
|
-
|
|
1341
978
|
export declare const ListAccessPreviewFindingsRequestFilterSensitiveLog: (
|
|
1342
979
|
obj: ListAccessPreviewFindingsRequest
|
|
1343
980
|
) => any;
|
|
1344
|
-
|
|
1345
981
|
export declare const AccessPreviewFindingFilterSensitiveLog: (
|
|
1346
982
|
obj: AccessPreviewFinding
|
|
1347
983
|
) => any;
|
|
1348
|
-
|
|
1349
984
|
export declare const ListAccessPreviewFindingsResponseFilterSensitiveLog: (
|
|
1350
985
|
obj: ListAccessPreviewFindingsResponse
|
|
1351
986
|
) => any;
|
|
1352
|
-
|
|
1353
987
|
export declare const ListAccessPreviewsRequestFilterSensitiveLog: (
|
|
1354
988
|
obj: ListAccessPreviewsRequest
|
|
1355
989
|
) => any;
|
|
1356
|
-
|
|
1357
990
|
export declare const AccessPreviewSummaryFilterSensitiveLog: (
|
|
1358
991
|
obj: AccessPreviewSummary
|
|
1359
992
|
) => any;
|
|
1360
|
-
|
|
1361
993
|
export declare const ListAccessPreviewsResponseFilterSensitiveLog: (
|
|
1362
994
|
obj: ListAccessPreviewsResponse
|
|
1363
995
|
) => any;
|
|
1364
|
-
|
|
1365
996
|
export declare const ListAnalyzedResourcesRequestFilterSensitiveLog: (
|
|
1366
997
|
obj: ListAnalyzedResourcesRequest
|
|
1367
998
|
) => any;
|
|
1368
|
-
|
|
1369
999
|
export declare const AnalyzedResourceSummaryFilterSensitiveLog: (
|
|
1370
1000
|
obj: AnalyzedResourceSummary
|
|
1371
1001
|
) => any;
|
|
1372
|
-
|
|
1373
1002
|
export declare const ListAnalyzedResourcesResponseFilterSensitiveLog: (
|
|
1374
1003
|
obj: ListAnalyzedResourcesResponse
|
|
1375
1004
|
) => any;
|
|
1376
|
-
|
|
1377
1005
|
export declare const SortCriteriaFilterSensitiveLog: (obj: SortCriteria) => any;
|
|
1378
|
-
|
|
1379
1006
|
export declare const ListFindingsRequestFilterSensitiveLog: (
|
|
1380
1007
|
obj: ListFindingsRequest
|
|
1381
1008
|
) => any;
|
|
1382
|
-
|
|
1383
1009
|
export declare const FindingSummaryFilterSensitiveLog: (
|
|
1384
1010
|
obj: FindingSummary
|
|
1385
1011
|
) => any;
|
|
1386
|
-
|
|
1387
1012
|
export declare const ListFindingsResponseFilterSensitiveLog: (
|
|
1388
1013
|
obj: ListFindingsResponse
|
|
1389
1014
|
) => any;
|
|
1390
|
-
|
|
1391
1015
|
export declare const ListPolicyGenerationsRequestFilterSensitiveLog: (
|
|
1392
1016
|
obj: ListPolicyGenerationsRequest
|
|
1393
1017
|
) => any;
|
|
1394
|
-
|
|
1395
1018
|
export declare const PolicyGenerationFilterSensitiveLog: (
|
|
1396
1019
|
obj: PolicyGeneration
|
|
1397
1020
|
) => any;
|
|
1398
|
-
|
|
1399
1021
|
export declare const ListPolicyGenerationsResponseFilterSensitiveLog: (
|
|
1400
1022
|
obj: ListPolicyGenerationsResponse
|
|
1401
1023
|
) => any;
|
|
1402
|
-
|
|
1403
1024
|
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
1404
1025
|
obj: ListTagsForResourceRequest
|
|
1405
1026
|
) => any;
|
|
1406
|
-
|
|
1407
1027
|
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
1408
1028
|
obj: ListTagsForResourceResponse
|
|
1409
1029
|
) => any;
|
|
1410
|
-
|
|
1411
1030
|
export declare const TrailFilterSensitiveLog: (obj: Trail) => any;
|
|
1412
|
-
|
|
1413
1031
|
export declare const CloudTrailDetailsFilterSensitiveLog: (
|
|
1414
1032
|
obj: CloudTrailDetails
|
|
1415
1033
|
) => any;
|
|
1416
|
-
|
|
1417
1034
|
export declare const PolicyGenerationDetailsFilterSensitiveLog: (
|
|
1418
1035
|
obj: PolicyGenerationDetails
|
|
1419
1036
|
) => any;
|
|
1420
|
-
|
|
1421
1037
|
export declare const StartPolicyGenerationRequestFilterSensitiveLog: (
|
|
1422
1038
|
obj: StartPolicyGenerationRequest
|
|
1423
1039
|
) => any;
|
|
1424
|
-
|
|
1425
1040
|
export declare const StartPolicyGenerationResponseFilterSensitiveLog: (
|
|
1426
1041
|
obj: StartPolicyGenerationResponse
|
|
1427
1042
|
) => any;
|
|
1428
|
-
|
|
1429
1043
|
export declare const StartResourceScanRequestFilterSensitiveLog: (
|
|
1430
1044
|
obj: StartResourceScanRequest
|
|
1431
1045
|
) => any;
|
|
1432
|
-
|
|
1433
1046
|
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
1434
1047
|
obj: TagResourceRequest
|
|
1435
1048
|
) => any;
|
|
1436
|
-
|
|
1437
1049
|
export declare const TagResourceResponseFilterSensitiveLog: (
|
|
1438
1050
|
obj: TagResourceResponse
|
|
1439
1051
|
) => any;
|
|
1440
|
-
|
|
1441
1052
|
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
1442
1053
|
obj: UntagResourceRequest
|
|
1443
1054
|
) => any;
|
|
1444
|
-
|
|
1445
1055
|
export declare const UntagResourceResponseFilterSensitiveLog: (
|
|
1446
1056
|
obj: UntagResourceResponse
|
|
1447
1057
|
) => any;
|
|
1448
|
-
|
|
1449
1058
|
export declare const UpdateFindingsRequestFilterSensitiveLog: (
|
|
1450
1059
|
obj: UpdateFindingsRequest
|
|
1451
1060
|
) => any;
|
|
1452
|
-
|
|
1453
1061
|
export declare const ValidatePolicyRequestFilterSensitiveLog: (
|
|
1454
1062
|
obj: ValidatePolicyRequest
|
|
1455
1063
|
) => any;
|
|
1456
|
-
|
|
1457
1064
|
export declare const SubstringFilterSensitiveLog: (obj: Substring) => any;
|
|
1458
|
-
|
|
1459
1065
|
export declare const PathElementFilterSensitiveLog: (obj: PathElement) => any;
|
|
1460
|
-
|
|
1461
1066
|
export declare const PositionFilterSensitiveLog: (obj: Position) => any;
|
|
1462
|
-
|
|
1463
1067
|
export declare const SpanFilterSensitiveLog: (obj: Span) => any;
|
|
1464
|
-
|
|
1465
1068
|
export declare const LocationFilterSensitiveLog: (obj: Location) => any;
|
|
1466
|
-
|
|
1467
1069
|
export declare const ValidatePolicyFindingFilterSensitiveLog: (
|
|
1468
1070
|
obj: ValidatePolicyFinding
|
|
1469
1071
|
) => any;
|
|
1470
|
-
|
|
1471
1072
|
export declare const ValidatePolicyResponseFilterSensitiveLog: (
|
|
1472
1073
|
obj: ValidatePolicyResponse
|
|
1473
1074
|
) => any;
|