@aws-sdk/client-accessanalyzer 3.130.0 → 3.141.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.
Files changed (63) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/README.md +1 -1
  3. package/dist-cjs/commands/ApplyArchiveRuleCommand.js +1 -1
  4. package/dist-cjs/commands/CancelPolicyGenerationCommand.js +2 -2
  5. package/dist-cjs/commands/CreateAccessPreviewCommand.js +2 -2
  6. package/dist-cjs/commands/CreateAnalyzerCommand.js +2 -2
  7. package/dist-cjs/commands/CreateArchiveRuleCommand.js +1 -1
  8. package/dist-cjs/commands/DeleteAnalyzerCommand.js +1 -1
  9. package/dist-cjs/commands/DeleteArchiveRuleCommand.js +1 -1
  10. package/dist-cjs/commands/GetAccessPreviewCommand.js +2 -2
  11. package/dist-cjs/commands/GetAnalyzedResourceCommand.js +2 -2
  12. package/dist-cjs/commands/GetAnalyzerCommand.js +2 -2
  13. package/dist-cjs/commands/GetArchiveRuleCommand.js +2 -2
  14. package/dist-cjs/commands/GetFindingCommand.js +2 -2
  15. package/dist-cjs/commands/GetGeneratedPolicyCommand.js +2 -2
  16. package/dist-cjs/commands/ListAccessPreviewFindingsCommand.js +2 -2
  17. package/dist-cjs/commands/ListAccessPreviewsCommand.js +2 -2
  18. package/dist-cjs/commands/ListAnalyzedResourcesCommand.js +2 -2
  19. package/dist-cjs/commands/ListAnalyzersCommand.js +2 -2
  20. package/dist-cjs/commands/ListArchiveRulesCommand.js +2 -2
  21. package/dist-cjs/commands/ListFindingsCommand.js +2 -2
  22. package/dist-cjs/commands/ListPolicyGenerationsCommand.js +2 -2
  23. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
  24. package/dist-cjs/commands/StartPolicyGenerationCommand.js +2 -2
  25. package/dist-cjs/commands/StartResourceScanCommand.js +1 -1
  26. package/dist-cjs/commands/TagResourceCommand.js +2 -2
  27. package/dist-cjs/commands/UntagResourceCommand.js +2 -2
  28. package/dist-cjs/commands/UpdateArchiveRuleCommand.js +1 -1
  29. package/dist-cjs/commands/UpdateFindingsCommand.js +1 -1
  30. package/dist-cjs/commands/ValidatePolicyCommand.js +2 -2
  31. package/dist-cjs/models/models_0.js +451 -635
  32. package/dist-es/commands/ApplyArchiveRuleCommand.js +2 -2
  33. package/dist-es/commands/CancelPolicyGenerationCommand.js +3 -3
  34. package/dist-es/commands/CreateAccessPreviewCommand.js +3 -3
  35. package/dist-es/commands/CreateAnalyzerCommand.js +3 -3
  36. package/dist-es/commands/CreateArchiveRuleCommand.js +2 -2
  37. package/dist-es/commands/DeleteAnalyzerCommand.js +2 -2
  38. package/dist-es/commands/DeleteArchiveRuleCommand.js +2 -2
  39. package/dist-es/commands/GetAccessPreviewCommand.js +3 -3
  40. package/dist-es/commands/GetAnalyzedResourceCommand.js +3 -3
  41. package/dist-es/commands/GetAnalyzerCommand.js +3 -3
  42. package/dist-es/commands/GetArchiveRuleCommand.js +3 -3
  43. package/dist-es/commands/GetFindingCommand.js +3 -3
  44. package/dist-es/commands/GetGeneratedPolicyCommand.js +3 -3
  45. package/dist-es/commands/ListAccessPreviewFindingsCommand.js +3 -3
  46. package/dist-es/commands/ListAccessPreviewsCommand.js +3 -3
  47. package/dist-es/commands/ListAnalyzedResourcesCommand.js +3 -3
  48. package/dist-es/commands/ListAnalyzersCommand.js +3 -3
  49. package/dist-es/commands/ListArchiveRulesCommand.js +3 -3
  50. package/dist-es/commands/ListFindingsCommand.js +3 -3
  51. package/dist-es/commands/ListPolicyGenerationsCommand.js +3 -3
  52. package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
  53. package/dist-es/commands/StartPolicyGenerationCommand.js +3 -3
  54. package/dist-es/commands/StartResourceScanCommand.js +2 -2
  55. package/dist-es/commands/TagResourceCommand.js +3 -3
  56. package/dist-es/commands/UntagResourceCommand.js +3 -3
  57. package/dist-es/commands/UpdateArchiveRuleCommand.js +2 -2
  58. package/dist-es/commands/UpdateFindingsCommand.js +2 -2
  59. package/dist-es/commands/ValidatePolicyCommand.js +3 -3
  60. package/dist-es/models/models_0.js +160 -442
  61. package/dist-types/models/models_0.d.ts +392 -580
  62. package/dist-types/ts3.4/models/models_0.d.ts +196 -384
  63. package/package.json +7 -7
@@ -29,10 +29,6 @@ export interface Criterion {
29
29
 
30
30
  exists?: boolean;
31
31
  }
32
- export declare namespace Criterion {
33
-
34
- const filterSensitiveLog: (obj: Criterion) => any;
35
- }
36
32
 
