@aws-sdk/client-accessanalyzer 3.128.0 → 3.137.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 +30 -0
- package/dist-cjs/commands/ApplyArchiveRuleCommand.js +1 -1
- package/dist-cjs/commands/CancelPolicyGenerationCommand.js +2 -2
- package/dist-cjs/commands/CreateAccessPreviewCommand.js +2 -2
- package/dist-cjs/commands/CreateAnalyzerCommand.js +2 -2
- package/dist-cjs/commands/CreateArchiveRuleCommand.js +1 -1
- package/dist-cjs/commands/DeleteAnalyzerCommand.js +1 -1
- package/dist-cjs/commands/DeleteArchiveRuleCommand.js +1 -1
- package/dist-cjs/commands/GetAccessPreviewCommand.js +2 -2
- package/dist-cjs/commands/GetAnalyzedResourceCommand.js +2 -2
- package/dist-cjs/commands/GetAnalyzerCommand.js +2 -2
- package/dist-cjs/commands/GetArchiveRuleCommand.js +2 -2
- package/dist-cjs/commands/GetFindingCommand.js +2 -2
- package/dist-cjs/commands/GetGeneratedPolicyCommand.js +2 -2
- package/dist-cjs/commands/ListAccessPreviewFindingsCommand.js +2 -2
- package/dist-cjs/commands/ListAccessPreviewsCommand.js +2 -2
- package/dist-cjs/commands/ListAnalyzedResourcesCommand.js +2 -2
- package/dist-cjs/commands/ListAnalyzersCommand.js +2 -2
- package/dist-cjs/commands/ListArchiveRulesCommand.js +2 -2
- package/dist-cjs/commands/ListFindingsCommand.js +2 -2
- package/dist-cjs/commands/ListPolicyGenerationsCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/StartPolicyGenerationCommand.js +2 -2
- package/dist-cjs/commands/StartResourceScanCommand.js +1 -1
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateArchiveRuleCommand.js +1 -1
- package/dist-cjs/commands/UpdateFindingsCommand.js +1 -1
- package/dist-cjs/commands/ValidatePolicyCommand.js +2 -2
- package/dist-cjs/models/models_0.js +451 -635
- package/dist-cjs/protocols/Aws_restJson1.js +3 -0
- package/dist-es/commands/ApplyArchiveRuleCommand.js +2 -2
- package/dist-es/commands/CancelPolicyGenerationCommand.js +3 -3
- package/dist-es/commands/CreateAccessPreviewCommand.js +3 -3
- package/dist-es/commands/CreateAnalyzerCommand.js +3 -3
- package/dist-es/commands/CreateArchiveRuleCommand.js +2 -2
- package/dist-es/commands/DeleteAnalyzerCommand.js +2 -2
- package/dist-es/commands/DeleteArchiveRuleCommand.js +2 -2
- package/dist-es/commands/GetAccessPreviewCommand.js +3 -3
- package/dist-es/commands/GetAnalyzedResourceCommand.js +3 -3
- package/dist-es/commands/GetAnalyzerCommand.js +3 -3
- package/dist-es/commands/GetArchiveRuleCommand.js +3 -3
- package/dist-es/commands/GetFindingCommand.js +3 -3
- package/dist-es/commands/GetGeneratedPolicyCommand.js +3 -3
- package/dist-es/commands/ListAccessPreviewFindingsCommand.js +3 -3
- package/dist-es/commands/ListAccessPreviewsCommand.js +3 -3
- package/dist-es/commands/ListAnalyzedResourcesCommand.js +3 -3
- package/dist-es/commands/ListAnalyzersCommand.js +3 -3
- package/dist-es/commands/ListArchiveRulesCommand.js +3 -3
- package/dist-es/commands/ListFindingsCommand.js +3 -3
- package/dist-es/commands/ListPolicyGenerationsCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/StartPolicyGenerationCommand.js +3 -3
- package/dist-es/commands/StartResourceScanCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UpdateArchiveRuleCommand.js +2 -2
- package/dist-es/commands/UpdateFindingsCommand.js +2 -2
- package/dist-es/commands/ValidatePolicyCommand.js +3 -3
- package/dist-es/models/models_0.js +160 -442
- package/dist-es/protocols/Aws_restJson1.js +3 -0
- package/dist-types/models/models_0.d.ts +392 -580
- package/dist-types/ts3.4/models/models_0.d.ts +196 -384
- package/package.json +9 -9
|
@@ -51,12 +51,6 @@ export interface Criterion {
|
|
|
51
51
|
*/
|
|
52
52
|
exists?: boolean;
|
|
53
53
|
}
|
|
54
|
-
export declare namespace Criterion {
|
|
55
|
-
/**
|
|
56
|
-
* @internal
|
|
57
|
-
*/
|
|
58
|
-
const filterSensitiveLog: (obj: Criterion) => any;
|
|
59
|
-
}
|
|
60
54
|
/**
|
|
61
55
|
* <p>Creates an archive rule.</p>
|
|
62
56
|
*/
|
|
@@ -78,12 +72,6 @@ export interface CreateArchiveRuleRequest {
|
|
|
78
72
|
*/
|
|
79
73
|
clientToken?: string;
|
|
80
74
|
}
|
|
81
|
-
export declare namespace CreateArchiveRuleRequest {
|
|
82
|
-
/**
|
|
83
|
-
* @internal
|
|
84
|
-
*/
|
|
85
|
-
const filterSensitiveLog: (obj: CreateArchiveRuleRequest) => any;
|
|
86
|
-
}
|
|
87
75
|
/**
|
|
88
76
|
* <p>Internal server error.</p>
|
|
89
77
|
*/
|
|
@@ -169,12 +157,6 @@ export interface ValidationExceptionField {
|
|
|
169
157
|
*/
|
|
170
158
|
message: string | undefined;
|
|
171
159
|
}
|
|
172
|
-
export declare namespace ValidationExceptionField {
|
|
173
|
-
/**
|
|
174
|
-
* @internal
|
|
175
|
-
*/
|
|
176
|
-
const filterSensitiveLog: (obj: ValidationExceptionField) => any;
|
|
177
|
-
}
|
|
178
160
|
export declare enum ValidationExceptionReason {
|
|
179
161
|
CANNOT_PARSE = "cannotParse",
|
|
180
162
|
FIELD_VALIDATION_FAILED = "fieldValidationFailed",
|
|
@@ -217,12 +199,6 @@ export interface DeleteArchiveRuleRequest {
|
|
|
217
199
|
*/
|
|
218
200
|
clientToken?: string;
|
|
219
201
|
}
|
|
220
|
-
export declare namespace DeleteArchiveRuleRequest {
|
|
221
|
-
/**
|
|
222
|
-
* @internal
|
|
223
|
-
*/
|
|
224
|
-
const filterSensitiveLog: (obj: DeleteArchiveRuleRequest) => any;
|
|
225
|
-
}
|
|
226
202
|
/**
|
|
227
203
|
* <p>Retrieves an archive rule.</p>
|
|
228
204
|
*/
|
|
@@ -236,12 +212,6 @@ export interface GetArchiveRuleRequest {
|
|
|
236
212
|
*/
|
|
237
213
|
ruleName: string | undefined;
|
|
238
214
|
}
|
|
239
|
-
export declare namespace GetArchiveRuleRequest {
|
|
240
|
-
/**
|
|
241
|
-
* @internal
|
|
242
|
-
*/
|
|
243
|
-
const filterSensitiveLog: (obj: GetArchiveRuleRequest) => any;
|
|
244
|
-
}
|
|
245
215
|
/**
|
|
246
216
|
* <p>Contains information about an archive rule.</p>
|
|
247
217
|
*/
|
|
@@ -263,12 +233,6 @@ export interface ArchiveRuleSummary {
|
|
|
263
233
|
*/
|
|
264
234
|
updatedAt: Date | undefined;
|
|
265
235
|
}
|
|
266
|
-
export declare namespace ArchiveRuleSummary {
|
|
267
|
-
/**
|
|
268
|
-
* @internal
|
|
269
|
-
*/
|
|
270
|
-
const filterSensitiveLog: (obj: ArchiveRuleSummary) => any;
|
|
271
|
-
}
|
|
272
236
|
/**
|
|
273
237
|
* <p>The response to the request.</p>
|
|
274
238
|
*/
|
|
@@ -278,12 +242,6 @@ export interface GetArchiveRuleResponse {
|
|
|
278
242
|
*/
|
|
279
243
|
archiveRule: ArchiveRuleSummary | undefined;
|
|
280
244
|
}
|
|
281
|
-
export declare namespace GetArchiveRuleResponse {
|
|
282
|
-
/**
|
|
283
|
-
* @internal
|
|
284
|
-
*/
|
|
285
|
-
const filterSensitiveLog: (obj: GetArchiveRuleResponse) => any;
|
|
286
|
-
}
|
|
287
245
|
/**
|
|
288
246
|
* <p>Retrieves a list of archive rules created for the specified analyzer.</p>
|
|
289
247
|
*/
|
|
@@ -301,12 +259,6 @@ export interface ListArchiveRulesRequest {
|
|
|
301
259
|
*/
|
|
302
260
|
maxResults?: number;
|
|
303
261
|
}
|
|
304
|
-
export declare namespace ListArchiveRulesRequest {
|
|
305
|
-
/**
|
|
306
|
-
* @internal
|
|
307
|
-
*/
|
|
308
|
-
const filterSensitiveLog: (obj: ListArchiveRulesRequest) => any;
|
|
309
|
-
}
|
|
310
262
|
/**
|
|
311
263
|
* <p>The response to the request.</p>
|
|
312
264
|
*/
|
|
@@ -320,12 +272,6 @@ export interface ListArchiveRulesResponse {
|
|
|
320
272
|
*/
|
|
321
273
|
nextToken?: string;
|
|
322
274
|
}
|
|
323
|
-
export declare namespace ListArchiveRulesResponse {
|
|
324
|
-
/**
|
|
325
|
-
* @internal
|
|
326
|
-
*/
|
|
327
|
-
const filterSensitiveLog: (obj: ListArchiveRulesResponse) => any;
|
|
328
|
-
}
|
|
329
275
|
/**
|
|
330
276
|
* <p>Updates the specified archive rule.</p>
|
|
331
277
|
*/
|
|
@@ -348,12 +294,6 @@ export interface UpdateArchiveRuleRequest {
|
|
|
348
294
|
*/
|
|
349
295
|
clientToken?: string;
|
|
350
296
|
}
|
|
351
|
-
export declare namespace UpdateArchiveRuleRequest {
|
|
352
|
-
/**
|
|
353
|
-
* @internal
|
|
354
|
-
*/
|
|
355
|
-
const filterSensitiveLog: (obj: UpdateArchiveRuleRequest) => any;
|
|
356
|
-
}
|
|
357
297
|
/**
|
|
358
298
|
* <p>An criterion statement in an archive rule. Each archive rule may have multiple
|
|
359
299
|
* criteria.</p>
|
|
@@ -368,12 +308,6 @@ export interface InlineArchiveRule {
|
|
|
368
308
|
*/
|
|
369
309
|
filter: Record<string, Criterion> | undefined;
|
|
370
310
|
}
|
|
371
|
-
export declare namespace InlineArchiveRule {
|
|
372
|
-
/**
|
|
373
|
-
* @internal
|
|
374
|
-
*/
|
|
375
|
-
const filterSensitiveLog: (obj: InlineArchiveRule) => any;
|
|
376
|
-
}
|
|
377
311
|
export declare type Type = "ACCOUNT" | "ORGANIZATION";
|
|
378
312
|
/**
|
|
379
313
|
* <p>Creates an analyzer.</p>
|
|
@@ -403,12 +337,6 @@ export interface CreateAnalyzerRequest {
|
|
|
403
337
|
*/
|
|
404
338
|
clientToken?: string;
|
|
405
339
|
}
|
|
406
|
-
export declare namespace CreateAnalyzerRequest {
|
|
407
|
-
/**
|
|
408
|
-
* @internal
|
|
409
|
-
*/
|
|
410
|
-
const filterSensitiveLog: (obj: CreateAnalyzerRequest) => any;
|
|
411
|
-
}
|
|
412
340
|
/**
|
|
413
341
|
* <p>The response to the request to create an analyzer.</p>
|
|
414
342
|
*/
|
|
@@ -418,12 +346,6 @@ export interface CreateAnalyzerResponse {
|
|
|
418
346
|
*/
|
|
419
347
|
arn?: string;
|
|
420
348
|
}
|
|
421
|
-
export declare namespace CreateAnalyzerResponse {
|
|
422
|
-
/**
|
|
423
|
-
* @internal
|
|
424
|
-
*/
|
|
425
|
-
const filterSensitiveLog: (obj: CreateAnalyzerResponse) => any;
|
|
426
|
-
}
|
|
427
349
|
/**
|
|
428
350
|
* <p>Deletes an analyzer.</p>
|
|
429
351
|
*/
|
|
@@ -437,12 +359,6 @@ export interface DeleteAnalyzerRequest {
|
|
|
437
359
|
*/
|
|
438
360
|
clientToken?: string;
|
|
439
361
|
}
|
|
440
|
-
export declare namespace DeleteAnalyzerRequest {
|
|
441
|
-
/**
|
|
442
|
-
* @internal
|
|
443
|
-
*/
|
|
444
|
-
const filterSensitiveLog: (obj: DeleteAnalyzerRequest) => any;
|
|
445
|
-
}
|
|
446
362
|
/**
|
|
447
363
|
* <p>Retrieves an analyzer.</p>
|
|
448
364
|
*/
|
|
@@ -452,12 +368,6 @@ export interface GetAnalyzerRequest {
|
|
|
452
368
|
*/
|
|
453
369
|
analyzerName: string | undefined;
|
|
454
370
|
}
|
|
455
|
-
export declare namespace GetAnalyzerRequest {
|
|
456
|
-
/**
|
|
457
|
-
* @internal
|
|
458
|
-
*/
|
|
459
|
-
const filterSensitiveLog: (obj: GetAnalyzerRequest) => any;
|
|
460
|
-
}
|
|
461
371
|
export declare type AnalyzerStatus = "ACTIVE" | "CREATING" | "DISABLED" | "FAILED";
|
|
462
372
|
export declare type ReasonCode = "AWS_SERVICE_ACCESS_DISABLED" | "DELEGATED_ADMINISTRATOR_DEREGISTERED" | "ORGANIZATION_DELETED" | "SERVICE_LINKED_ROLE_CREATION_FAILED";
|
|
463
373
|
/**
|
|
@@ -472,12 +382,6 @@ export interface StatusReason {
|
|
|
472
382
|
*/
|
|
473
383
|
code: ReasonCode | string | undefined;
|
|
474
384
|
}
|
|
475
|
-
export declare namespace StatusReason {
|
|
476
|
-
/**
|
|
477
|
-
* @internal
|
|
478
|
-
*/
|
|
479
|
-
const filterSensitiveLog: (obj: StatusReason) => any;
|
|
480
|
-
}
|
|
481
385
|
/**
|
|
482
386
|
* <p>Contains information about the analyzer.</p>
|
|
483
387
|
*/
|
|
@@ -529,12 +433,6 @@ export interface AnalyzerSummary {
|
|
|
529
433
|
*/
|
|
530
434
|
statusReason?: StatusReason;
|
|
531
435
|
}
|
|
532
|
-
export declare namespace AnalyzerSummary {
|
|
533
|
-
/**
|
|
534
|
-
* @internal
|
|
535
|
-
*/
|
|
536
|
-
const filterSensitiveLog: (obj: AnalyzerSummary) => any;
|
|
537
|
-
}
|
|
538
436
|
/**
|
|
539
437
|
* <p>The response to the request.</p>
|
|
540
438
|
*/
|
|
@@ -545,12 +443,6 @@ export interface GetAnalyzerResponse {
|
|
|
545
443
|
*/
|
|
546
444
|
analyzer: AnalyzerSummary | undefined;
|
|
547
445
|
}
|
|
548
|
-
export declare namespace GetAnalyzerResponse {
|
|
549
|
-
/**
|
|
550
|
-
* @internal
|
|
551
|
-
*/
|
|
552
|
-
const filterSensitiveLog: (obj: GetAnalyzerResponse) => any;
|
|
553
|
-
}
|
|
554
446
|
/**
|
|
555
447
|
* <p>Retrieves a list of analyzers.</p>
|
|
556
448
|
*/
|
|
@@ -568,12 +460,6 @@ export interface ListAnalyzersRequest {
|
|
|
568
460
|
*/
|
|
569
461
|
type?: Type | string;
|
|
570
462
|
}
|
|
571
|
-
export declare namespace ListAnalyzersRequest {
|
|
572
|
-
/**
|
|
573
|
-
* @internal
|
|
574
|
-
*/
|
|
575
|
-
const filterSensitiveLog: (obj: ListAnalyzersRequest) => any;
|
|
576
|
-
}
|
|
577
463
|
/**
|
|
578
464
|
* <p>The response to the request.</p>
|
|
579
465
|
*/
|
|
@@ -587,12 +473,6 @@ export interface ListAnalyzersResponse {
|
|
|
587
473
|
*/
|
|
588
474
|
nextToken?: string;
|
|
589
475
|
}
|
|
590
|
-
export declare namespace ListAnalyzersResponse {
|
|
591
|
-
/**
|
|
592
|
-
* @internal
|
|
593
|
-
*/
|
|
594
|
-
const filterSensitiveLog: (obj: ListAnalyzersResponse) => any;
|
|
595
|
-
}
|
|
596
476
|
/**
|
|
597
477
|
* <p>Retroactively applies an archive rule.</p>
|
|
598
478
|
*/
|
|
@@ -610,12 +490,6 @@ export interface ApplyArchiveRuleRequest {
|
|
|
610
490
|
*/
|
|
611
491
|
clientToken?: string;
|
|
612
492
|
}
|
|
613
|
-
export declare namespace ApplyArchiveRuleRequest {
|
|
614
|
-
/**
|
|
615
|
-
* @internal
|
|
616
|
-
*/
|
|
617
|
-
const filterSensitiveLog: (obj: ApplyArchiveRuleRequest) => any;
|
|
618
|
-
}
|
|
619
493
|
export interface CancelPolicyGenerationRequest {
|
|
620
494
|
/**
|
|
621
495
|
* <p>The <code>JobId</code> that is returned by the <code>StartPolicyGeneration</code>
|
|
@@ -625,20 +499,8 @@ export interface CancelPolicyGenerationRequest {
|
|
|
625
499
|
*/
|
|
626
500
|
jobId: string | undefined;
|
|
627
501
|
}
|
|
628
|
-
export declare namespace CancelPolicyGenerationRequest {
|
|
629
|
-
/**
|
|
630
|
-
* @internal
|
|
631
|
-
*/
|
|
632
|
-
const filterSensitiveLog: (obj: CancelPolicyGenerationRequest) => any;
|
|
633
|
-
}
|
|
634
502
|
export interface CancelPolicyGenerationResponse {
|
|
635
503
|
}
|
|
636
|
-
export declare namespace CancelPolicyGenerationResponse {
|
|
637
|
-
/**
|
|
638
|
-
* @internal
|
|
639
|
-
*/
|
|
640
|
-
const filterSensitiveLog: (obj: CancelPolicyGenerationResponse) => any;
|
|
641
|
-
}
|
|
642
504
|
/**
|
|
643
505
|
* <p>The proposed access control configuration for an IAM role. You can propose a
|
|
644
506
|
* configuration for a new IAM role or an existing IAM role that you own by specifying the
|
|
@@ -655,12 +517,6 @@ export interface IamRoleConfiguration {
|
|
|
655
517
|
*/
|
|
656
518
|
trustPolicy?: string;
|
|
657
519
|
}
|
|
658
|
-
export declare namespace IamRoleConfiguration {
|
|
659
|
-
/**
|
|
660
|
-
* @internal
|
|
661
|
-
*/
|
|
662
|
-
const filterSensitiveLog: (obj: IamRoleConfiguration) => any;
|
|
663
|
-
}
|
|
664
520
|
/**
|
|
665
521
|
* <p>Use this structure to propose allowing <a href="https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#cryptographic-operations">cryptographic
|
|
666
522
|
* operations</a> in the grant only when the operation request includes the specified
|
|
@@ -684,12 +540,6 @@ export interface KmsGrantConstraints {
|
|
|
684
540
|
*/
|
|
685
541
|
encryptionContextSubset?: Record<string, string>;
|
|
686
542
|
}
|
|
687
|
-
export declare namespace KmsGrantConstraints {
|
|
688
|
-
/**
|
|
689
|
-
* @internal
|
|
690
|
-
*/
|
|
691
|
-
const filterSensitiveLog: (obj: KmsGrantConstraints) => any;
|
|
692
|
-
}
|
|
693
543
|
export declare enum KmsGrantOperation {
|
|
694
544
|
CREATE_GRANT = "CreateGrant",
|
|
695
545
|
DECRYPT = "Decrypt",
|
|
@@ -736,12 +586,6 @@ export interface KmsGrantConfiguration {
|
|
|
736
586
|
*/
|
|
737
587
|
issuingAccount: string | undefined;
|
|
738
588
|
}
|
|
739
|
-
export declare namespace KmsGrantConfiguration {
|
|
740
|
-
/**
|
|
741
|
-
* @internal
|
|
742
|
-
*/
|
|
743
|
-
const filterSensitiveLog: (obj: KmsGrantConfiguration) => any;
|
|
744
|
-
}
|
|
745
589
|
/**
|
|
746
590
|
* <p>Proposed access control configuration for a KMS key. You can propose a configuration
|
|
747
591
|
* for a new KMS key or an existing KMS key that you own by specifying the key policy and
|
|
@@ -769,24 +613,12 @@ export interface KmsKeyConfiguration {
|
|
|
769
613
|
*/
|
|
770
614
|
grants?: KmsGrantConfiguration[];
|
|
771
615
|
}
|
|
772
|
-
export declare namespace KmsKeyConfiguration {
|
|
773
|
-
/**
|
|
774
|
-
* @internal
|
|
775
|
-
*/
|
|
776
|
-
const filterSensitiveLog: (obj: KmsKeyConfiguration) => any;
|
|
777
|
-
}
|
|
778
616
|
/**
|
|
779
617
|
* <p>This configuration sets the network origin for the Amazon S3 access point or multi-region
|
|
780
618
|
* access point to <code>Internet</code>.</p>
|
|
781
619
|
*/
|
|
782
620
|
export interface InternetConfiguration {
|
|
783
621
|
}
|
|
784
|
-
export declare namespace InternetConfiguration {
|
|
785
|
-
/**
|
|
786
|
-
* @internal
|
|
787
|
-
*/
|
|
788
|
-
const filterSensitiveLog: (obj: InternetConfiguration) => any;
|
|
789
|
-
}
|
|
790
622
|
/**
|
|
791
623
|
* <p>The proposed virtual private cloud (VPC) configuration for the Amazon S3 access point. VPC
|
|
792
624
|
* configuration does not apply to multi-region access points. For more information, see
|
|
@@ -799,12 +631,6 @@ export interface VpcConfiguration {
|
|
|
799
631
|
*/
|
|
800
632
|
vpcId: string | undefined;
|
|
801
633
|
}
|
|
802
|
-
export declare namespace VpcConfiguration {
|
|
803
|
-
/**
|
|
804
|
-
* @internal
|
|
805
|
-
*/
|
|
806
|
-
const filterSensitiveLog: (obj: VpcConfiguration) => any;
|
|
807
|
-
}
|
|
808
634
|
/**
|
|
809
635
|
* <p>The proposed <code>InternetConfiguration</code> or <code>VpcConfiguration</code> to
|
|
810
636
|
* apply to the Amazon S3 access point. <code>VpcConfiguration</code> does not apply to
|
|
@@ -846,10 +672,6 @@ export declare namespace NetworkOriginConfiguration {
|
|
|
846
672
|
_: (name: string, value: any) => T;
|
|
847
673
|
}
|
|
848
674
|
const visit: <T>(value: NetworkOriginConfiguration, visitor: Visitor<T>) => T;
|
|
849
|
-
/**
|
|
850
|
-
* @internal
|
|
851
|
-
*/
|
|
852
|
-
const filterSensitiveLog: (obj: NetworkOriginConfiguration) => any;
|
|
853
675
|
}
|
|
854
676
|
/**
|
|
855
677
|
* <p>The <code>PublicAccessBlock</code> configuration to apply to this Amazon S3 bucket. If the
|
|
@@ -871,12 +693,6 @@ export interface S3PublicAccessBlockConfiguration {
|
|
|
871
693
|
*/
|
|
872
694
|
restrictPublicBuckets: boolean | undefined;
|
|
873
695
|
}
|
|
874
|
-
export declare namespace S3PublicAccessBlockConfiguration {
|
|
875
|
-
/**
|
|
876
|
-
* @internal
|
|
877
|
-
*/
|
|
878
|
-
const filterSensitiveLog: (obj: S3PublicAccessBlockConfiguration) => any;
|
|
879
|
-
}
|
|
880
696
|
/**
|
|
881
697
|
* <p>The configuration for an Amazon S3 access point or multi-region access point for the bucket.
|
|
882
698
|
* You can propose up to 10 access points or multi-region access points per bucket. If the
|
|
@@ -907,12 +723,6 @@ export interface S3AccessPointConfiguration {
|
|
|
907
723
|
*/
|
|
908
724
|
networkOrigin?: NetworkOriginConfiguration;
|
|
909
725
|
}
|
|
910
|
-
export declare namespace S3AccessPointConfiguration {
|
|
911
|
-
/**
|
|
912
|
-
* @internal
|
|
913
|
-
*/
|
|
914
|
-
const filterSensitiveLog: (obj: S3AccessPointConfiguration) => any;
|
|
915
|
-
}
|
|
916
726
|
/**
|
|
917
727
|
* <p>You specify each grantee as a type-value pair using one of these types. You can specify
|
|
918
728
|
* only one type of grantee. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketAcl.html">PutBucketAcl</a>.</p>
|
|
@@ -946,10 +756,6 @@ export declare namespace AclGrantee {
|
|
|
946
756
|
_: (name: string, value: any) => T;
|
|
947
757
|
}
|
|
948
758
|
const visit: <T>(value: AclGrantee, visitor: Visitor<T>) => T;
|
|
949
|
-
/**
|
|
950
|
-
* @internal
|
|
951
|
-
*/
|
|
952
|
-
const filterSensitiveLog: (obj: AclGrantee) => any;
|
|
953
759
|
}
|
|
954
760
|
export declare enum AclPermission {
|
|
955
761
|
FULL_CONTROL = "FULL_CONTROL",
|
|
@@ -973,12 +779,6 @@ export interface S3BucketAclGrantConfiguration {
|
|
|
973
779
|
*/
|
|
974
780
|
grantee: AclGrantee | undefined;
|
|
975
781
|
}
|
|
976
|
-
export declare namespace S3BucketAclGrantConfiguration {
|
|
977
|
-
/**
|
|
978
|
-
* @internal
|
|
979
|
-
*/
|
|
980
|
-
const filterSensitiveLog: (obj: S3BucketAclGrantConfiguration) => any;
|
|
981
|
-
}
|
|
982
782
|
/**
|
|
983
783
|
* <p>Proposed access control configuration for an Amazon S3 bucket. You can propose a
|
|
984
784
|
* configuration for a new Amazon S3 bucket or an existing Amazon S3 bucket that you own by specifying
|
|
@@ -1013,12 +813,6 @@ export interface S3BucketConfiguration {
|
|
|
1013
813
|
*/
|
|
1014
814
|
accessPoints?: Record<string, S3AccessPointConfiguration>;
|
|
1015
815
|
}
|
|
1016
|
-
export declare namespace S3BucketConfiguration {
|
|
1017
|
-
/**
|
|
1018
|
-
* @internal
|
|
1019
|
-
*/
|
|
1020
|
-
const filterSensitiveLog: (obj: S3BucketConfiguration) => any;
|
|
1021
|
-
}
|
|
1022
816
|
/**
|
|
1023
817
|
* <p>The configuration for a Secrets Manager secret. For more information, see <a href="https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_CreateSecret.html">CreateSecret</a>.</p>
|
|
1024
818
|
* <p>You can propose a configuration for a new secret or an existing secret that you own by
|
|
@@ -1043,12 +837,6 @@ export interface SecretsManagerSecretConfiguration {
|
|
|
1043
837
|
*/
|
|
1044
838
|
secretPolicy?: string;
|
|
1045
839
|
}
|
|
1046
|
-
export declare namespace SecretsManagerSecretConfiguration {
|
|
1047
|
-
/**
|
|
1048
|
-
* @internal
|
|
1049
|
-
*/
|
|
1050
|
-
const filterSensitiveLog: (obj: SecretsManagerSecretConfiguration) => any;
|
|
1051
|
-
}
|
|
1052
840
|
/**
|
|
1053
841
|
* <p>The proposed access control configuration for an Amazon SQS queue. You can propose a
|
|
1054
842
|
* configuration for a new Amazon SQS queue or an existing Amazon SQS queue that you own by specifying
|
|
@@ -1066,12 +854,6 @@ export interface SqsQueueConfiguration {
|
|
|
1066
854
|
*/
|
|
1067
855
|
queuePolicy?: string;
|
|
1068
856
|
}
|
|
1069
|
-
export declare namespace SqsQueueConfiguration {
|
|
1070
|
-
/**
|
|
1071
|
-
* @internal
|
|
1072
|
-
*/
|
|
1073
|
-
const filterSensitiveLog: (obj: SqsQueueConfiguration) => any;
|
|
1074
|
-
}
|
|
1075
857
|
/**
|
|
1076
858
|
* <p>Access control configuration structures for your resource. You specify the configuration
|
|
1077
859
|
* as a type-value pair. You can specify only one type of access control configuration.</p>
|
|
@@ -1150,10 +932,6 @@ export declare namespace Configuration {
|
|
|
1150
932
|
_: (name: string, value: any) => T;
|
|
1151
933
|
}
|
|
1152
934
|
const visit: <T>(value: Configuration, visitor: Visitor<T>) => T;
|
|
1153
|
-
/**
|
|
1154
|
-
* @internal
|
|
1155
|
-
*/
|
|
1156
|
-
const filterSensitiveLog: (obj: Configuration) => any;
|
|
1157
935
|
}
|
|
1158
936
|
export interface CreateAccessPreviewRequest {
|
|
1159
937
|
/**
|
|
@@ -1175,24 +953,12 @@ export interface CreateAccessPreviewRequest {
|
|
|
1175
953
|
*/
|
|
1176
954
|
clientToken?: string;
|
|
1177
955
|
}
|
|
1178
|
-
export declare namespace CreateAccessPreviewRequest {
|
|
1179
|
-
/**
|
|
1180
|
-
* @internal
|
|
1181
|
-
*/
|
|
1182
|
-
const filterSensitiveLog: (obj: CreateAccessPreviewRequest) => any;
|
|
1183
|
-
}
|
|
1184
956
|
export interface CreateAccessPreviewResponse {
|
|
1185
957
|
/**
|
|
1186
958
|
* <p>The unique ID for the access preview.</p>
|
|
1187
959
|
*/
|
|
1188
960
|
id: string | undefined;
|
|
1189
961
|
}
|
|
1190
|
-
export declare namespace CreateAccessPreviewResponse {
|
|
1191
|
-
/**
|
|
1192
|
-
* @internal
|
|
1193
|
-
*/
|
|
1194
|
-
const filterSensitiveLog: (obj: CreateAccessPreviewResponse) => any;
|
|
1195
|
-
}
|
|
1196
962
|
export interface GetAccessPreviewRequest {
|
|
1197
963
|
/**
|
|
1198
964
|
* <p>The unique ID for the access preview.</p>
|
|
@@ -1204,12 +970,6 @@ export interface GetAccessPreviewRequest {
|
|
|
1204
970
|
*/
|
|
1205
971
|
analyzerArn: string | undefined;
|
|
1206
972
|
}
|
|
1207
|
-
export declare namespace GetAccessPreviewRequest {
|
|
1208
|
-
/**
|
|
1209
|
-
* @internal
|
|
1210
|
-
*/
|
|
1211
|
-
const filterSensitiveLog: (obj: GetAccessPreviewRequest) => any;
|
|
1212
|
-
}
|
|
1213
973
|
export declare enum AccessPreviewStatus {
|
|
1214
974
|
COMPLETED = "COMPLETED",
|
|
1215
975
|
CREATING = "CREATING",
|
|
@@ -1231,12 +991,6 @@ export interface AccessPreviewStatusReason {
|
|
|
1231
991
|
*/
|
|
1232
992
|
code: AccessPreviewStatusReasonCode | string | undefined;
|
|
1233
993
|
}
|
|
1234
|
-
export declare namespace AccessPreviewStatusReason {
|
|
1235
|
-
/**
|
|
1236
|
-
* @internal
|
|
1237
|
-
*/
|
|
1238
|
-
const filterSensitiveLog: (obj: AccessPreviewStatusReason) => any;
|
|
1239
|
-
}
|
|
1240
994
|
/**
|
|
1241
995
|
* <p>Contains information about an access preview.</p>
|
|
1242
996
|
*/
|
|
@@ -1284,24 +1038,12 @@ export interface AccessPreview {
|
|
|
1284
1038
|
*/
|
|
1285
1039
|
statusReason?: AccessPreviewStatusReason;
|
|
1286
1040
|
}
|
|
1287
|
-
export declare namespace AccessPreview {
|
|
1288
|
-
/**
|
|
1289
|
-
* @internal
|
|
1290
|
-
*/
|
|
1291
|
-
const filterSensitiveLog: (obj: AccessPreview) => any;
|
|
1292
|
-
}
|
|
1293
1041
|
export interface GetAccessPreviewResponse {
|
|
1294
1042
|
/**
|
|
1295
1043
|
* <p>An object that contains information about the access preview.</p>
|
|
1296
1044
|
*/
|
|
1297
1045
|
accessPreview: AccessPreview | undefined;
|
|
1298
1046
|
}
|
|
1299
|
-
export declare namespace GetAccessPreviewResponse {
|
|
1300
|
-
/**
|
|
1301
|
-
* @internal
|
|
1302
|
-
*/
|
|
1303
|
-
const filterSensitiveLog: (obj: GetAccessPreviewResponse) => any;
|
|
1304
|
-
}
|
|
1305
1047
|
/**
|
|
1306
1048
|
* <p>Retrieves an analyzed resource.</p>
|
|
1307
1049
|
*/
|
|
@@ -1316,12 +1058,6 @@ export interface GetAnalyzedResourceRequest {
|
|
|
1316
1058
|
*/
|
|
1317
1059
|
resourceArn: string | undefined;
|
|
1318
1060
|
}
|
|
1319
|
-
export declare namespace GetAnalyzedResourceRequest {
|
|
1320
|
-
/**
|
|
1321
|
-
* @internal
|
|
1322
|
-
*/
|
|
1323
|
-
const filterSensitiveLog: (obj: GetAnalyzedResourceRequest) => any;
|
|
1324
|
-
}
|
|
1325
1061
|
export declare type ResourceType = "AWS::IAM::Role" | "AWS::KMS::Key" | "AWS::Lambda::Function" | "AWS::Lambda::LayerVersion" | "AWS::S3::Bucket" | "AWS::SQS::Queue" | "AWS::SecretsManager::Secret";
|
|
1326
1062
|
export declare type FindingStatus = "ACTIVE" | "ARCHIVED" | "RESOLVED";
|
|
1327
1063
|
/**
|
|
@@ -1376,12 +1112,6 @@ export interface AnalyzedResource {
|
|
|
1376
1112
|
*/
|
|
1377
1113
|
error?: string;
|
|
1378
1114
|
}
|
|
1379
|
-
export declare namespace AnalyzedResource {
|
|
1380
|
-
/**
|
|
1381
|
-
* @internal
|
|
1382
|
-
*/
|
|
1383
|
-
const filterSensitiveLog: (obj: AnalyzedResource) => any;
|
|
1384
|
-
}
|
|
1385
1115
|
/**
|
|
1386
1116
|
* <p>The response to the request.</p>
|
|
1387
1117
|
*/
|
|
@@ -1392,12 +1122,6 @@ export interface GetAnalyzedResourceResponse {
|
|
|
1392
1122
|
*/
|
|
1393
1123
|
resource?: AnalyzedResource;
|
|
1394
1124
|
}
|
|
1395
|
-
export declare namespace GetAnalyzedResourceResponse {
|
|
1396
|
-
/**
|
|
1397
|
-
* @internal
|
|
1398
|
-
*/
|
|
1399
|
-
const filterSensitiveLog: (obj: GetAnalyzedResourceResponse) => any;
|
|
1400
|
-
}
|
|
1401
1125
|
/**
|
|
1402
1126
|
* <p>Retrieves a finding.</p>
|
|
1403
1127
|
*/
|
|
@@ -1412,12 +1136,6 @@ export interface GetFindingRequest {
|
|
|
1412
1136
|
*/
|
|
1413
1137
|
id: string | undefined;
|
|
1414
1138
|
}
|
|
1415
|
-
export declare namespace GetFindingRequest {
|
|
1416
|
-
/**
|
|
1417
|
-
* @internal
|
|
1418
|
-
*/
|
|
1419
|
-
const filterSensitiveLog: (obj: GetFindingRequest) => any;
|
|
1420
|
-
}
|
|
1421
1139
|
/**
|
|
1422
1140
|
* <p>Includes details about how the access that generated the finding is granted. This is
|
|
1423
1141
|
* populated for Amazon S3 bucket findings.</p>
|
|
@@ -1429,12 +1147,6 @@ export interface FindingSourceDetail {
|
|
|
1429
1147
|
*/
|
|
1430
1148
|
accessPointArn?: string;
|
|
1431
1149
|
}
|
|
1432
|
-
export declare namespace FindingSourceDetail {
|
|
1433
|
-
/**
|
|
1434
|
-
* @internal
|
|
1435
|
-
*/
|
|
1436
|
-
const filterSensitiveLog: (obj: FindingSourceDetail) => any;
|
|
1437
|
-
}
|
|
1438
1150
|
export declare type FindingSourceType = "BUCKET_ACL" | "POLICY" | "S3_ACCESS_POINT";
|
|
1439
1151
|
/**
|
|
1440
1152
|
* <p>The source of the finding. This indicates how the access that generated the finding is
|
|
@@ -1451,12 +1163,6 @@ export interface FindingSource {
|
|
|
1451
1163
|
*/
|
|
1452
1164
|
detail?: FindingSourceDetail;
|
|
1453
1165
|
}
|
|
1454
|
-
export declare namespace FindingSource {
|
|
1455
|
-
/**
|
|
1456
|
-
* @internal
|
|
1457
|
-
*/
|
|
1458
|
-
const filterSensitiveLog: (obj: FindingSource) => any;
|
|
1459
|
-
}
|
|
1460
1166
|
/**
|
|
1461
1167
|
* <p>Contains information about a finding.</p>
|
|
1462
1168
|
*/
|
|
@@ -1521,12 +1227,6 @@ export interface Finding {
|
|
|
1521
1227
|
*/
|
|
1522
1228
|
sources?: FindingSource[];
|
|
1523
1229
|
}
|
|
1524
|
-
export declare namespace Finding {
|
|
1525
|
-
/**
|
|
1526
|
-
* @internal
|
|
1527
|
-
*/
|
|
1528
|
-
const filterSensitiveLog: (obj: Finding) => any;
|
|
1529
|
-
}
|
|
1530
1230
|
/**
|
|
1531
1231
|
* <p>The response to the request.</p>
|
|
1532
1232
|
*/
|
|
@@ -1536,12 +1236,6 @@ export interface GetFindingResponse {
|
|
|
1536
1236
|
*/
|
|
1537
1237
|
finding?: Finding;
|
|
1538
1238
|
}
|
|
1539
|
-
export declare namespace GetFindingResponse {
|
|
1540
|
-
/**
|
|
1541
|
-
* @internal
|
|
1542
|
-
*/
|
|
1543
|
-
const filterSensitiveLog: (obj: GetFindingResponse) => any;
|
|
1544
|
-
}
|
|
1545
1239
|
export interface GetGeneratedPolicyRequest {
|
|
1546
1240
|
/**
|
|
1547
1241
|
* <p>The <code>JobId</code> that is returned by the <code>StartPolicyGeneration</code>
|
|
@@ -1566,12 +1260,6 @@ export interface GetGeneratedPolicyRequest {
|
|
|
1566
1260
|
*/
|
|
1567
1261
|
includeServiceLevelTemplate?: boolean;
|
|
1568
1262
|
}
|
|
1569
|
-
export declare namespace GetGeneratedPolicyRequest {
|
|
1570
|
-
/**
|
|
1571
|
-
* @internal
|
|
1572
|
-
*/
|
|
1573
|
-
const filterSensitiveLog: (obj: GetGeneratedPolicyRequest) => any;
|
|
1574
|
-
}
|
|
1575
1263
|
/**
|
|
1576
1264
|
* <p>Contains the text for the generated policy.</p>
|
|
1577
1265
|
*/
|
|
@@ -1582,12 +1270,6 @@ export interface GeneratedPolicy {
|
|
|
1582
1270
|
*/
|
|
1583
1271
|
policy: string | undefined;
|
|
1584
1272
|
}
|
|
1585
|
-
export declare namespace GeneratedPolicy {
|
|
1586
|
-
/**
|
|
1587
|
-
* @internal
|
|
1588
|
-
*/
|
|
1589
|
-
const filterSensitiveLog: (obj: GeneratedPolicy) => any;
|
|
1590
|
-
}
|
|
1591
1273
|
/**
|
|
1592
1274
|
* <p>Contains details about the CloudTrail trail being analyzed to generate a policy.</p>
|
|
1593
1275
|
*/
|
|
@@ -1608,12 +1290,6 @@ export interface TrailProperties {
|
|
|
1608
1290
|
*/
|
|
1609
1291
|
allRegions?: boolean;
|
|
1610
1292
|
}
|
|
1611
|
-
export declare namespace TrailProperties {
|
|
1612
|
-
/**
|
|
1613
|
-
* @internal
|
|
1614
|
-
*/
|
|
1615
|
-
const filterSensitiveLog: (obj: TrailProperties) => any;
|
|
1616
|
-
}
|
|
1617
1293
|
/**
|
|
1618
1294
|
* <p>Contains information about CloudTrail access.</p>
|
|
1619
1295
|
*/
|
|
@@ -1635,12 +1311,6 @@ export interface CloudTrailProperties {
|
|
|
1635
1311
|
*/
|
|
1636
1312
|
endTime: Date | undefined;
|
|
1637
1313
|
}
|
|
1638
|
-
export declare namespace CloudTrailProperties {
|
|
1639
|
-
/**
|
|
1640
|
-
* @internal
|
|
1641
|
-
*/
|
|
1642
|
-
const filterSensitiveLog: (obj: CloudTrailProperties) => any;
|
|
1643
|
-
}
|
|
1644
1314
|
/**
|
|
1645
1315
|
* <p>Contains the generated policy details.</p>
|
|
1646
1316
|
*/
|
|
@@ -1660,12 +1330,6 @@ export interface GeneratedPolicyProperties {
|
|
|
1660
1330
|
*/
|
|
1661
1331
|
cloudTrailProperties?: CloudTrailProperties;
|
|
1662
1332
|
}
|
|
1663
|
-
export declare namespace GeneratedPolicyProperties {
|
|
1664
|
-
/**
|
|
1665
|
-
* @internal
|
|
1666
|
-
*/
|
|
1667
|
-
const filterSensitiveLog: (obj: GeneratedPolicyProperties) => any;
|
|
1668
|
-
}
|
|
1669
1333
|
/**
|
|
1670
1334
|
* <p>Contains the text for the generated policy and its details.</p>
|
|
1671
1335
|
*/
|
|
@@ -1681,12 +1345,6 @@ export interface GeneratedPolicyResult {
|
|
|
1681
1345
|
*/
|
|
1682
1346
|
generatedPolicies?: GeneratedPolicy[];
|
|
1683
1347
|
}
|
|
1684
|
-
export declare namespace GeneratedPolicyResult {
|
|
1685
|
-
/**
|
|
1686
|
-
* @internal
|
|
1687
|
-
*/
|
|
1688
|
-
const filterSensitiveLog: (obj: GeneratedPolicyResult) => any;
|
|
1689
|
-
}
|
|
1690
1348
|
export declare enum JobErrorCode {
|
|
1691
1349
|
AUTHORIZATION_ERROR = "AUTHORIZATION_ERROR",
|
|
1692
1350
|
RESOURCE_NOT_FOUND_ERROR = "RESOURCE_NOT_FOUND_ERROR",
|
|
@@ -1707,12 +1365,6 @@ export interface JobError {
|
|
|
1707
1365
|
*/
|
|
1708
1366
|
message: string | undefined;
|
|
1709
1367
|
}
|
|
1710
|
-
export declare namespace JobError {
|
|
1711
|
-
/**
|
|
1712
|
-
* @internal
|
|
1713
|
-
*/
|
|
1714
|
-
const filterSensitiveLog: (obj: JobError) => any;
|
|
1715
|
-
}
|
|
1716
1368
|
export declare enum JobStatus {
|
|
1717
1369
|
CANCELED = "CANCELED",
|
|
1718
1370
|
FAILED = "FAILED",
|
|
@@ -1747,12 +1399,6 @@ export interface JobDetails {
|
|
|
1747
1399
|
*/
|
|
1748
1400
|
jobError?: JobError;
|
|
1749
1401
|
}
|
|
1750
|
-
export declare namespace JobDetails {
|
|
1751
|
-
/**
|
|
1752
|
-
* @internal
|
|
1753
|
-
*/
|
|
1754
|
-
const filterSensitiveLog: (obj: JobDetails) => any;
|
|
1755
|
-
}
|
|
1756
1402
|
export interface GetGeneratedPolicyResponse {
|
|
1757
1403
|
/**
|
|
1758
1404
|
* <p>A <code>GeneratedPolicyDetails</code> object that contains details about the generated
|
|
@@ -1765,12 +1411,6 @@ export interface GetGeneratedPolicyResponse {
|
|
|
1765
1411
|
*/
|
|
1766
1412
|
generatedPolicyResult: GeneratedPolicyResult | undefined;
|
|
1767
1413
|
}
|
|
1768
|
-
export declare namespace GetGeneratedPolicyResponse {
|
|
1769
|
-
/**
|
|
1770
|
-
* @internal
|
|
1771
|
-
*/
|
|
1772
|
-
const filterSensitiveLog: (obj: GetGeneratedPolicyResponse) => any;
|
|
1773
|
-
}
|
|
1774
1414
|
export interface ListAccessPreviewFindingsRequest {
|
|
1775
1415
|
/**
|
|
1776
1416
|
* <p>The unique ID for the access preview.</p>
|
|
@@ -1794,12 +1434,6 @@ export interface ListAccessPreviewFindingsRequest {
|
|
|
1794
1434
|
*/
|
|
1795
1435
|
maxResults?: number;
|
|
1796
1436
|
}
|
|
1797
|
-
export declare namespace ListAccessPreviewFindingsRequest {
|
|
1798
|
-
/**
|
|
1799
|
-
* @internal
|
|
1800
|
-
*/
|
|
1801
|
-
const filterSensitiveLog: (obj: ListAccessPreviewFindingsRequest) => any;
|
|
1802
|
-
}
|
|
1803
1437
|
export declare enum FindingChangeType {
|
|
1804
1438
|
CHANGED = "CHANGED",
|
|
1805
1439
|
NEW = "NEW",
|
|
@@ -1902,12 +1536,6 @@ export interface AccessPreviewFinding {
|
|
|
1902
1536
|
*/
|
|
1903
1537
|
sources?: FindingSource[];
|
|
1904
1538
|
}
|
|
1905
|
-
export declare namespace AccessPreviewFinding {
|
|
1906
|
-
/**
|
|
1907
|
-
* @internal
|
|
1908
|
-
*/
|
|
1909
|
-
const filterSensitiveLog: (obj: AccessPreviewFinding) => any;
|
|
1910
|
-
}
|
|
1911
1539
|
export interface ListAccessPreviewFindingsResponse {
|
|
1912
1540
|
/**
|
|
1913
1541
|
* <p>A list of access preview findings that match the specified filter criteria.</p>
|
|
@@ -1918,12 +1546,6 @@ export interface ListAccessPreviewFindingsResponse {
|
|
|
1918
1546
|
*/
|
|
1919
1547
|
nextToken?: string;
|
|
1920
1548
|
}
|
|
1921
|
-
export declare namespace ListAccessPreviewFindingsResponse {
|
|
1922
|
-
/**
|
|
1923
|
-
* @internal
|
|
1924
|
-
*/
|
|
1925
|
-
const filterSensitiveLog: (obj: ListAccessPreviewFindingsResponse) => any;
|
|
1926
|
-
}
|
|
1927
1549
|
export interface ListAccessPreviewsRequest {
|
|
1928
1550
|
/**
|
|
1929
1551
|
* <p>The <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access-analyzer-getting-started.html#permission-resources">ARN of
|
|
@@ -1939,12 +1561,6 @@ export interface ListAccessPreviewsRequest {
|
|
|
1939
1561
|
*/
|
|
1940
1562
|
maxResults?: number;
|
|
1941
1563
|
}
|
|
1942
|
-
export declare namespace ListAccessPreviewsRequest {
|
|
1943
|
-
/**
|
|
1944
|
-
* @internal
|
|
1945
|
-
*/
|
|
1946
|
-
const filterSensitiveLog: (obj: ListAccessPreviewsRequest) => any;
|
|
1947
|
-
}
|
|
1948
1564
|
/**
|
|
1949
1565
|
* <p>Contains a summary of information about an access preview.</p>
|
|
1950
1566
|
*/
|
|
@@ -1988,12 +1604,6 @@ export interface AccessPreviewSummary {
|
|
|
1988
1604
|
*/
|
|
1989
1605
|
statusReason?: AccessPreviewStatusReason;
|
|
1990
1606
|
}
|
|
1991
|
-
export declare namespace AccessPreviewSummary {
|
|
1992
|
-
/**
|
|
1993
|
-
* @internal
|
|
1994
|
-
*/
|
|
1995
|
-
const filterSensitiveLog: (obj: AccessPreviewSummary) => any;
|
|
1996
|
-
}
|
|
1997
1607
|
export interface ListAccessPreviewsResponse {
|
|
1998
1608
|
/**
|
|
1999
1609
|
* <p>A list of access previews retrieved for the analyzer.</p>
|
|
@@ -2004,12 +1614,6 @@ export interface ListAccessPreviewsResponse {
|
|
|
2004
1614
|
*/
|
|
2005
1615
|
nextToken?: string;
|
|
2006
1616
|
}
|
|
2007
|
-
export declare namespace ListAccessPreviewsResponse {
|
|
2008
|
-
/**
|
|
2009
|
-
* @internal
|
|
2010
|
-
*/
|
|
2011
|
-
const filterSensitiveLog: (obj: ListAccessPreviewsResponse) => any;
|
|
2012
|
-
}
|
|
2013
1617
|
/**
|
|
2014
1618
|
* <p>Retrieves a list of resources that have been analyzed.</p>
|
|
2015
1619
|
*/
|
|
@@ -2032,12 +1636,6 @@ export interface ListAnalyzedResourcesRequest {
|
|
|
2032
1636
|
*/
|
|
2033
1637
|
maxResults?: number;
|
|
2034
1638
|
}
|
|
2035
|
-
export declare namespace ListAnalyzedResourcesRequest {
|
|
2036
|
-
/**
|
|
2037
|
-
* @internal
|
|
2038
|
-
*/
|
|
2039
|
-
const filterSensitiveLog: (obj: ListAnalyzedResourcesRequest) => any;
|
|
2040
|
-
}
|
|
2041
1639
|
/**
|
|
2042
1640
|
* <p>Contains the ARN of the analyzed resource.</p>
|
|
2043
1641
|
*/
|
|
@@ -2055,12 +1653,6 @@ export interface AnalyzedResourceSummary {
|
|
|
2055
1653
|
*/
|
|
2056
1654
|
resourceType: ResourceType | string | undefined;
|
|
2057
1655
|
}
|
|
2058
|
-
export declare namespace AnalyzedResourceSummary {
|
|
2059
|
-
/**
|
|
2060
|
-
* @internal
|
|
2061
|
-
*/
|
|
2062
|
-
const filterSensitiveLog: (obj: AnalyzedResourceSummary) => any;
|
|
2063
|
-
}
|
|
2064
1656
|
/**
|
|
2065
1657
|
* <p>The response to the request.</p>
|
|
2066
1658
|
*/
|
|
@@ -2074,12 +1666,6 @@ export interface ListAnalyzedResourcesResponse {
|
|
|
2074
1666
|
*/
|
|
2075
1667
|
nextToken?: string;
|
|
2076
1668
|
}
|
|
2077
|
-
export declare namespace ListAnalyzedResourcesResponse {
|
|
2078
|
-
/**
|
|
2079
|
-
* @internal
|
|
2080
|
-
*/
|
|
2081
|
-
const filterSensitiveLog: (obj: ListAnalyzedResourcesResponse) => any;
|
|
2082
|
-
}
|
|
2083
1669
|
export declare type OrderBy = "ASC" | "DESC";
|
|
2084
1670
|
/**
|
|
2085
1671
|
* <p>The criteria used to sort.</p>
|
|
@@ -2094,12 +1680,6 @@ export interface SortCriteria {
|
|
|
2094
1680
|
*/
|
|
2095
1681
|
orderBy?: OrderBy | string;
|
|
2096
1682
|
}
|
|
2097
|
-
export declare namespace SortCriteria {
|
|
2098
|
-
/**
|
|
2099
|
-
* @internal
|
|
2100
|
-
*/
|
|
2101
|
-
const filterSensitiveLog: (obj: SortCriteria) => any;
|
|
2102
|
-
}
|
|
2103
1683
|
/**
|
|
2104
1684
|
* <p>Retrieves a list of findings generated by the specified analyzer.</p>
|
|
2105
1685
|
*/
|
|
@@ -2126,12 +1706,6 @@ export interface ListFindingsRequest {
|
|
|
2126
1706
|
*/
|
|
2127
1707
|
maxResults?: number;
|
|
2128
1708
|
}
|
|
2129
|
-
export declare namespace ListFindingsRequest {
|
|
2130
|
-
/**
|
|
2131
|
-
* @internal
|
|
2132
|
-
*/
|
|
2133
|
-
const filterSensitiveLog: (obj: ListFindingsRequest) => any;
|
|
2134
|
-
}
|
|
2135
1709
|
/**
|
|
2136
1710
|
* <p>Contains information about a finding.</p>
|
|
2137
1711
|
*/
|
|
@@ -2197,12 +1771,6 @@ export interface FindingSummary {
|
|
|
2197
1771
|
*/
|
|
2198
1772
|
sources?: FindingSource[];
|
|
2199
1773
|
}
|
|
2200
|
-
export declare namespace FindingSummary {
|
|
2201
|
-
/**
|
|
2202
|
-
* @internal
|
|
2203
|
-
*/
|
|
2204
|
-
const filterSensitiveLog: (obj: FindingSummary) => any;
|
|
2205
|
-
}
|
|
2206
1774
|
/**
|
|
2207
1775
|
* <p>The response to the request.</p>
|
|
2208
1776
|
*/
|
|
@@ -2217,12 +1785,6 @@ export interface ListFindingsResponse {
|
|
|
2217
1785
|
*/
|
|
2218
1786
|
nextToken?: string;
|
|
2219
1787
|
}
|
|
2220
|
-
export declare namespace ListFindingsResponse {
|
|
2221
|
-
/**
|
|
2222
|
-
* @internal
|
|
2223
|
-
*/
|
|
2224
|
-
const filterSensitiveLog: (obj: ListFindingsResponse) => any;
|
|
2225
|
-
}
|
|
2226
1788
|
export interface ListPolicyGenerationsRequest {
|
|
2227
1789
|
/**
|
|
2228
1790
|
* <p>The ARN of the IAM entity (user or role) for which you are generating a policy. Use
|
|
@@ -2239,12 +1801,6 @@ export interface ListPolicyGenerationsRequest {
|
|
|
2239
1801
|
*/
|
|
2240
1802
|
nextToken?: string;
|
|
2241
1803
|
}
|
|
2242
|
-
export declare namespace ListPolicyGenerationsRequest {
|
|
2243
|
-
/**
|
|
2244
|
-
* @internal
|
|
2245
|
-
*/
|
|
2246
|
-
const filterSensitiveLog: (obj: ListPolicyGenerationsRequest) => any;
|
|
2247
|
-
}
|
|
2248
1804
|
/**
|
|
2249
1805
|
* <p>Contains details about the policy generation status and properties.</p>
|
|
2250
1806
|
*/
|
|
@@ -2273,12 +1829,6 @@ export interface PolicyGeneration {
|
|
|
2273
1829
|
*/
|
|
2274
1830
|
completedOn?: Date;
|
|
2275
1831
|
}
|
|
2276
|
-
export declare namespace PolicyGeneration {
|
|
2277
|
-
/**
|
|
2278
|
-
* @internal
|
|
2279
|
-
*/
|
|
2280
|
-
const filterSensitiveLog: (obj: PolicyGeneration) => any;
|
|
2281
|
-
}
|
|
2282
1832
|
export interface ListPolicyGenerationsResponse {
|
|
2283
1833
|
/**
|
|
2284
1834
|
* <p>A <code>PolicyGeneration</code> object that contains details about the generated
|
|
@@ -2290,12 +1840,6 @@ export interface ListPolicyGenerationsResponse {
|
|
|
2290
1840
|
*/
|
|
2291
1841
|
nextToken?: string;
|
|
2292
1842
|
}
|
|
2293
|
-
export declare namespace ListPolicyGenerationsResponse {
|
|
2294
|
-
/**
|
|
2295
|
-
* @internal
|
|
2296
|
-
*/
|
|
2297
|
-
const filterSensitiveLog: (obj: ListPolicyGenerationsResponse) => any;
|
|
2298
|
-
}
|
|
2299
1843
|
/**
|
|
2300
1844
|
* <p>Retrieves a list of tags applied to the specified resource.</p>
|
|
2301
1845
|
*/
|
|
@@ -2305,12 +1849,6 @@ export interface ListTagsForResourceRequest {
|
|
|
2305
1849
|
*/
|
|
2306
1850
|
resourceArn: string | undefined;
|
|
2307
1851
|
}
|
|
2308
|
-
export declare namespace ListTagsForResourceRequest {
|
|
2309
|
-
/**
|
|
2310
|
-
* @internal
|
|
2311
|
-
*/
|
|
2312
|
-
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
2313
|
-
}
|
|
2314
1852
|
/**
|
|
2315
1853
|
* <p>The response to the request.</p>
|
|
2316
1854
|
*/
|
|
@@ -2320,12 +1858,6 @@ export interface ListTagsForResourceResponse {
|
|
|
2320
1858
|
*/
|
|
2321
1859
|
tags?: Record<string, string>;
|
|
2322
1860
|
}
|
|
2323
|
-
export declare namespace ListTagsForResourceResponse {
|
|
2324
|
-
/**
|
|
2325
|
-
* @internal
|
|
2326
|
-
*/
|
|
2327
|
-
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
2328
|
-
}
|
|
2329
1861
|
/**
|
|
2330
1862
|
* <p>Contains details about the CloudTrail trail being analyzed to generate a policy.</p>
|
|
2331
1863
|
*/
|
|
@@ -2346,12 +1878,6 @@ export interface Trail {
|
|
|
2346
1878
|
*/
|
|
2347
1879
|
allRegions?: boolean;
|
|
2348
1880
|
}
|
|
2349
|
-
export declare namespace Trail {
|
|
2350
|
-
/**
|
|
2351
|
-
* @internal
|
|
2352
|
-
*/
|
|
2353
|
-
const filterSensitiveLog: (obj: Trail) => any;
|
|
2354
|
-
}
|
|
2355
1881
|
/**
|
|
2356
1882
|
* <p>Contains information about CloudTrail access.</p>
|
|
2357
1883
|
*/
|
|
@@ -2377,12 +1903,6 @@ export interface CloudTrailDetails {
|
|
|
2377
1903
|
*/
|
|
2378
1904
|
endTime?: Date;
|
|
2379
1905
|
}
|
|
2380
|
-
export declare namespace CloudTrailDetails {
|
|
2381
|
-
/**
|
|
2382
|
-
* @internal
|
|
2383
|
-
*/
|
|
2384
|
-
const filterSensitiveLog: (obj: CloudTrailDetails) => any;
|
|
2385
|
-
}
|
|
2386
1906
|
/**
|
|
2387
1907
|
* <p>Contains the ARN details about the IAM entity for which the policy is
|
|
2388
1908
|
* generated.</p>
|
|
@@ -2393,12 +1913,6 @@ export interface PolicyGenerationDetails {
|
|
|
2393
1913
|
*/
|
|
2394
1914
|
principalArn: string | undefined;
|
|
2395
1915
|
}
|
|
2396
|
-
export declare namespace PolicyGenerationDetails {
|
|
2397
|
-
/**
|
|
2398
|
-
* @internal
|
|
2399
|
-
*/
|
|
2400
|
-
const filterSensitiveLog: (obj: PolicyGenerationDetails) => any;
|
|
2401
|
-
}
|
|
2402
1916
|
export interface StartPolicyGenerationRequest {
|
|
2403
1917
|
/**
|
|
2404
1918
|
* <p>Contains the ARN of the IAM entity (user or role) for which you are generating a
|
|
@@ -2421,12 +1935,6 @@ export interface StartPolicyGenerationRequest {
|
|
|
2421
1935
|
*/
|
|
2422
1936
|
clientToken?: string;
|
|
2423
1937
|
}
|
|
2424
|
-
export declare namespace StartPolicyGenerationRequest {
|
|
2425
|
-
/**
|
|
2426
|
-
* @internal
|
|
2427
|
-
*/
|
|
2428
|
-
const filterSensitiveLog: (obj: StartPolicyGenerationRequest) => any;
|
|
2429
|
-
}
|
|
2430
1938
|
export interface StartPolicyGenerationResponse {
|
|
2431
1939
|
/**
|
|
2432
1940
|
* <p>The <code>JobId</code> that is returned by the <code>StartPolicyGeneration</code>
|
|
@@ -2436,12 +1944,6 @@ export interface StartPolicyGenerationResponse {
|
|
|
2436
1944
|
*/
|
|
2437
1945
|
jobId: string | undefined;
|
|
2438
1946
|
}
|
|
2439
|
-
export declare namespace StartPolicyGenerationResponse {
|
|
2440
|
-
/**
|
|
2441
|
-
* @internal
|
|
2442
|
-
*/
|
|
2443
|
-
const filterSensitiveLog: (obj: StartPolicyGenerationResponse) => any;
|
|
2444
|
-
}
|
|
2445
1947
|
/**
|
|
2446
1948
|
* <p>Starts a scan of the policies applied to the specified resource.</p>
|
|
2447
1949
|
*/
|
|
@@ -2457,12 +1959,6 @@ export interface StartResourceScanRequest {
|
|
|
2457
1959
|
*/
|
|
2458
1960
|
resourceArn: string | undefined;
|
|
2459
1961
|
}
|
|
2460
|
-
export declare namespace StartResourceScanRequest {
|
|
2461
|
-
/**
|
|
2462
|
-
* @internal
|
|
2463
|
-
*/
|
|
2464
|
-
const filterSensitiveLog: (obj: StartResourceScanRequest) => any;
|
|
2465
|
-
}
|
|
2466
1962
|
/**
|
|
2467
1963
|
* <p>Adds a tag to the specified resource.</p>
|
|
2468
1964
|
*/
|
|
@@ -2476,23 +1972,11 @@ export interface TagResourceRequest {
|
|
|
2476
1972
|
*/
|
|
2477
1973
|
tags: Record<string, string> | undefined;
|
|
2478
1974
|
}
|
|
2479
|
-
export declare namespace TagResourceRequest {
|
|
2480
|
-
/**
|
|
2481
|
-
* @internal
|
|
2482
|
-
*/
|
|
2483
|
-
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
2484
|
-
}
|
|
2485
1975
|
/**
|
|
2486
1976
|
* <p>The response to the request.</p>
|
|
2487
1977
|
*/
|
|
2488
1978
|
export interface TagResourceResponse {
|
|
2489
1979
|
}
|
|
2490
|
-
export declare namespace TagResourceResponse {
|
|
2491
|
-
/**
|
|
2492
|
-
* @internal
|
|
2493
|
-
*/
|
|
2494
|
-
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
2495
|
-
}
|
|
2496
1980
|
/**
|
|
2497
1981
|
* <p>Removes a tag from the specified resource.</p>
|
|
2498
1982
|
*/
|
|
@@ -2506,23 +1990,11 @@ export interface UntagResourceRequest {
|
|
|
2506
1990
|
*/
|
|
2507
1991
|
tagKeys: string[] | undefined;
|
|
2508
1992
|
}
|
|
2509
|
-
export declare namespace UntagResourceRequest {
|
|
2510
|
-
/**
|
|
2511
|
-
* @internal
|
|
2512
|
-
*/
|
|
2513
|
-
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
2514
|
-
}
|
|
2515
1993
|
/**
|
|
2516
1994
|
* <p>The response to the request.</p>
|
|
2517
1995
|
*/
|
|
2518
1996
|
export interface UntagResourceResponse {
|
|
2519
1997
|
}
|
|
2520
|
-
export declare namespace UntagResourceResponse {
|
|
2521
|
-
/**
|
|
2522
|
-
* @internal
|
|
2523
|
-
*/
|
|
2524
|
-
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
2525
|
-
}
|
|
2526
1998
|
export declare type FindingStatusUpdate = "ACTIVE" | "ARCHIVED";
|
|
2527
1999
|
/**
|
|
2528
2000
|
* <p>Updates findings with the new values provided in the request.</p>
|
|
@@ -2552,12 +2024,6 @@ export interface UpdateFindingsRequest {
|
|
|
2552
2024
|
*/
|
|
2553
2025
|
clientToken?: string;
|
|
2554
2026
|
}
|
|
2555
|
-
export declare namespace UpdateFindingsRequest {
|
|
2556
|
-
/**
|
|
2557
|
-
* @internal
|
|
2558
|
-
*/
|
|
2559
|
-
const filterSensitiveLog: (obj: UpdateFindingsRequest) => any;
|
|
2560
|
-
}
|
|
2561
2027
|
export declare enum Locale {
|
|
2562
2028
|
DE = "DE",
|
|
2563
2029
|
EN = "EN",
|
|
@@ -2621,12 +2087,6 @@ export interface ValidatePolicyRequest {
|
|
|
2621
2087
|
*/
|
|
2622
2088
|
validatePolicyResourceType?: ValidatePolicyResourceType | string;
|
|
2623
2089
|
}
|
|
2624
|
-
export declare namespace ValidatePolicyRequest {
|
|
2625
|
-
/**
|
|
2626
|
-
* @internal
|
|
2627
|
-
*/
|
|
2628
|
-
const filterSensitiveLog: (obj: ValidatePolicyRequest) => any;
|
|
2629
|
-
}
|
|
2630
2090
|
export declare enum ValidatePolicyFindingType {
|
|
2631
2091
|
ERROR = "ERROR",
|
|
2632
2092
|
SECURITY_WARNING = "SECURITY_WARNING",
|
|
@@ -2646,12 +2106,6 @@ export interface Substring {
|
|
|
2646
2106
|
*/
|
|
2647
2107
|
length: number | undefined;
|
|
2648
2108
|
}
|
|
2649
|
-
export declare namespace Substring {
|
|
2650
|
-
/**
|
|
2651
|
-
* @internal
|
|
2652
|
-
*/
|
|
2653
|
-
const filterSensitiveLog: (obj: Substring) => any;
|
|
2654
|
-
}
|
|
2655
2109
|
/**
|
|
2656
2110
|
* <p>A single element in a path through the JSON representation of a policy.</p>
|
|
2657
2111
|
*/
|
|
@@ -2712,10 +2166,6 @@ export declare namespace PathElement {
|
|
|
2712
2166
|
_: (name: string, value: any) => T;
|
|
2713
2167
|
}
|
|
2714
2168
|
const visit: <T>(value: PathElement, visitor: Visitor<T>) => T;
|
|
2715
|
-
/**
|
|
2716
|
-
* @internal
|
|
2717
|
-
*/
|
|
2718
|
-
const filterSensitiveLog: (obj: PathElement) => any;
|
|
2719
2169
|
}
|
|
2720
2170
|
/**
|
|
2721
2171
|
* <p>A position in a policy.</p>
|
|
@@ -2734,12 +2184,6 @@ export interface Position {
|
|
|
2734
2184
|
*/
|
|
2735
2185
|
offset: number | undefined;
|
|
2736
2186
|
}
|
|
2737
|
-
export declare namespace Position {
|
|
2738
|
-
/**
|
|
2739
|
-
* @internal
|
|
2740
|
-
*/
|
|
2741
|
-
const filterSensitiveLog: (obj: Position) => any;
|
|
2742
|
-
}
|
|
2743
2187
|
/**
|
|
2744
2188
|
* <p>A span in a policy. The span consists of a start position (inclusive) and end position
|
|
2745
2189
|
* (exclusive).</p>
|
|
@@ -2754,12 +2198,6 @@ export interface Span {
|
|
|
2754
2198
|
*/
|
|
2755
2199
|
end: Position | undefined;
|
|
2756
2200
|
}
|
|
2757
|
-
export declare namespace Span {
|
|
2758
|
-
/**
|
|
2759
|
-
* @internal
|
|
2760
|
-
*/
|
|
2761
|
-
const filterSensitiveLog: (obj: Span) => any;
|
|
2762
|
-
}
|
|
2763
2201
|
/**
|
|
2764
2202
|
* <p>A location in a policy that is represented as a path through the JSON representation and
|
|
2765
2203
|
* a corresponding span.</p>
|
|
@@ -2774,12 +2212,6 @@ export interface Location {
|
|
|
2774
2212
|
*/
|
|
2775
2213
|
span: Span | undefined;
|
|
2776
2214
|
}
|
|
2777
|
-
export declare namespace Location {
|
|
2778
|
-
/**
|
|
2779
|
-
* @internal
|
|
2780
|
-
*/
|
|
2781
|
-
const filterSensitiveLog: (obj: Location) => any;
|
|
2782
|
-
}
|
|
2783
2215
|
/**
|
|
2784
2216
|
* <p>A finding in a policy. Each finding is an actionable recommendation that can be used to
|
|
2785
2217
|
* improve the policy.</p>
|
|
@@ -2815,12 +2247,6 @@ export interface ValidatePolicyFinding {
|
|
|
2815
2247
|
*/
|
|
2816
2248
|
locations: Location[] | undefined;
|
|
2817
2249
|
}
|
|
2818
|
-
export declare namespace ValidatePolicyFinding {
|
|
2819
|
-
/**
|
|
2820
|
-
* @internal
|
|
2821
|
-
*/
|
|
2822
|
-
const filterSensitiveLog: (obj: ValidatePolicyFinding) => any;
|
|
2823
|
-
}
|
|
2824
2250
|
export interface ValidatePolicyResponse {
|
|
2825
2251
|
/**
|
|
2826
2252
|
* <p>The list of findings in a policy returned by IAM Access Analyzer based on its suite of policy
|
|
@@ -2832,9 +2258,395 @@ export interface ValidatePolicyResponse {
|
|
|
2832
2258
|
*/
|
|
2833
2259
|
nextToken?: string;
|
|
2834
2260
|
}
|
|
2835
|
-
|
|
2836
|
-
|
|
2837
|
-
|
|
2838
|
-
|
|
2839
|
-
|
|
2840
|
-
|
|
2261
|
+
/**
|
|
2262
|
+
* @internal
|
|
2263
|
+
*/
|
|
2264
|
+
export declare const CriterionFilterSensitiveLog: (obj: Criterion) => any;
|
|
2265
|
+
/**
|
|
2266
|
+
* @internal
|
|
2267
|
+
*/
|
|
2268
|
+
export declare const CreateArchiveRuleRequestFilterSensitiveLog: (obj: CreateArchiveRuleRequest) => any;
|
|
2269
|
+
/**
|
|
2270
|
+
* @internal
|
|
2271
|
+
*/
|
|
2272
|
+
export declare const ValidationExceptionFieldFilterSensitiveLog: (obj: ValidationExceptionField) => any;
|
|
2273
|
+
/**
|
|
2274
|
+
* @internal
|
|
2275
|
+
*/
|
|
2276
|
+
export declare const DeleteArchiveRuleRequestFilterSensitiveLog: (obj: DeleteArchiveRuleRequest) => any;
|
|
2277
|
+
/**
|
|
2278
|
+
* @internal
|
|
2279
|
+
*/
|
|
2280
|
+
export declare const GetArchiveRuleRequestFilterSensitiveLog: (obj: GetArchiveRuleRequest) => any;
|
|
2281
|
+
/**
|
|
2282
|
+
* @internal
|
|
2283
|
+
*/
|
|
2284
|
+
export declare const ArchiveRuleSummaryFilterSensitiveLog: (obj: ArchiveRuleSummary) => any;
|
|
2285
|
+
/**
|
|
2286
|
+
* @internal
|
|
2287
|
+
*/
|
|
2288
|
+
export declare const GetArchiveRuleResponseFilterSensitiveLog: (obj: GetArchiveRuleResponse) => any;
|
|
2289
|
+
/**
|
|
2290
|
+
* @internal
|
|
2291
|
+
*/
|
|
2292
|
+
export declare const ListArchiveRulesRequestFilterSensitiveLog: (obj: ListArchiveRulesRequest) => any;
|
|
2293
|
+
/**
|
|
2294
|
+
* @internal
|
|
2295
|
+
*/
|
|
2296
|
+
export declare const ListArchiveRulesResponseFilterSensitiveLog: (obj: ListArchiveRulesResponse) => any;
|
|
2297
|
+
/**
|
|
2298
|
+
* @internal
|
|
2299
|
+
*/
|
|
2300
|
+
export declare const UpdateArchiveRuleRequestFilterSensitiveLog: (obj: UpdateArchiveRuleRequest) => any;
|
|
2301
|
+
/**
|
|
2302
|
+
* @internal
|
|
2303
|
+
*/
|
|
2304
|
+
export declare const InlineArchiveRuleFilterSensitiveLog: (obj: InlineArchiveRule) => any;
|
|
2305
|
+
/**
|
|
2306
|
+
* @internal
|
|
2307
|
+
*/
|
|
2308
|
+
export declare const CreateAnalyzerRequestFilterSensitiveLog: (obj: CreateAnalyzerRequest) => any;
|
|
2309
|
+
/**
|
|
2310
|
+
* @internal
|
|
2311
|
+
*/
|
|
2312
|
+
export declare const CreateAnalyzerResponseFilterSensitiveLog: (obj: CreateAnalyzerResponse) => any;
|
|
2313
|
+
/**
|
|
2314
|
+
* @internal
|
|
2315
|
+
*/
|
|
2316
|
+
export declare const DeleteAnalyzerRequestFilterSensitiveLog: (obj: DeleteAnalyzerRequest) => any;
|
|
2317
|
+
/**
|
|
2318
|
+
* @internal
|
|
2319
|
+
*/
|
|
2320
|
+
export declare const GetAnalyzerRequestFilterSensitiveLog: (obj: GetAnalyzerRequest) => any;
|
|
2321
|
+
/**
|
|
2322
|
+
* @internal
|
|
2323
|
+
*/
|
|
2324
|
+
export declare const StatusReasonFilterSensitiveLog: (obj: StatusReason) => any;
|
|
2325
|
+
/**
|
|
2326
|
+
* @internal
|
|
2327
|
+
*/
|
|
2328
|
+
export declare const AnalyzerSummaryFilterSensitiveLog: (obj: AnalyzerSummary) => any;
|
|
2329
|
+
/**
|
|
2330
|
+
* @internal
|
|
2331
|
+
*/
|
|
2332
|
+
export declare const GetAnalyzerResponseFilterSensitiveLog: (obj: GetAnalyzerResponse) => any;
|
|
2333
|
+
/**
|
|
2334
|
+
* @internal
|
|
2335
|
+
*/
|
|
2336
|
+
export declare const ListAnalyzersRequestFilterSensitiveLog: (obj: ListAnalyzersRequest) => any;
|
|
2337
|
+
/**
|
|
2338
|
+
* @internal
|
|
2339
|
+
*/
|
|
2340
|
+
export declare const ListAnalyzersResponseFilterSensitiveLog: (obj: ListAnalyzersResponse) => any;
|
|
2341
|
+
/**
|
|
2342
|
+
* @internal
|
|
2343
|
+
*/
|
|
2344
|
+
export declare const ApplyArchiveRuleRequestFilterSensitiveLog: (obj: ApplyArchiveRuleRequest) => any;
|
|
2345
|
+
/**
|
|
2346
|
+
* @internal
|
|
2347
|
+
*/
|
|
2348
|
+
export declare const CancelPolicyGenerationRequestFilterSensitiveLog: (obj: CancelPolicyGenerationRequest) => any;
|
|
2349
|
+
/**
|
|
2350
|
+
* @internal
|
|
2351
|
+
*/
|
|
2352
|
+
export declare const CancelPolicyGenerationResponseFilterSensitiveLog: (obj: CancelPolicyGenerationResponse) => any;
|
|
2353
|
+
/**
|
|
2354
|
+
* @internal
|
|
2355
|
+
*/
|
|
2356
|
+
export declare const IamRoleConfigurationFilterSensitiveLog: (obj: IamRoleConfiguration) => any;
|
|
2357
|
+
/**
|
|
2358
|
+
* @internal
|
|
2359
|
+
*/
|
|
2360
|
+
export declare const KmsGrantConstraintsFilterSensitiveLog: (obj: KmsGrantConstraints) => any;
|
|
2361
|
+
/**
|
|
2362
|
+
* @internal
|
|
2363
|
+
*/
|
|
2364
|
+
export declare const KmsGrantConfigurationFilterSensitiveLog: (obj: KmsGrantConfiguration) => any;
|
|
2365
|
+
/**
|
|
2366
|
+
* @internal
|
|
2367
|
+
*/
|
|
2368
|
+
export declare const KmsKeyConfigurationFilterSensitiveLog: (obj: KmsKeyConfiguration) => any;
|
|
2369
|
+
/**
|
|
2370
|
+
* @internal
|
|
2371
|
+
*/
|
|
2372
|
+
export declare const InternetConfigurationFilterSensitiveLog: (obj: InternetConfiguration) => any;
|
|
2373
|
+
/**
|
|
2374
|
+
* @internal
|
|
2375
|
+
*/
|
|
2376
|
+
export declare const VpcConfigurationFilterSensitiveLog: (obj: VpcConfiguration) => any;
|
|
2377
|
+
/**
|
|
2378
|
+
* @internal
|
|
2379
|
+
*/
|
|
2380
|
+
export declare const NetworkOriginConfigurationFilterSensitiveLog: (obj: NetworkOriginConfiguration) => any;
|
|
2381
|
+
/**
|
|
2382
|
+
* @internal
|
|
2383
|
+
*/
|
|
2384
|
+
export declare const S3PublicAccessBlockConfigurationFilterSensitiveLog: (obj: S3PublicAccessBlockConfiguration) => any;
|
|
2385
|
+
/**
|
|
2386
|
+
* @internal
|
|
2387
|
+
*/
|
|
2388
|
+
export declare const S3AccessPointConfigurationFilterSensitiveLog: (obj: S3AccessPointConfiguration) => any;
|
|
2389
|
+
/**
|
|
2390
|
+
* @internal
|
|
2391
|
+
*/
|
|
2392
|
+
export declare const AclGranteeFilterSensitiveLog: (obj: AclGrantee) => any;
|
|
2393
|
+
/**
|
|
2394
|
+
* @internal
|
|
2395
|
+
*/
|
|
2396
|
+
export declare const S3BucketAclGrantConfigurationFilterSensitiveLog: (obj: S3BucketAclGrantConfiguration) => any;
|
|
2397
|
+
/**
|
|
2398
|
+
* @internal
|
|
2399
|
+
*/
|
|
2400
|
+
export declare const S3BucketConfigurationFilterSensitiveLog: (obj: S3BucketConfiguration) => any;
|
|
2401
|
+
/**
|
|
2402
|
+
* @internal
|
|
2403
|
+
*/
|
|
2404
|
+
export declare const SecretsManagerSecretConfigurationFilterSensitiveLog: (obj: SecretsManagerSecretConfiguration) => any;
|
|
2405
|
+
/**
|
|
2406
|
+
* @internal
|
|
2407
|
+
*/
|
|
2408
|
+
export declare const SqsQueueConfigurationFilterSensitiveLog: (obj: SqsQueueConfiguration) => any;
|
|
2409
|
+
/**
|
|
2410
|
+
* @internal
|
|
2411
|
+
*/
|
|
2412
|
+
export declare const ConfigurationFilterSensitiveLog: (obj: Configuration) => any;
|
|
2413
|
+
/**
|
|
2414
|
+
* @internal
|
|
2415
|
+
*/
|
|
2416
|
+
export declare const CreateAccessPreviewRequestFilterSensitiveLog: (obj: CreateAccessPreviewRequest) => any;
|
|
2417
|
+
/**
|
|
2418
|
+
* @internal
|
|
2419
|
+
*/
|
|
2420
|
+
export declare const CreateAccessPreviewResponseFilterSensitiveLog: (obj: CreateAccessPreviewResponse) => any;
|
|
2421
|
+
/**
|
|
2422
|
+
* @internal
|
|
2423
|
+
*/
|
|
2424
|
+
export declare const GetAccessPreviewRequestFilterSensitiveLog: (obj: GetAccessPreviewRequest) => any;
|
|
2425
|
+
/**
|
|
2426
|
+
* @internal
|
|
2427
|
+
*/
|
|
2428
|
+
export declare const AccessPreviewStatusReasonFilterSensitiveLog: (obj: AccessPreviewStatusReason) => any;
|
|
2429
|
+
/**
|
|
2430
|
+
* @internal
|
|
2431
|
+
*/
|
|
2432
|
+
export declare const AccessPreviewFilterSensitiveLog: (obj: AccessPreview) => any;
|
|
2433
|
+
/**
|
|
2434
|
+
* @internal
|
|
2435
|
+
*/
|
|
2436
|
+
export declare const GetAccessPreviewResponseFilterSensitiveLog: (obj: GetAccessPreviewResponse) => any;
|
|
2437
|
+
/**
|
|
2438
|
+
* @internal
|
|
2439
|
+
*/
|
|
2440
|
+
export declare const GetAnalyzedResourceRequestFilterSensitiveLog: (obj: GetAnalyzedResourceRequest) => any;
|
|
2441
|
+
/**
|
|
2442
|
+
* @internal
|
|
2443
|
+
*/
|
|
2444
|
+
export declare const AnalyzedResourceFilterSensitiveLog: (obj: AnalyzedResource) => any;
|
|
2445
|
+
/**
|
|
2446
|
+
* @internal
|
|
2447
|
+
*/
|
|
2448
|
+
export declare const GetAnalyzedResourceResponseFilterSensitiveLog: (obj: GetAnalyzedResourceResponse) => any;
|
|
2449
|
+
/**
|
|
2450
|
+
* @internal
|
|
2451
|
+
*/
|
|
2452
|
+
export declare const GetFindingRequestFilterSensitiveLog: (obj: GetFindingRequest) => any;
|
|
2453
|
+
/**
|
|
2454
|
+
* @internal
|
|
2455
|
+
*/
|
|
2456
|
+
export declare const FindingSourceDetailFilterSensitiveLog: (obj: FindingSourceDetail) => any;
|
|
2457
|
+
/**
|
|
2458
|
+
* @internal
|
|
2459
|
+
*/
|
|
2460
|
+
export declare const FindingSourceFilterSensitiveLog: (obj: FindingSource) => any;
|
|
2461
|
+
/**
|
|
2462
|
+
* @internal
|
|
2463
|
+
*/
|
|
2464
|
+
export declare const FindingFilterSensitiveLog: (obj: Finding) => any;
|
|
2465
|
+
/**
|
|
2466
|
+
* @internal
|
|
2467
|
+
*/
|
|
2468
|
+
export declare const GetFindingResponseFilterSensitiveLog: (obj: GetFindingResponse) => any;
|
|
2469
|
+
/**
|
|
2470
|
+
* @internal
|
|
2471
|
+
*/
|
|
2472
|
+
export declare const GetGeneratedPolicyRequestFilterSensitiveLog: (obj: GetGeneratedPolicyRequest) => any;
|
|
2473
|
+
/**
|
|
2474
|
+
* @internal
|
|
2475
|
+
*/
|
|
2476
|
+
export declare const GeneratedPolicyFilterSensitiveLog: (obj: GeneratedPolicy) => any;
|
|
2477
|
+
/**
|
|
2478
|
+
* @internal
|
|
2479
|
+
*/
|
|
2480
|
+
export declare const TrailPropertiesFilterSensitiveLog: (obj: TrailProperties) => any;
|
|
2481
|
+
/**
|
|
2482
|
+
* @internal
|
|
2483
|
+
*/
|
|
2484
|
+
export declare const CloudTrailPropertiesFilterSensitiveLog: (obj: CloudTrailProperties) => any;
|
|
2485
|
+
/**
|
|
2486
|
+
* @internal
|
|
2487
|
+
*/
|
|
2488
|
+
export declare const GeneratedPolicyPropertiesFilterSensitiveLog: (obj: GeneratedPolicyProperties) => any;
|
|
2489
|
+
/**
|
|
2490
|
+
* @internal
|
|
2491
|
+
*/
|
|
2492
|
+
export declare const GeneratedPolicyResultFilterSensitiveLog: (obj: GeneratedPolicyResult) => any;
|
|
2493
|
+
/**
|
|
2494
|
+
* @internal
|
|
2495
|
+
*/
|
|
2496
|
+
export declare const JobErrorFilterSensitiveLog: (obj: JobError) => any;
|
|
2497
|
+
/**
|
|
2498
|
+
* @internal
|
|
2499
|
+
*/
|
|
2500
|
+
export declare const JobDetailsFilterSensitiveLog: (obj: JobDetails) => any;
|
|
2501
|
+
/**
|
|
2502
|
+
* @internal
|
|
2503
|
+
*/
|
|
2504
|
+
export declare const GetGeneratedPolicyResponseFilterSensitiveLog: (obj: GetGeneratedPolicyResponse) => any;
|
|
2505
|
+
/**
|
|
2506
|
+
* @internal
|
|
2507
|
+
*/
|
|
2508
|
+
export declare const ListAccessPreviewFindingsRequestFilterSensitiveLog: (obj: ListAccessPreviewFindingsRequest) => any;
|
|
2509
|
+
/**
|
|
2510
|
+
* @internal
|
|
2511
|
+
*/
|
|
2512
|
+
export declare const AccessPreviewFindingFilterSensitiveLog: (obj: AccessPreviewFinding) => any;
|
|
2513
|
+
/**
|
|
2514
|
+
* @internal
|
|
2515
|
+
*/
|
|
2516
|
+
export declare const ListAccessPreviewFindingsResponseFilterSensitiveLog: (obj: ListAccessPreviewFindingsResponse) => any;
|
|
2517
|
+
/**
|
|
2518
|
+
* @internal
|
|
2519
|
+
*/
|
|
2520
|
+
export declare const ListAccessPreviewsRequestFilterSensitiveLog: (obj: ListAccessPreviewsRequest) => any;
|
|
2521
|
+
/**
|
|
2522
|
+
* @internal
|
|
2523
|
+
*/
|
|
2524
|
+
export declare const AccessPreviewSummaryFilterSensitiveLog: (obj: AccessPreviewSummary) => any;
|
|
2525
|
+
/**
|
|
2526
|
+
* @internal
|
|
2527
|
+
*/
|
|
2528
|
+
export declare const ListAccessPreviewsResponseFilterSensitiveLog: (obj: ListAccessPreviewsResponse) => any;
|
|
2529
|
+
/**
|
|
2530
|
+
* @internal
|
|
2531
|
+
*/
|
|
2532
|
+
export declare const ListAnalyzedResourcesRequestFilterSensitiveLog: (obj: ListAnalyzedResourcesRequest) => any;
|
|
2533
|
+
/**
|
|
2534
|
+
* @internal
|
|
2535
|
+
*/
|
|
2536
|
+
export declare const AnalyzedResourceSummaryFilterSensitiveLog: (obj: AnalyzedResourceSummary) => any;
|
|
2537
|
+
/**
|
|
2538
|
+
* @internal
|
|
2539
|
+
*/
|
|
2540
|
+
export declare const ListAnalyzedResourcesResponseFilterSensitiveLog: (obj: ListAnalyzedResourcesResponse) => any;
|
|
2541
|
+
/**
|
|
2542
|
+
* @internal
|
|
2543
|
+
*/
|
|
2544
|
+
export declare const SortCriteriaFilterSensitiveLog: (obj: SortCriteria) => any;
|
|
2545
|
+
/**
|
|
2546
|
+
* @internal
|
|
2547
|
+
*/
|
|
2548
|
+
export declare const ListFindingsRequestFilterSensitiveLog: (obj: ListFindingsRequest) => any;
|
|
2549
|
+
/**
|
|
2550
|
+
* @internal
|
|
2551
|
+
*/
|
|
2552
|
+
export declare const FindingSummaryFilterSensitiveLog: (obj: FindingSummary) => any;
|
|
2553
|
+
/**
|
|
2554
|
+
* @internal
|
|
2555
|
+
*/
|
|
2556
|
+
export declare const ListFindingsResponseFilterSensitiveLog: (obj: ListFindingsResponse) => any;
|
|
2557
|
+
/**
|
|
2558
|
+
* @internal
|
|
2559
|
+
*/
|
|
2560
|
+
export declare const ListPolicyGenerationsRequestFilterSensitiveLog: (obj: ListPolicyGenerationsRequest) => any;
|
|
2561
|
+
/**
|
|
2562
|
+
* @internal
|
|
2563
|
+
*/
|
|
2564
|
+
export declare const PolicyGenerationFilterSensitiveLog: (obj: PolicyGeneration) => any;
|
|
2565
|
+
/**
|
|
2566
|
+
* @internal
|
|
2567
|
+
*/
|
|
2568
|
+
export declare const ListPolicyGenerationsResponseFilterSensitiveLog: (obj: ListPolicyGenerationsResponse) => any;
|
|
2569
|
+
/**
|
|
2570
|
+
* @internal
|
|
2571
|
+
*/
|
|
2572
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
2573
|
+
/**
|
|
2574
|
+
* @internal
|
|
2575
|
+
*/
|
|
2576
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
2577
|
+
/**
|
|
2578
|
+
* @internal
|
|
2579
|
+
*/
|
|
2580
|
+
export declare const TrailFilterSensitiveLog: (obj: Trail) => any;
|
|
2581
|
+
/**
|
|
2582
|
+
* @internal
|
|
2583
|
+
*/
|
|
2584
|
+
export declare const CloudTrailDetailsFilterSensitiveLog: (obj: CloudTrailDetails) => any;
|
|
2585
|
+
/**
|
|
2586
|
+
* @internal
|
|
2587
|
+
*/
|
|
2588
|
+
export declare const PolicyGenerationDetailsFilterSensitiveLog: (obj: PolicyGenerationDetails) => any;
|
|
2589
|
+
/**
|
|
2590
|
+
* @internal
|
|
2591
|
+
*/
|
|
2592
|
+
export declare const StartPolicyGenerationRequestFilterSensitiveLog: (obj: StartPolicyGenerationRequest) => any;
|
|
2593
|
+
/**
|
|
2594
|
+
* @internal
|
|
2595
|
+
*/
|
|
2596
|
+
export declare const StartPolicyGenerationResponseFilterSensitiveLog: (obj: StartPolicyGenerationResponse) => any;
|
|
2597
|
+
/**
|
|
2598
|
+
* @internal
|
|
2599
|
+
*/
|
|
2600
|
+
export declare const StartResourceScanRequestFilterSensitiveLog: (obj: StartResourceScanRequest) => any;
|
|
2601
|
+
/**
|
|
2602
|
+
* @internal
|
|
2603
|
+
*/
|
|
2604
|
+
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
2605
|
+
/**
|
|
2606
|
+
* @internal
|
|
2607
|
+
*/
|
|
2608
|
+
export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
2609
|
+
/**
|
|
2610
|
+
* @internal
|
|
2611
|
+
*/
|
|
2612
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
2613
|
+
/**
|
|
2614
|
+
* @internal
|
|
2615
|
+
*/
|
|
2616
|
+
export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
2617
|
+
/**
|
|
2618
|
+
* @internal
|
|
2619
|
+
*/
|
|
2620
|
+
export declare const UpdateFindingsRequestFilterSensitiveLog: (obj: UpdateFindingsRequest) => any;
|
|
2621
|
+
/**
|
|
2622
|
+
* @internal
|
|
2623
|
+
*/
|
|
2624
|
+
export declare const ValidatePolicyRequestFilterSensitiveLog: (obj: ValidatePolicyRequest) => any;
|
|
2625
|
+
/**
|
|
2626
|
+
* @internal
|
|
2627
|
+
*/
|
|
2628
|
+
export declare const SubstringFilterSensitiveLog: (obj: Substring) => any;
|
|
2629
|
+
/**
|
|
2630
|
+
* @internal
|
|
2631
|
+
*/
|
|
2632
|
+
export declare const PathElementFilterSensitiveLog: (obj: PathElement) => any;
|
|
2633
|
+
/**
|
|
2634
|
+
* @internal
|
|
2635
|
+
*/
|
|
2636
|
+
export declare const PositionFilterSensitiveLog: (obj: Position) => any;
|
|
2637
|
+
/**
|
|
2638
|
+
* @internal
|
|
2639
|
+
*/
|
|
2640
|
+
export declare const SpanFilterSensitiveLog: (obj: Span) => any;
|
|
2641
|
+
/**
|
|
2642
|
+
* @internal
|
|
2643
|
+
*/
|
|
2644
|
+
export declare const LocationFilterSensitiveLog: (obj: Location) => any;
|
|
2645
|
+
/**
|
|
2646
|
+
* @internal
|
|
2647
|
+
*/
|
|
2648
|
+
export declare const ValidatePolicyFindingFilterSensitiveLog: (obj: ValidatePolicyFinding) => any;
|
|
2649
|
+
/**
|
|
2650
|
+
* @internal
|
|
2651
|
+
*/
|
|
2652
|
+
export declare const ValidatePolicyResponseFilterSensitiveLog: (obj: ValidatePolicyResponse) => any;
|