37
33
  export interface CreateArchiveRuleRequest {
38
34
 
@@ -44,10 +40,6 @@ export interface CreateArchiveRuleRequest {
44
40
 
45
41
  clientToken?: string;
46
42
  }
47
- export declare namespace CreateArchiveRuleRequest {
48
-
49
- const filterSensitiveLog: (obj: CreateArchiveRuleRequest) => any;
50
- }
51
43
 
52
44
  export declare class InternalServerException extends __BaseException {
53
45
  readonly name: "InternalServerException";
@@ -99,10 +91,6 @@ export interface ValidationExceptionField {
99
91
 
100
92
  message: string | undefined;
101
93
  }
102
- export declare namespace ValidationExceptionField {
103
-
104
- const filterSensitiveLog: (obj: ValidationExceptionField) => any;
105
- }
106
94
  export declare enum ValidationExceptionReason {
107
95
  CANNOT_PARSE = "cannotParse",
108
96
  FIELD_VALIDATION_FAILED = "fieldValidationFailed",
@@ -129,10 +117,6 @@ export interface DeleteArchiveRuleRequest {
129
117
 
130
118
  clientToken?: string;
131
119
  }
132
- export declare namespace DeleteArchiveRuleRequest {
133
-
134
- const filterSensitiveLog: (obj: DeleteArchiveRuleRequest) => any;
135
- }
136
120
 
137
121
  export interface GetArchiveRuleRequest {
138
122
 
@@ -140,10 +124,6 @@ export interface GetArchiveRuleRequest {
140
124
 
141
125
  ruleName: string | undefined;
142
126
  }
143
- export declare namespace GetArchiveRuleRequest {
144
-
145
- const filterSensitiveLog: (obj: GetArchiveRuleRequest) => any;
146
- }
147
127
 
148
128
  export interface ArchiveRuleSummary {
149
129
 
@@ -155,19 +135,11 @@ export interface ArchiveRuleSummary {
155
135
 
156
136
  updatedAt: Date | undefined;
157
137
  }
158
- export declare namespace ArchiveRuleSummary {
159
-
160
- const filterSensitiveLog: (obj: ArchiveRuleSummary) => any;
161
- }
162
138
 
163
139
  export interface GetArchiveRuleResponse {
164
140
 
165
141
  archiveRule: ArchiveRuleSummary | undefined;
166
142
  }
167
- export declare namespace GetArchiveRuleResponse {
168
-
169
- const filterSensitiveLog: (obj: GetArchiveRuleResponse) => any;
170
- }
171
143
 
172
144
  export interface ListArchiveRulesRequest {
173
145
 
@@ -177,10 +149,6 @@ export interface ListArchiveRulesRequest {
177
149
 
178
150
  maxResults?: number;
179
151
  }
180
- export declare namespace ListArchiveRulesRequest {
181
-
182
- const filterSensitiveLog: (obj: ListArchiveRulesRequest) => any;
183
- }
184
152
 
185
153
  export interface ListArchiveRulesResponse {
186
154
 
@@ -188,10 +156,6 @@ export interface ListArchiveRulesResponse {
188
156
 
189
157
  nextToken?: string;
190
158
  }
191
- export declare namespace ListArchiveRulesResponse {
192
-
193
- const filterSensitiveLog: (obj: ListArchiveRulesResponse) => any;
194
- }
195
159
 
196
160
  export interface UpdateArchiveRuleRequest {
197
161
 
@@ -203,10 +167,6 @@ export interface UpdateArchiveRuleRequest {
203
167
 
204
168
  clientToken?: string;
205
169
  }
206
- export declare namespace UpdateArchiveRuleRequest {
207
-
208
- const filterSensitiveLog: (obj: UpdateArchiveRuleRequest) => any;
209
- }
210
170
 
211
171
  export interface InlineArchiveRule {
212
172
 
@@ -214,10 +174,6 @@ export interface InlineArchiveRule {
214
174
 
215
175
  filter: Record<string, Criterion> | undefined;
216
176
  }
217
- export declare namespace InlineArchiveRule {
218
-
219
- const filterSensitiveLog: (obj: InlineArchiveRule) => any;
220
- }
221
177
  export declare type Type = "ACCOUNT" | "ORGANIZATION";
222
178
 
223
179
  export interface CreateAnalyzerRequest {
@@ -232,19 +188,11 @@ export interface CreateAnalyzerRequest {
232
188
 
233
189
  clientToken?: string;
234
190
  }
235
- export declare namespace CreateAnalyzerRequest {
236
-
237
- const filterSensitiveLog: (obj: CreateAnalyzerRequest) => any;
238
- }
239
191
 
240
192
  export interface CreateAnalyzerResponse {
241
193
 
242
194
  arn?: string;
243
195
  }
244
- export declare namespace CreateAnalyzerResponse {
245
-
246
- const filterSensitiveLog: (obj: CreateAnalyzerResponse) => any;
247
- }
248
196
 
249
197
  export interface DeleteAnalyzerRequest {
250
198
 
@@ -252,19 +200,11 @@ export interface DeleteAnalyzerRequest {
252
200
 
253
201
  clientToken?: string;
254
202
  }
255
- export declare namespace DeleteAnalyzerRequest {
256
-
257
- const filterSensitiveLog: (obj: DeleteAnalyzerRequest) => any;
258
- }
259
203
 
260
204
  export interface GetAnalyzerRequest {
261
205
 
262
206
  analyzerName: string | undefined;
263
207
  }
264
- export declare namespace GetAnalyzerRequest {
265
-
266
- const filterSensitiveLog: (obj: GetAnalyzerRequest) => any;
267
- }
268
208
  export declare type AnalyzerStatus = "ACTIVE" | "CREATING" | "DISABLED" | "FAILED";
269
209
  export declare type ReasonCode = "AWS_SERVICE_ACCESS_DISABLED" | "DELEGATED_ADMINISTRATOR_DEREGISTERED" | "ORGANIZATION_DELETED" | "SERVICE_LINKED_ROLE_CREATION_FAILED";
270
210
 
@@ -272,10 +212,6 @@ export interface StatusReason {
272
212
 
273
213
  code: ReasonCode | string | undefined;
274
214
  }
275
- export declare namespace StatusReason {
276
-
277
- const filterSensitiveLog: (obj: StatusReason) => any;
278
- }
279
215
 
280
216
  export interface AnalyzerSummary {
281
217
 
@@ -297,19 +233,11 @@ export interface AnalyzerSummary {
297
233
 
298
234
  statusReason?: StatusReason;
299
235
  }
300
- export declare namespace AnalyzerSummary {
301
-
302
- const filterSensitiveLog: (obj: AnalyzerSummary) => any;
303
- }
304
236
 
305
237
  export interface GetAnalyzerResponse {
306
238
 
307
239
  analyzer: AnalyzerSummary | undefined;
308
240
  }
309
- export declare namespace GetAnalyzerResponse {
310
-
311
- const filterSensitiveLog: (obj: GetAnalyzerResponse) => any;
312
- }
313
241
 
314
242
  export interface ListAnalyzersRequest {
315
243
 
@@ -319,10 +247,6 @@ export interface ListAnalyzersRequest {
319
247
 
320
248
  type?: Type | string;
321
249
  }
322
- export declare namespace ListAnalyzersRequest {
323
-
324
- const filterSensitiveLog: (obj: ListAnalyzersRequest) => any;
325
- }
326
250
 
327
251
  export interface ListAnalyzersResponse {
328
252
 
@@ -330,10 +254,6 @@ export interface ListAnalyzersResponse {
330
254
 
331
255
  nextToken?: string;
332
256
  }
333
- export declare namespace ListAnalyzersResponse {
334
-
335
- const filterSensitiveLog: (obj: ListAnalyzersResponse) => any;
336
- }
337
257
 
338
258
  export interface ApplyArchiveRuleRequest {
339
259
 
@@ -343,33 +263,17 @@ export interface ApplyArchiveRuleRequest {
343
263
 
344
264
  clientToken?: string;
345
265
  }
346
- export declare namespace ApplyArchiveRuleRequest {
347
-
348
- const filterSensitiveLog: (obj: ApplyArchiveRuleRequest) => any;
349
- }
350
266
  export interface CancelPolicyGenerationRequest {
351
267
 
352
268
  jobId: string | undefined;
353
269
  }
354
- export declare namespace CancelPolicyGenerationRequest {
355
-
356
- const filterSensitiveLog: (obj: CancelPolicyGenerationRequest) => any;
357
- }
358
270
  export interface CancelPolicyGenerationResponse {
359
271
  }
360
- export declare namespace CancelPolicyGenerationResponse {
361
-
362
- const filterSensitiveLog: (obj: CancelPolicyGenerationResponse) => any;
363
- }
364
272
 
365
273
  export interface IamRoleConfiguration {
366
274
 
367
275
  trustPolicy?: string;
368
276
  }
369
- export declare namespace IamRoleConfiguration {
370
-
371
- const filterSensitiveLog: (obj: IamRoleConfiguration) => any;
372
- }
373
277
 
374
278
  export interface KmsGrantConstraints {
375
279
 
@@ -377,10 +281,6 @@ export interface KmsGrantConstraints {
377
281
 
378
282
  encryptionContextSubset?: Record<string, string>;
379
283
  }
380
- export declare namespace KmsGrantConstraints {
381
-
382
- const filterSensitiveLog: (obj: KmsGrantConstraints) => any;
383
- }
384
284
  export declare enum KmsGrantOperation {
385
285
  CREATE_GRANT = "CreateGrant",
386
286
  DECRYPT = "Decrypt",
@@ -410,10 +310,6 @@ export interface KmsGrantConfiguration {
410
310
 
411
311
  issuingAccount: string | undefined;
412
312
  }
413
- export declare namespace KmsGrantConfiguration {
414
-
415
- const filterSensitiveLog: (obj: KmsGrantConfiguration) => any;
416
- }
417
313
 
418
314
  export interface KmsKeyConfiguration {
419
315
 
@@ -421,26 +317,14 @@ export interface KmsKeyConfiguration {
421
317
 
422
318
  grants?: KmsGrantConfiguration[];
423
319
  }
424
- export declare namespace KmsKeyConfiguration {
425
-
426
- const filterSensitiveLog: (obj: KmsKeyConfiguration) => any;
427
- }
428
320
 
429
321
  export interface InternetConfiguration {
430
322
  }
431
- export declare namespace InternetConfiguration {
432
-
433
- const filterSensitiveLog: (obj: InternetConfiguration) => any;
434
- }
435
323
 
436
324
  export interface VpcConfiguration {
437
325
 
438
326
  vpcId: string | undefined;
439
327
  }
440
- export declare namespace VpcConfiguration {
441
-
442
- const filterSensitiveLog: (obj: VpcConfiguration) => any;
443
- }
444
328
 
445
329
  export declare type NetworkOriginConfiguration = NetworkOriginConfiguration.InternetConfigurationMember | NetworkOriginConfiguration.VpcConfigurationMember | NetworkOriginConfiguration.$UnknownMember;
446
330
  export declare namespace NetworkOriginConfiguration {
@@ -470,8 +354,6 @@ export declare namespace NetworkOriginConfiguration {
470
354
  _: (name: string, value: any) => T;
471
355
  }
472
356
  const visit: <T>(value: NetworkOriginConfiguration, visitor: Visitor<T>) => T;
473
-
474
- const filterSensitiveLog: (obj: NetworkOriginConfiguration) => any;
475
357
  }
476
358
 
477
359
  export interface S3PublicAccessBlockConfiguration {
@@ -480,10 +362,6 @@ export interface S3PublicAccessBlockConfiguration {
480
362
 
481
363
  restrictPublicBuckets: boolean | undefined;
482
364
  }
483
- export declare namespace S3PublicAccessBlockConfiguration {
484
-
485
- const filterSensitiveLog: (obj: S3PublicAccessBlockConfiguration) => any;
486
- }
487
365
 
488
366
  export interface S3AccessPointConfiguration {
489
367
 
@@ -493,10 +371,6 @@ export interface S3AccessPointConfiguration {
493
371
 
494
372
  networkOrigin?: NetworkOriginConfiguration;
495
373
  }
496
- export declare namespace S3AccessPointConfiguration {
497
-
498
- const filterSensitiveLog: (obj: S3AccessPointConfiguration) => any;
499
- }
500
374
 
501
375
  export declare type AclGrantee = AclGrantee.IdMember | AclGrantee.UriMember | AclGrantee.$UnknownMember;
502
376
  export declare namespace AclGrantee {
@@ -526,8 +400,6 @@ export declare namespace AclGrantee {
526
400
  _: (name: string, value: any) => T;
527
401
  }
528
402
  const visit: <T>(value: AclGrantee, visitor: Visitor<T>) => T;
529
-
530
- const filterSensitiveLog: (obj: AclGrantee) => any;
531
403
  }
532
404
  export declare enum AclPermission {
533
405
  FULL_CONTROL = "FULL_CONTROL",
@@ -543,10 +415,6 @@ export interface S3BucketAclGrantConfiguration {
543
415
 
544
416
  grantee: AclGrantee | undefined;
545
417
  }
546
- export declare namespace S3BucketAclGrantConfiguration {
547
-
548
- const filterSensitiveLog: (obj: S3BucketAclGrantConfiguration) => any;
549
- }
550
418
 
551
419
  export interface S3BucketConfiguration {
552
420
 
@@ -558,10 +426,6 @@ export interface S3BucketConfiguration {
558
426
 
559
427
  accessPoints?: Record<string, S3AccessPointConfiguration>;
560
428
  }
561
- export declare namespace S3BucketConfiguration {
562
-
563
- const filterSensitiveLog: (obj: S3BucketConfiguration) => any;
564
- }
565
429
 
566
430
  export interface SecretsManagerSecretConfiguration {
567
431
 
@@ -569,19 +433,11 @@ export interface SecretsManagerSecretConfiguration {
569
433
 
570
434
  secretPolicy?: string;
571
435
  }
572
- export declare namespace SecretsManagerSecretConfiguration {
573
-
574
- const filterSensitiveLog: (obj: SecretsManagerSecretConfiguration) => any;
575
- }
576
436
 
577
437
  export interface SqsQueueConfiguration {
578
438
 
579
439
  queuePolicy?: string;
580
440
  }
581
- export declare namespace SqsQueueConfiguration {
582
-
583
- const filterSensitiveLog: (obj: SqsQueueConfiguration) => any;
584
- }
585
441
 
586
442
  export declare type Configuration = Configuration.IamRoleMember | Configuration.KmsKeyMember | Configuration.S3BucketMember | Configuration.SecretsManagerSecretMember | Configuration.SqsQueueMember | Configuration.$UnknownMember;
587
443
  export declare namespace Configuration {
@@ -650,8 +506,6 @@ export declare namespace Configuration {
650
506
  _: (name: string, value: any) => T;
651
507
  }
652
508
  const visit: <T>(value: Configuration, visitor: Visitor<T>) => T;
653
-
654
- const filterSensitiveLog: (obj: Configuration) => any;
655
509
  }
656
510
  export interface CreateAccessPreviewRequest {
657
511
 
@@ -661,28 +515,16 @@ export interface CreateAccessPreviewRequest {
661
515
 
662
516
  clientToken?: string;
663
517
  }
664
- export declare namespace CreateAccessPreviewRequest {
665
-
666
- const filterSensitiveLog: (obj: CreateAccessPreviewRequest) => any;
667
- }
668
518
  export interface CreateAccessPreviewResponse {
669
519
 
670
520
  id: string | undefined;
671
521
  }
672
- export declare namespace CreateAccessPreviewResponse {
673
-
674
- const filterSensitiveLog: (obj: CreateAccessPreviewResponse) => any;
675
- }
676
522
  export interface GetAccessPreviewRequest {
677
523
 
678
524
  accessPreviewId: string | undefined;
679
525
 
680
526
  analyzerArn: string | undefined;
681
527
  }
682
- export declare namespace GetAccessPreviewRequest {
683
-
684
- const filterSensitiveLog: (obj: GetAccessPreviewRequest) => any;
685
- }
686
528
  export declare enum AccessPreviewStatus {
687
529
  COMPLETED = "COMPLETED",
688
530
  CREATING = "CREATING",
@@ -697,10 +539,6 @@ export interface AccessPreviewStatusReason {
697
539
 
698
540
  code: AccessPreviewStatusReasonCode | string | undefined;
699
541
  }
700
- export declare namespace AccessPreviewStatusReason {
701
-
702
- const filterSensitiveLog: (obj: AccessPreviewStatusReason) => any;
703
- }
704
542
 
705
543
  export interface AccessPreview {
706
544
 
@@ -716,18 +554,10 @@ export interface AccessPreview {
716
554
 
717
555
  statusReason?: AccessPreviewStatusReason;
718
556
  }
719
- export declare namespace AccessPreview {
720
-
721
- const filterSensitiveLog: (obj: AccessPreview) => any;
722
- }
723
557
  export interface GetAccessPreviewResponse {
724
558
 
725
559
  accessPreview: AccessPreview | undefined;
726
560
  }
727
- export declare namespace GetAccessPreviewResponse {
728
-
729
- const filterSensitiveLog: (obj: GetAccessPreviewResponse) => any;
730
- }
731
561
 
732
562
  export interface GetAnalyzedResourceRequest {
733
563
 
@@ -735,10 +565,6 @@ export interface GetAnalyzedResourceRequest {
735
565
 
736
566
  resourceArn: string | undefined;
737
567
  }
738
- export declare namespace GetAnalyzedResourceRequest {
739
-
740
- const filterSensitiveLog: (obj: GetAnalyzedResourceRequest) => any;
741
- }
742
568
  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";
743
569
  export declare type FindingStatus = "ACTIVE" | "ARCHIVED" | "RESOLVED";
744
570
 
@@ -766,19 +592,11 @@ export interface AnalyzedResource {
766
592
 
767
593
  error?: string;
768
594
  }
769
- export declare namespace AnalyzedResource {
770
-
771
- const filterSensitiveLog: (obj: AnalyzedResource) => any;
772
- }
773
595
 
774
596
  export interface GetAnalyzedResourceResponse {
775
597
 
776
598
  resource?: AnalyzedResource;
777
599
  }
778
- export declare namespace GetAnalyzedResourceResponse {
779
-
780
- const filterSensitiveLog: (obj: GetAnalyzedResourceResponse) => any;
781
- }
782
600
 
783
601
  export interface GetFindingRequest {
784
602
 
@@ -786,19 +604,11 @@ export interface GetFindingRequest {
786
604
 
787
605
  id: string | undefined;
788
606
  }
789
- export declare namespace GetFindingRequest {
790
-
791
- const filterSensitiveLog: (obj: GetFindingRequest) => any;
792
- }
793
607
 
794
608
  export interface FindingSourceDetail {
795
609
 
796
610
  accessPointArn?: string;
797
611
  }
798
- export declare namespace FindingSourceDetail {
799
-
800
- const filterSensitiveLog: (obj: FindingSourceDetail) => any;
801
- }
802
612
  export declare type FindingSourceType = "BUCKET_ACL" | "POLICY" | "S3_ACCESS_POINT";
803
613
 
804
614
  export interface FindingSource {
@@ -807,10 +617,6 @@ export interface FindingSource {
807
617
 
808
618
  detail?: FindingSourceDetail;
809
619
  }
810
- export declare namespace FindingSource {
811
-
812
- const filterSensitiveLog: (obj: FindingSource) => any;
813
- }
814
620
 
815
621
  export interface Finding {
816
622
 
@@ -842,19 +648,11 @@ export interface Finding {
842
648
 
843
649
  sources?: FindingSource[];
844
650
  }
845
- export declare namespace Finding {
846
-
847
- const filterSensitiveLog: (obj: Finding) => any;
848
- }
849
651
 
850
652
  export interface GetFindingResponse {
851
653
 
852
654
  finding?: Finding;
853
655
  }
854
- export declare namespace GetFindingResponse {
855
-
856
- const filterSensitiveLog: (obj: GetFindingResponse) => any;
857
- }
858
656
  export interface GetGeneratedPolicyRequest {
859
657
 
860
658
  jobId: string | undefined;
@@ -863,19 +661,11 @@ export interface GetGeneratedPolicyRequest {
863
661
 
864
662
  includeServiceLevelTemplate?: boolean;
865
663
  }
866
- export declare namespace GetGeneratedPolicyRequest {
867
-
868
- const filterSensitiveLog: (obj: GetGeneratedPolicyRequest) => any;
869
- }
870
664
 
871
665
  export interface GeneratedPolicy {
872
666
 
873
667
  policy: string | undefined;
874
668
  }
875
- export declare namespace GeneratedPolicy {
876
-
877
- const filterSensitiveLog: (obj: GeneratedPolicy) => any;
878
- }
879
669
 
880
670
  export interface TrailProperties {
881
671
 
@@ -885,10 +675,6 @@ export interface TrailProperties {
885
675
 
886
676
  allRegions?: boolean;
887
677
  }
888
- export declare namespace TrailProperties {
889
-
890
- const filterSensitiveLog: (obj: TrailProperties) => any;
891
- }
892
678
 
893
679
  export interface CloudTrailProperties {
894
680
 
@@ -898,10 +684,6 @@ export interface CloudTrailProperties {
898
684
 
899
685
  endTime: Date | undefined;
900
686
  }
901
- export declare namespace CloudTrailProperties {
902
-
903
- const filterSensitiveLog: (obj: CloudTrailProperties) => any;
904
- }
905
687
 
906
688
  export interface GeneratedPolicyProperties {
907
689
 
@@ -911,10 +693,6 @@ export interface GeneratedPolicyProperties {
911
693
 
912
694
  cloudTrailProperties?: CloudTrailProperties;
913
695
  }
914
- export declare namespace GeneratedPolicyProperties {
915
-
916
- const filterSensitiveLog: (obj: GeneratedPolicyProperties) => any;
917
- }
918
696
 
919
697
  export interface GeneratedPolicyResult {
920
698
 
@@ -922,10 +700,6 @@ export interface GeneratedPolicyResult {
922
700
 
923
701
  generatedPolicies?: GeneratedPolicy[];
924
702
  }
925
- export declare namespace GeneratedPolicyResult {
926
-
927
- const filterSensitiveLog: (obj: GeneratedPolicyResult) => any;
928
- }
929
703
  export declare enum JobErrorCode {
930
704
  AUTHORIZATION_ERROR = "AUTHORIZATION_ERROR",
931
705
  RESOURCE_NOT_FOUND_ERROR = "RESOURCE_NOT_FOUND_ERROR",
@@ -939,10 +713,6 @@ export interface JobError {
939
713
 
940
714
  message: string | undefined;
941
715
  }
942
- export declare namespace JobError {
943
-
944
- const filterSensitiveLog: (obj: JobError) => any;
945
- }
946
716
  export declare enum JobStatus {
947
717
  CANCELED = "CANCELED",
948
718
  FAILED = "FAILED",
@@ -962,20 +732,12 @@ export interface JobDetails {
962
732
 
963
733
  jobError?: JobError;
964
734
  }
965
- export declare namespace JobDetails {
966
-
967
- const filterSensitiveLog: (obj: JobDetails) => any;
968
- }
969
735
  export interface GetGeneratedPolicyResponse {
970
736
 
971
737
  jobDetails: JobDetails | undefined;
972
738
 
973
739
  generatedPolicyResult: GeneratedPolicyResult | undefined;
974
740
  }
975
- export declare namespace GetGeneratedPolicyResponse {
976
-
977
- const filterSensitiveLog: (obj: GetGeneratedPolicyResponse) => any;
978
- }
979
741
  export interface ListAccessPreviewFindingsRequest {
980
742
 
981
743
  accessPreviewId: string | undefined;
@@ -988,10 +750,6 @@ export interface ListAccessPreviewFindingsRequest {
988
750
 
989
751
  maxResults?: number;
990
752
  }
991
- export declare namespace ListAccessPreviewFindingsRequest {
992
-
993
- const filterSensitiveLog: (obj: ListAccessPreviewFindingsRequest) => any;
994
- }
995
753
  export declare enum FindingChangeType {
996
754
  CHANGED = "CHANGED",
997
755
  NEW = "NEW",
@@ -1030,20 +788,12 @@ export interface AccessPreviewFinding {
1030
788
 
1031
789
  sources?: FindingSource[];
1032
790
  }
1033
- export declare namespace AccessPreviewFinding {
1034
-
1035
- const filterSensitiveLog: (obj: AccessPreviewFinding) => any;
1036
- }
1037
791
  export interface ListAccessPreviewFindingsResponse {
1038
792
 
1039
793
  findings: AccessPreviewFinding[] | undefined;
1040
794
 
1041
795
  nextToken?: string;
1042
796
  }
1043
- export declare namespace ListAccessPreviewFindingsResponse {
1044
-
1045
- const filterSensitiveLog: (obj: ListAccessPreviewFindingsResponse) => any;
1046
- }
1047
797
  export interface ListAccessPreviewsRequest {
1048
798
 
1049
799
  analyzerArn: string | undefined;
@@ -1052,10 +802,6 @@ export interface ListAccessPreviewsRequest {
1052
802
 
1053
803
  maxResults?: number;
1054
804
  }
1055
- export declare namespace ListAccessPreviewsRequest {
1056
-
1057
- const filterSensitiveLog: (obj: ListAccessPreviewsRequest) => any;
1058
- }
1059
805
 
1060
806
  export interface AccessPreviewSummary {
1061
807
 
@@ -1069,20 +815,12 @@ export interface AccessPreviewSummary {
1069
815
 
1070
816
  statusReason?: AccessPreviewStatusReason;
1071
817
  }
1072
- export declare namespace AccessPreviewSummary {
1073
-
1074
- const filterSensitiveLog: (obj: AccessPreviewSummary) => any;
1075
- }
1076
818
  export interface ListAccessPreviewsResponse {
1077
819
 
1078
820
  accessPreviews: AccessPreviewSummary[] | undefined;
1079
821
 
1080
822
  nextToken?: string;
1081
823
  }
1082
- export declare namespace ListAccessPreviewsResponse {
1083
-
1084
- const filterSensitiveLog: (obj: ListAccessPreviewsResponse) => any;
1085
- }
1086
824
 
1087
825
  export interface ListAnalyzedResourcesRequest {
1088
826
 
@@ -1094,10 +832,6 @@ export interface ListAnalyzedResourcesRequest {
1094
832
 
1095
833
  maxResults?: number;
1096
834
  }
1097
- export declare namespace ListAnalyzedResourcesRequest {
1098
-
1099
- const filterSensitiveLog: (obj: ListAnalyzedResourcesRequest) => any;
1100
- }
1101
835
 
1102
836
  export interface AnalyzedResourceSummary {
1103
837
 
@@ -1107,10 +841,6 @@ export interface AnalyzedResourceSummary {
1107
841
 
1108
842
  resourceType: ResourceType | string | undefined;
1109
843
  }
1110
- export declare namespace AnalyzedResourceSummary {
1111
-
1112
- const filterSensitiveLog: (obj: AnalyzedResourceSummary) => any;
1113
- }
1114
844
 
1115
845
  export interface ListAnalyzedResourcesResponse {
1116
846
 
@@ -1118,10 +848,6 @@ export interface ListAnalyzedResourcesResponse {
1118
848
 
1119
849
  nextToken?: string;
1120
850
  }
1121
- export declare namespace ListAnalyzedResourcesResponse {
1122
-
1123
- const filterSensitiveLog: (obj: ListAnalyzedResourcesResponse) => any;
1124
- }
1125
851
  export declare type OrderBy = "ASC" | "DESC";
1126
852
 
1127
853
  export interface SortCriteria {
@@ -1130,10 +856,6 @@ export interface SortCriteria {
1130
856
 
1131
857
  orderBy?: OrderBy | string;
1132
858
  }
1133
- export declare namespace SortCriteria {
1134
-
1135
- const filterSensitiveLog: (obj: SortCriteria) => any;
1136
- }
1137
859
 
1138
860
  export interface ListFindingsRequest {
1139
861
 
@@ -1147,10 +869,6 @@ export interface ListFindingsRequest {
1147
869
 
1148
870
  maxResults?: number;
1149
871
  }
1150
- export declare namespace ListFindingsRequest {
1151
-
1152
- const filterSensitiveLog: (obj: ListFindingsRequest) => any;
1153
- }
1154
872
 
1155
873
  export interface FindingSummary {
1156
874
 
@@ -1182,10 +900,6 @@ export interface FindingSummary {
1182
900
 
1183
901
  sources?: FindingSource[];
1184
902
  }
1185
- export declare namespace FindingSummary {
1186
-
1187
- const filterSensitiveLog: (obj: FindingSummary) => any;
1188
- }
1189
903
 
1190
904
  export interface ListFindingsResponse {
1191
905
 
@@ -1193,10 +907,6 @@ export interface ListFindingsResponse {
1193
907
 
1194
908
  nextToken?: string;
1195
909
  }
1196
- export declare namespace ListFindingsResponse {
1197
-
1198
- const filterSensitiveLog: (obj: ListFindingsResponse) => any;
1199
- }
1200
910
  export interface ListPolicyGenerationsRequest {
1201
911
 
1202
912
  principalArn?: string;
@@ -1205,10 +915,6 @@ export interface ListPolicyGenerationsRequest {
1205
915
 
1206
916
  nextToken?: string;
1207
917
  }
1208
- export declare namespace ListPolicyGenerationsRequest {
1209
-
1210
- const filterSensitiveLog: (obj: ListPolicyGenerationsRequest) => any;
1211
- }
1212
918
 
1213
919
  export interface PolicyGeneration {
1214
920
 
@@ -1222,38 +928,22 @@ export interface PolicyGeneration {
1222
928
 
1223
929
  completedOn?: Date;
1224
930
  }
1225
- export declare namespace PolicyGeneration {
1226
-
1227
- const filterSensitiveLog: (obj: PolicyGeneration) => any;
1228
- }
1229
931
  export interface ListPolicyGenerationsResponse {
1230
932
 
1231
933
  policyGenerations: PolicyGeneration[] | undefined;
1232
934
 
1233
935
  nextToken?: string;
1234
936
  }
1235
- export declare namespace ListPolicyGenerationsResponse {
1236
-
1237
- const filterSensitiveLog: (obj: ListPolicyGenerationsResponse) => any;
1238
- }
1239
937
 
1240
938
  export interface ListTagsForResourceRequest {
1241
939
 
1242
940
  resourceArn: string | undefined;
1243
941
  }
1244
- export declare namespace ListTagsForResourceRequest {
1245
-
1246
- const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
1247
- }
1248
942
 
1249
943
  export interface ListTagsForResourceResponse {
1250
944
 
1251
945
  tags?: Record<string, string>;
1252
946
  }
1253
- export declare namespace ListTagsForResourceResponse {
1254
-
1255
- const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
1256
- }
1257
947
 
1258
948
  export interface Trail {
1259
949
 
@@ -1263,10 +953,6 @@ export interface Trail {
1263
953
 
1264
954
  allRegions?: boolean;
1265
955
  }
1266
- export declare namespace Trail {
1267
-
1268
- const filterSensitiveLog: (obj: Trail) => any;
1269
- }
1270
956
 
1271
957
  export interface CloudTrailDetails {
1272
958
 
@@ -1278,19 +964,11 @@ export interface CloudTrailDetails {
1278
964
 
1279
965
  endTime?: Date;
1280
966
  }
1281
- export declare namespace CloudTrailDetails {
1282
-
1283
- const filterSensitiveLog: (obj: CloudTrailDetails) => any;
1284
- }
1285
967
 
1286
968
  export interface PolicyGenerationDetails {
1287
969
 
1288
970
  principalArn: string | undefined;
1289
971
  }
1290
- export declare namespace PolicyGenerationDetails {
1291
-
1292
- const filterSensitiveLog: (obj: PolicyGenerationDetails) => any;
1293
- }
1294
972
  export interface StartPolicyGenerationRequest {
1295
973
 
1296
974
  policyGenerationDetails: PolicyGenerationDetails | undefined;
@@ -1299,18 +977,10 @@ export interface StartPolicyGenerationRequest {
1299
977
 
1300
978
  clientToken?: string;
1301
979
  }
1302
- export declare namespace StartPolicyGenerationRequest {
1303
-
1304
- const filterSensitiveLog: (obj: StartPolicyGenerationRequest) => any;
1305
- }
1306
980
  export interface StartPolicyGenerationResponse {
1307
981
 
1308
982
  jobId: string | undefined;
1309
983
  }
1310
- export declare namespace StartPolicyGenerationResponse {
1311
-
1312
- const filterSensitiveLog: (obj: StartPolicyGenerationResponse) => any;
1313
- }
1314
984
 
1315
985
  export interface StartResourceScanRequest {
1316
986
 
@@ -1318,10 +988,6 @@ export interface StartResourceScanRequest {
1318
988
 
1319
989
  resourceArn: string | undefined;
1320
990
  }
1321
- export declare namespace StartResourceScanRequest {
1322
-
1323
- const filterSensitiveLog: (obj: StartResourceScanRequest) => any;
1324
- }
1325
991
 
1326
992
  export interface TagResourceRequest {
1327
993
 
@@ -1329,17 +995,9 @@ export interface TagResourceRequest {
1329
995
 
1330
996
  tags: Record<string, string> | undefined;
1331
997
  }
1332
- export declare namespace TagResourceRequest {
1333
-
1334
- const filterSensitiveLog: (obj: TagResourceRequest) => any;
1335
- }
1336
998
 
1337
999
  export interface TagResourceResponse {
1338
1000
  }
1339
- export declare namespace TagResourceResponse {
1340
-
1341
- const filterSensitiveLog: (obj: TagResourceResponse) => any;
1342
- }
1343
1001
 
1344
1002
  export interface UntagResourceRequest {
1345
1003
 
@@ -1347,17 +1005,9 @@ export interface UntagResourceRequest {
1347
1005
 
1348
1006
  tagKeys: string[] | undefined;
1349
1007
  }
1350
- export declare namespace UntagResourceRequest {
1351
-
1352
- const filterSensitiveLog: (obj: UntagResourceRequest) => any;
1353
- }
1354
1008
 
1355
1009
  export interface UntagResourceResponse {
1356
1010
  }
1357
- export declare namespace UntagResourceResponse {
1358
-
1359
- const filterSensitiveLog: (obj: UntagResourceResponse) => any;
1360
- }
1361
1011
  export declare type FindingStatusUpdate = "ACTIVE" | "ARCHIVED";
1362
1012
 
1363
1013
  export interface UpdateFindingsRequest {
@@ -1372,10 +1022,6 @@ export interface UpdateFindingsRequest {
1372
1022
 
1373
1023
  clientToken?: string;
1374
1024
  }
1375
- export declare namespace UpdateFindingsRequest {
1376
-
1377
- const filterSensitiveLog: (obj: UpdateFindingsRequest) => any;
1378
- }
1379
1025
  export declare enum Locale {
1380
1026
  DE = "DE",
1381
1027
  EN = "EN",
@@ -1413,10 +1059,6 @@ export interface ValidatePolicyRequest {
1413
1059
 
1414
1060
  validatePolicyResourceType?: ValidatePolicyResourceType | string;
1415
1061
  }
1416
- export declare namespace ValidatePolicyRequest {
1417
-
1418
- const filterSensitiveLog: (obj: ValidatePolicyRequest) => any;
1419
- }
1420
1062
  export declare enum ValidatePolicyFindingType {
1421
1063
  ERROR = "ERROR",
1422
1064
  SECURITY_WARNING = "SECURITY_WARNING",
@@ -1430,10 +1072,6 @@ export interface Substring {
1430
1072
 
1431
1073
  length: number | undefined;
1432
1074
  }
1433
- export declare namespace Substring {
1434
-
1435
- const filterSensitiveLog: (obj: Substring) => any;
1436
- }
1437
1075
 
1438
1076
  export declare type PathElement = PathElement.IndexMember | PathElement.KeyMember | PathElement.SubstringMember | PathElement.ValueMember | PathElement.$UnknownMember;
1439
1077
  export declare namespace PathElement {
@@ -1487,8 +1125,6 @@ export declare namespace PathElement {
1487
1125
  _: (name: string, value: any) => T;
1488
1126
  }
1489
1127
  const visit: <T>(value: PathElement, visitor: Visitor<T>) => T;
1490
-
1491
- const filterSensitiveLog: (obj: PathElement) => any;
1492
1128
  }
1493
1129
 
1494
1130
  export interface Position {
@@ -1499,10 +1135,6 @@ export interface Position {
1499
1135
 
1500
1136
  offset: number | undefined;
1501
1137
  }
1502
- export declare namespace Position {
1503
-
1504
- const filterSensitiveLog: (obj: Position) => any;
1505
- }
1506
1138
 
1507
1139
  export interface Span {
1508
1140
 
@@ -1510,10 +1142,6 @@ export interface Span {
1510
1142
 
1511
1143
  end: Position | undefined;
1512
1144
  }
1513
- export declare namespace Span {
1514
-
1515
- const filterSensitiveLog: (obj: Span) => any;
1516
- }
1517
1145
 
1518
1146
  export interface Location {
1519
1147
 
@@ -1521,10 +1149,6 @@ export interface Location {
1521
1149
 
1522
1150
  span: Span | undefined;
1523
1151
  }
1524
- export declare namespace Location {
1525
-
1526
- const filterSensitiveLog: (obj: Location) => any;
1527
- }
1528
1152
 
1529
1153
  export interface ValidatePolicyFinding {
1530
1154
 
@@ -1538,17 +1162,205 @@ export interface ValidatePolicyFinding {
1538
1162
 
1539
1163
  locations: Location[] | undefined;
1540
1164
  }
1541
- export declare namespace ValidatePolicyFinding {
1542
-
1543
- const filterSensitiveLog: (obj: ValidatePolicyFinding) => any;
1544
- }
1545
1165
  export interface ValidatePolicyResponse {
1546
1166
 
1547
1167
  findings: ValidatePolicyFinding[] | undefined;
1548
1168
 
1549
1169
  nextToken?: string;
1550
1170
  }
1551
- export declare namespace ValidatePolicyResponse {
1552
-
1553
- const filterSensitiveLog: (obj: ValidatePolicyResponse) => any;
1554
- }
1171
+
1172
+ export declare const CriterionFilterSensitiveLog: (obj: Criterion) => any;
1173
+
1174
+ export declare const CreateArchiveRuleRequestFilterSensitiveLog: (obj: CreateArchiveRuleRequest) => any;
1175
+
1176
+ export declare const ValidationExceptionFieldFilterSensitiveLog: (obj: ValidationExceptionField) => any;
1177
+
1178
+ export declare const DeleteArchiveRuleRequestFilterSensitiveLog: (obj: DeleteArchiveRuleRequest) => any;
1179
+
1180
+ export declare const GetArchiveRuleRequestFilterSensitiveLog: (obj: GetArchiveRuleRequest) => any;
1181
+
1182
+ export declare const ArchiveRuleSummaryFilterSensitiveLog: (obj: ArchiveRuleSummary) => any;
1183
+
1184
+ export declare const GetArchiveRuleResponseFilterSensitiveLog: (obj: GetArchiveRuleResponse) => any;
1185
+
1186
+ export declare const ListArchiveRulesRequestFilterSensitiveLog: (obj: ListArchiveRulesRequest) => any;
1187
+
1188
+ export declare const ListArchiveRulesResponseFilterSensitiveLog: (obj: ListArchiveRulesResponse) => any;
1189
+
1190
+ export declare const UpdateArchiveRuleRequestFilterSensitiveLog: (obj: UpdateArchiveRuleRequest) => any;
1191
+
1192
+ export declare const InlineArchiveRuleFilterSensitiveLog: (obj: InlineArchiveRule) => any;
1193
+
1194
+ export declare const CreateAnalyzerRequestFilterSensitiveLog: (obj: CreateAnalyzerRequest) => any;
1195
+
1196
+ export declare const CreateAnalyzerResponseFilterSensitiveLog: (obj: CreateAnalyzerResponse) => any;
1197
+
1198
+ export declare const DeleteAnalyzerRequestFilterSensitiveLog: (obj: DeleteAnalyzerRequest) => any;
1199
+
1200
+ export declare const GetAnalyzerRequestFilterSensitiveLog: (obj: GetAnalyzerRequest) => any;
1201
+
1202
+ export declare const StatusReasonFilterSensitiveLog: (obj: StatusReason) => any;
1203
+
1204
+ export declare const AnalyzerSummaryFilterSensitiveLog: (obj: AnalyzerSummary) => any;
1205
+
1206
+ export declare const GetAnalyzerResponseFilterSensitiveLog: (obj: GetAnalyzerResponse) => any;
1207
+
1208
+ export declare const ListAnalyzersRequestFilterSensitiveLog: (obj: ListAnalyzersRequest) => any;
1209
+
1210
+ export declare const ListAnalyzersResponseFilterSensitiveLog: (obj: ListAnalyzersResponse) => any;
1211
+
1212
+ export declare const ApplyArchiveRuleRequestFilterSensitiveLog: (obj: ApplyArchiveRuleRequest) => any;
1213
+
1214
+ export declare const CancelPolicyGenerationRequestFilterSensitiveLog: (obj: CancelPolicyGenerationRequest) => any;
1215
+
1216
+ export declare const CancelPolicyGenerationResponseFilterSensitiveLog: (obj: CancelPolicyGenerationResponse) => any;
1217
+
1218
+ export declare const IamRoleConfigurationFilterSensitiveLog: (obj: IamRoleConfiguration) => any;
1219
+
1220
+ export declare const KmsGrantConstraintsFilterSensitiveLog: (obj: KmsGrantConstraints) => any;
1221
+
1222
+ export declare const KmsGrantConfigurationFilterSensitiveLog: (obj: KmsGrantConfiguration) => any;
1223
+
1224
+ export declare const KmsKeyConfigurationFilterSensitiveLog: (obj: KmsKeyConfiguration) => any;
1225
+
1226
+ export declare const InternetConfigurationFilterSensitiveLog: (obj: InternetConfiguration) => any;
1227
+
1228
+ export declare const VpcConfigurationFilterSensitiveLog: (obj: VpcConfiguration) => any;
1229
+
1230
+ export declare const NetworkOriginConfigurationFilterSensitiveLog: (obj: NetworkOriginConfiguration) => any;
1231
+
1232
+ export declare const S3PublicAccessBlockConfigurationFilterSensitiveLog: (obj: S3PublicAccessBlockConfiguration) => any;
1233
+
1234
+ export declare const S3AccessPointConfigurationFilterSensitiveLog: (obj: S3AccessPointConfiguration) => any;
1235
+
1236
+ export declare const AclGranteeFilterSensitiveLog: (obj: AclGrantee) => any;
1237
+
1238
+ export declare const S3BucketAclGrantConfigurationFilterSensitiveLog: (obj: S3BucketAclGrantConfiguration) => any;
1239
+
1240
+ export declare const S3BucketConfigurationFilterSensitiveLog: (obj: S3BucketConfiguration) => any;
1241
+
1242
+ export declare const SecretsManagerSecretConfigurationFilterSensitiveLog: (obj: SecretsManagerSecretConfiguration) => any;
1243
+
1244
+ export declare const SqsQueueConfigurationFilterSensitiveLog: (obj: SqsQueueConfiguration) => any;
1245
+
1246
+ export declare const ConfigurationFilterSensitiveLog: (obj: Configuration) => any;
1247
+
1248
+ export declare const CreateAccessPreviewRequestFilterSensitiveLog: (obj: CreateAccessPreviewRequest) => any;
1249
+
1250
+ export declare const CreateAccessPreviewResponseFilterSensitiveLog: (obj: CreateAccessPreviewResponse) => any;
1251
+
1252
+ export declare const GetAccessPreviewRequestFilterSensitiveLog: (obj: GetAccessPreviewRequest) => any;
1253
+
1254
+ export declare const AccessPreviewStatusReasonFilterSensitiveLog: (obj: AccessPreviewStatusReason) => any;
1255
+
1256
+ export declare const AccessPreviewFilterSensitiveLog: (obj: AccessPreview) => any;
1257
+
1258
+ export declare const GetAccessPreviewResponseFilterSensitiveLog: (obj: GetAccessPreviewResponse) => any;
1259
+
1260
+ export declare const GetAnalyzedResourceRequestFilterSensitiveLog: (obj: GetAnalyzedResourceRequest) => any;
1261
+
1262
+ export declare const AnalyzedResourceFilterSensitiveLog: (obj: AnalyzedResource) => any;
1263
+
1264
+ export declare const GetAnalyzedResourceResponseFilterSensitiveLog: (obj: GetAnalyzedResourceResponse) => any;
1265
+
1266
+ export declare const GetFindingRequestFilterSensitiveLog: (obj: GetFindingRequest) => any;
1267
+
1268
+ export declare const FindingSourceDetailFilterSensitiveLog: (obj: FindingSourceDetail) => any;
1269
+
1270
+ export declare const FindingSourceFilterSensitiveLog: (obj: FindingSource) => any;
1271
+
1272
+ export declare const FindingFilterSensitiveLog: (obj: Finding) => any;
1273
+
1274
+ export declare const GetFindingResponseFilterSensitiveLog: (obj: GetFindingResponse) => any;
1275
+
1276
+ export declare const GetGeneratedPolicyRequestFilterSensitiveLog: (obj: GetGeneratedPolicyRequest) => any;
1277
+
1278
+ export declare const GeneratedPolicyFilterSensitiveLog: (obj: GeneratedPolicy) => any;
1279
+
1280
+ export declare const TrailPropertiesFilterSensitiveLog: (obj: TrailProperties) => any;
1281
+
1282
+ export declare const CloudTrailPropertiesFilterSensitiveLog: (obj: CloudTrailProperties) => any;
1283
+
1284
+ export declare const GeneratedPolicyPropertiesFilterSensitiveLog: (obj: GeneratedPolicyProperties) => any;
1285
+
1286
+ export declare const GeneratedPolicyResultFilterSensitiveLog: (obj: GeneratedPolicyResult) => any;
1287
+
1288
+ export declare const JobErrorFilterSensitiveLog: (obj: JobError) => any;
1289
+
1290
+ export declare const JobDetailsFilterSensitiveLog: (obj: JobDetails) => any;
1291
+
1292
+ export declare const GetGeneratedPolicyResponseFilterSensitiveLog: (obj: GetGeneratedPolicyResponse) => any;
1293
+
1294
+ export declare const ListAccessPreviewFindingsRequestFilterSensitiveLog: (obj: ListAccessPreviewFindingsRequest) => any;
1295
+
1296
+ export declare const AccessPreviewFindingFilterSensitiveLog: (obj: AccessPreviewFinding) => any;
1297
+
1298
+ export declare const ListAccessPreviewFindingsResponseFilterSensitiveLog: (obj: ListAccessPreviewFindingsResponse) => any;
1299
+
1300
+ export declare const ListAccessPreviewsRequestFilterSensitiveLog: (obj: ListAccessPreviewsRequest) => any;
1301
+
1302
+ export declare const AccessPreviewSummaryFilterSensitiveLog: (obj: AccessPreviewSummary) => any;
1303
+
1304
+ export declare const ListAccessPreviewsResponseFilterSensitiveLog: (obj: ListAccessPreviewsResponse) => any;
1305
+
1306
+ export declare const ListAnalyzedResourcesRequestFilterSensitiveLog: (obj: ListAnalyzedResourcesRequest) => any;
1307
+
1308
+ export declare const AnalyzedResourceSummaryFilterSensitiveLog: (obj: AnalyzedResourceSummary) => any;
1309
+
1310
+ export declare const ListAnalyzedResourcesResponseFilterSensitiveLog: (obj: ListAnalyzedResourcesResponse) => any;
1311
+
1312
+ export declare const SortCriteriaFilterSensitiveLog: (obj: SortCriteria) => any;
1313
+
1314
+ export declare const ListFindingsRequestFilterSensitiveLog: (obj: ListFindingsRequest) => any;
1315
+
1316
+ export declare const FindingSummaryFilterSensitiveLog: (obj: FindingSummary) => any;
1317
+
1318
+ export declare const ListFindingsResponseFilterSensitiveLog: (obj: ListFindingsResponse) => any;
1319
+
1320
+ export declare const ListPolicyGenerationsRequestFilterSensitiveLog: (obj: ListPolicyGenerationsRequest) => any;
1321
+
1322
+ export declare const PolicyGenerationFilterSensitiveLog: (obj: PolicyGeneration) => any;
1323
+
1324
+ export declare const ListPolicyGenerationsResponseFilterSensitiveLog: (obj: ListPolicyGenerationsResponse) => any;
1325
+
1326
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
1327
+
1328
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
1329
+
1330
+ export declare const TrailFilterSensitiveLog: (obj: Trail) => any;
1331
+
1332
+ export declare const CloudTrailDetailsFilterSensitiveLog: (obj: CloudTrailDetails) => any;
1333
+
1334
+ export declare const PolicyGenerationDetailsFilterSensitiveLog: (obj: PolicyGenerationDetails) => any;
1335
+
1336
+ export declare const StartPolicyGenerationRequestFilterSensitiveLog: (obj: StartPolicyGenerationRequest) => any;
1337
+
1338
+ export declare const StartPolicyGenerationResponseFilterSensitiveLog: (obj: StartPolicyGenerationResponse) => any;
1339
+
1340
+ export declare const StartResourceScanRequestFilterSensitiveLog: (obj: StartResourceScanRequest) => any;
1341
+
1342
+ export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
1343
+
1344
+ export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
1345
+
1346
+ export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
1347
+
1348
+ export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
1349
+
1350
+ export declare const UpdateFindingsRequestFilterSensitiveLog: (obj: UpdateFindingsRequest) => any;
1351
+
1352
+ export declare const ValidatePolicyRequestFilterSensitiveLog: (obj: ValidatePolicyRequest) => any;
1353
+
1354
+ export declare const SubstringFilterSensitiveLog: (obj: Substring) => any;
1355
+
1356
+ export declare const PathElementFilterSensitiveLog: (obj: PathElement) => any;
1357
+
1358
+ export declare const PositionFilterSensitiveLog: (obj: Position) => any;
1359
+
1360
+ export declare const SpanFilterSensitiveLog: (obj: Span) => any;
1361
+
1362
+ export declare const LocationFilterSensitiveLog: (obj: Location) => any;
1363
+
1364
+ export declare const ValidatePolicyFindingFilterSensitiveLog: (obj: ValidatePolicyFinding) => any;
1365
+
1366
+ export declare const ValidatePolicyResponseFilterSensitiveLog: (obj: ValidatePolicyResponse) => any;