@aws-sdk/client-cloudtrail 3.46.0 → 3.47.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.
@@ -1,10 +1,11 @@
1
- import { FetchHttpHandler } from "@aws-sdk/fetch-http-handler";
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
2
  import { CloudTrailClientConfig } from "./CloudTrailClient";
3
3
  /**
4
4
  * @internal
5
5
  */
6
6
  export declare const getRuntimeConfig: (config: CloudTrailClientConfig) => {
7
7
  runtime: string;
8
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
8
9
  base64Decoder: import("@aws-sdk/types").Decoder;
9
10
  base64Encoder: import("@aws-sdk/types").Encoder;
10
11
  bodyLengthChecker: (body: any) => number | undefined;
@@ -12,7 +13,7 @@ export declare const getRuntimeConfig: (config: CloudTrailClientConfig) => {
12
13
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
13
14
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
14
15
  region: string | import("@aws-sdk/types").Provider<any>;
15
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | FetchHttpHandler;
16
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
16
17
  retryMode: string | import("@aws-sdk/types").Provider<string>;
17
18
  sha256: import("@aws-sdk/types").HashConstructor;
18
19
  streamCollector: import("@aws-sdk/types").StreamCollector;
@@ -1,18 +1,19 @@
1
- import { NodeHttpHandler } from "@aws-sdk/node-http-handler";
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
2
  import { CloudTrailClientConfig } from "./CloudTrailClient";
3
3
  /**
4
4
  * @internal
5
5
  */
6
6
  export declare const getRuntimeConfig: (config: CloudTrailClientConfig) => {
7
7
  runtime: string;
8
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
8
9
  base64Decoder: import("@aws-sdk/types").Decoder;
9
10
  base64Encoder: import("@aws-sdk/types").Encoder;
10
11
  bodyLengthChecker: (body: any) => number | undefined;
11
- credentialDefaultProvider: import("@aws-sdk/client-sts/dist-types/defaultStsRoleAssumers").DefaultCredentialProvider;
12
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
12
13
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
13
14
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
14
15
  region: string | import("@aws-sdk/types").Provider<string>;
15
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | NodeHttpHandler;
16
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
16
17
  retryMode: string | import("@aws-sdk/types").Provider<string>;
17
18
  sha256: import("@aws-sdk/types").HashConstructor;
18
19
  streamCollector: import("@aws-sdk/types").StreamCollector;
@@ -25,6 +25,7 @@ export declare const getRuntimeConfig: (config: CloudTrailClientConfig) => {
25
25
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
26
26
  regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
27
27
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
28
+ defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
28
29
  endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
30
  tls?: boolean | undefined;
30
31
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
@@ -4,7 +4,7 @@ import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry
4
4
  import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
5
  import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
6
  import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
- import { Client as __Client, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
7
+ import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
8
  import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
9
  import { AddTagsCommandInput, AddTagsCommandOutput } from "./commands/AddTagsCommand";
10
10
  import { CancelQueryCommandInput, CancelQueryCommandOutput } from "./commands/CancelQueryCommand";
@@ -80,6 +80,8 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
80
80
  regionInfoProvider?: RegionInfoProvider;
81
81
 
82
82
  defaultUserAgentProvider?: Provider<__UserAgent>;
83
+
84
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
83
85
  }
84
86
  declare type CloudTrailClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
85
87
 
@@ -35,10 +35,6 @@ export interface CloudTrailARNInvalidException extends __SmithyException, $Metad
35
35
 
36
36
  Message?: string;
37
37
  }
38
- export declare namespace CloudTrailARNInvalidException {
39
-
40
- const filterSensitiveLog: (obj: CloudTrailARNInvalidException) => any;
41
- }
42
38
 
43
39
  export interface ConflictException extends __SmithyException, $MetadataBearer {
44
40
  name: "ConflictException";
@@ -46,10 +42,6 @@ export interface ConflictException extends __SmithyException, $MetadataBearer {
46
42
 
47
43
  Message?: string;
48
44
  }
49
- export declare namespace ConflictException {
50
-
51
- const filterSensitiveLog: (obj: ConflictException) => any;
52
- }
53
45
 
54
46
  export interface EventDataStoreNotFoundException extends __SmithyException, $MetadataBearer {
55
47
  name: "EventDataStoreNotFoundException";
@@ -57,10 +49,6 @@ export interface EventDataStoreNotFoundException extends __SmithyException, $Met
57
49
 
58
50
  Message?: string;
59
51
  }
60
- export declare namespace EventDataStoreNotFoundException {
61
-
62
- const filterSensitiveLog: (obj: EventDataStoreNotFoundException) => any;
63
- }
64
52
 
65
53
  export interface InactiveEventDataStoreException extends __SmithyException, $MetadataBearer {
66
54
  name: "InactiveEventDataStoreException";
@@ -68,10 +56,6 @@ export interface InactiveEventDataStoreException extends __SmithyException, $Met
68
56
 
69
57
  Message?: string;
70
58
  }
71
- export declare namespace InactiveEventDataStoreException {
72
-
73
- const filterSensitiveLog: (obj: InactiveEventDataStoreException) => any;
74
- }
75
59
 
76
60
  export interface InvalidTagParameterException extends __SmithyException, $MetadataBearer {
77
61
  name: "InvalidTagParameterException";
@@ -79,10 +63,6 @@ export interface InvalidTagParameterException extends __SmithyException, $Metada
79
63
 
80
64
  Message?: string;
81
65
  }
82
- export declare namespace InvalidTagParameterException {
83
-
84
- const filterSensitiveLog: (obj: InvalidTagParameterException) => any;
85
- }
86
66
 
87
67
  export interface InvalidTrailNameException extends __SmithyException, $MetadataBearer {
88
68
  name: "InvalidTrailNameException";
@@ -90,10 +70,6 @@ export interface InvalidTrailNameException extends __SmithyException, $MetadataB
90
70
 
91
71
  Message?: string;
92
72
  }
93
- export declare namespace InvalidTrailNameException {
94
-
95
- const filterSensitiveLog: (obj: InvalidTrailNameException) => any;
96
- }
97
73
 
98
74
  export interface NotOrganizationMasterAccountException extends __SmithyException, $MetadataBearer {
99
75
  name: "NotOrganizationMasterAccountException";
@@ -101,10 +77,6 @@ export interface NotOrganizationMasterAccountException extends __SmithyException
101
77
 
102
78
  Message?: string;
103
79
  }
104
- export declare namespace NotOrganizationMasterAccountException {
105
-
106
- const filterSensitiveLog: (obj: NotOrganizationMasterAccountException) => any;
107
- }
108
80
 
109
81
  export interface OperationNotPermittedException extends __SmithyException, $MetadataBearer {
110
82
  name: "OperationNotPermittedException";
@@ -112,10 +84,6 @@ export interface OperationNotPermittedException extends __SmithyException, $Meta
112
84
 
113
85
  Message?: string;
114
86
  }
115
- export declare namespace OperationNotPermittedException {
116
-
117
- const filterSensitiveLog: (obj: OperationNotPermittedException) => any;
118
- }
119
87
 
120
88
  export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
121
89
  name: "ResourceNotFoundException";
@@ -123,10 +91,6 @@ export interface ResourceNotFoundException extends __SmithyException, $MetadataB
123
91
 
124
92
  Message?: string;
125
93
  }
126
- export declare namespace ResourceNotFoundException {
127
-
128
- const filterSensitiveLog: (obj: ResourceNotFoundException) => any;
129
- }
130
94
 
131
95
  export interface ResourceTypeNotSupportedException extends __SmithyException, $MetadataBearer {
132
96
  name: "ResourceTypeNotSupportedException";
@@ -134,10 +98,6 @@ export interface ResourceTypeNotSupportedException extends __SmithyException, $M
134
98
 
135
99
  Message?: string;
136
100
  }
137
- export declare namespace ResourceTypeNotSupportedException {
138
-
139
- const filterSensitiveLog: (obj: ResourceTypeNotSupportedException) => any;
140
- }
141
101
 
142
102
  export interface TagsLimitExceededException extends __SmithyException, $MetadataBearer {
143
103
  name: "TagsLimitExceededException";
@@ -145,10 +105,6 @@ export interface TagsLimitExceededException extends __SmithyException, $Metadata
145
105
 
146
106
  Message?: string;
147
107
  }
148
- export declare namespace TagsLimitExceededException {
149
-
150
- const filterSensitiveLog: (obj: TagsLimitExceededException) => any;
151
- }
152
108
 
153
109
  export interface UnsupportedOperationException extends __SmithyException, $MetadataBearer {
154
110
  name: "UnsupportedOperationException";
@@ -156,10 +112,6 @@ export interface UnsupportedOperationException extends __SmithyException, $Metad
156
112
 
157
113
  Message?: string;
158
114
  }
159
- export declare namespace UnsupportedOperationException {
160
-
161
- const filterSensitiveLog: (obj: UnsupportedOperationException) => any;
162
- }
163
115
 
164
116
  export interface AdvancedFieldSelector {
165
117
 
@@ -226,10 +178,6 @@ export interface EventDataStoreARNInvalidException extends __SmithyException, $M
226
178
 
227
179
  Message?: string;
228
180
  }
229
- export declare namespace EventDataStoreARNInvalidException {
230
-
231
- const filterSensitiveLog: (obj: EventDataStoreARNInvalidException) => any;
232
- }
233
181
 
234
182
  export interface InactiveQueryException extends __SmithyException, $MetadataBearer {
235
183
  name: "InactiveQueryException";
@@ -237,10 +185,6 @@ export interface InactiveQueryException extends __SmithyException, $MetadataBear
237
185
 
238
186
  Message?: string;
239
187
  }
240
- export declare namespace InactiveQueryException {
241
-
242
- const filterSensitiveLog: (obj: InactiveQueryException) => any;
243
- }
244
188
 
245
189
  export interface InvalidParameterException extends __SmithyException, $MetadataBearer {
246
190
  name: "InvalidParameterException";
@@ -248,10 +192,6 @@ export interface InvalidParameterException extends __SmithyException, $MetadataB
248
192
 
249
193
  Message?: string;
250
194
  }
251
- export declare namespace InvalidParameterException {
252
-
253
- const filterSensitiveLog: (obj: InvalidParameterException) => any;
254
- }
255
195
 
256
196
  export interface QueryIdNotFoundException extends __SmithyException, $MetadataBearer {
257
197
  name: "QueryIdNotFoundException";
@@ -259,10 +199,6 @@ export interface QueryIdNotFoundException extends __SmithyException, $MetadataBe
259
199
 
260
200
  Message?: string;
261
201
  }
262
- export declare namespace QueryIdNotFoundException {
263
-
264
- const filterSensitiveLog: (obj: QueryIdNotFoundException) => any;
265
- }
266
202
 
267
203
  export interface CloudTrailAccessNotEnabledException extends __SmithyException, $MetadataBearer {
268
204
  name: "CloudTrailAccessNotEnabledException";
@@ -270,10 +206,6 @@ export interface CloudTrailAccessNotEnabledException extends __SmithyException,
270
206
 
271
207
  Message?: string;
272
208
  }
273
- export declare namespace CloudTrailAccessNotEnabledException {
274
-
275
- const filterSensitiveLog: (obj: CloudTrailAccessNotEnabledException) => any;
276
- }
277
209
  export interface CreateEventDataStoreRequest {
278
210
 
279
211
  Name: string | undefined;
@@ -334,10 +266,6 @@ export interface EventDataStoreAlreadyExistsException extends __SmithyException,
334
266
 
335
267
  Message?: string;
336
268
  }
337
- export declare namespace EventDataStoreAlreadyExistsException {
338
-
339
- const filterSensitiveLog: (obj: EventDataStoreAlreadyExistsException) => any;
340
- }
341
269
 
342
270
  export interface EventDataStoreMaxLimitExceededException extends __SmithyException, $MetadataBearer {
343
271
  name: "EventDataStoreMaxLimitExceededException";
@@ -345,10 +273,6 @@ export interface EventDataStoreMaxLimitExceededException extends __SmithyExcepti
345
273
 
346
274
  Message?: string;
347
275
  }
348
- export declare namespace EventDataStoreMaxLimitExceededException {
349
-
350
- const filterSensitiveLog: (obj: EventDataStoreMaxLimitExceededException) => any;
351
- }
352
276
 
353
277
  export interface InsufficientDependencyServiceAccessPermissionException extends __SmithyException, $MetadataBearer {
354
278
  name: "InsufficientDependencyServiceAccessPermissionException";
@@ -356,10 +280,6 @@ export interface InsufficientDependencyServiceAccessPermissionException extends
356
280
 
357
281
  Message?: string;
358
282
  }
359
- export declare namespace InsufficientDependencyServiceAccessPermissionException {
360
-
361
- const filterSensitiveLog: (obj: InsufficientDependencyServiceAccessPermissionException) => any;
362
- }
363
283
 
364
284
  export interface OrganizationNotInAllFeaturesModeException extends __SmithyException, $MetadataBearer {
365
285
  name: "OrganizationNotInAllFeaturesModeException";
@@ -367,10 +287,6 @@ export interface OrganizationNotInAllFeaturesModeException extends __SmithyExcep
367
287
 
368
288
  Message?: string;
369
289
  }
370
- export declare namespace OrganizationNotInAllFeaturesModeException {
371
-
372
- const filterSensitiveLog: (obj: OrganizationNotInAllFeaturesModeException) => any;
373
- }
374
290
 
375
291
  export interface OrganizationsNotInUseException extends __SmithyException, $MetadataBearer {
376
292
  name: "OrganizationsNotInUseException";
@@ -378,10 +294,6 @@ export interface OrganizationsNotInUseException extends __SmithyException, $Meta
378
294
 
379
295
  Message?: string;
380
296
  }
381
- export declare namespace OrganizationsNotInUseException {
382
-
383
- const filterSensitiveLog: (obj: OrganizationsNotInUseException) => any;
384
- }
385
297
 
386
298
  export interface CloudTrailInvalidClientTokenIdException extends __SmithyException, $MetadataBearer {
387
299
  name: "CloudTrailInvalidClientTokenIdException";
@@ -389,10 +301,6 @@ export interface CloudTrailInvalidClientTokenIdException extends __SmithyExcepti
389
301
 
390
302
  Message?: string;
391
303
  }
392
- export declare namespace CloudTrailInvalidClientTokenIdException {
393
-
394
- const filterSensitiveLog: (obj: CloudTrailInvalidClientTokenIdException) => any;
395
- }
396
304
 
397
305
  export interface CloudWatchLogsDeliveryUnavailableException extends __SmithyException, $MetadataBearer {
398
306
  name: "CloudWatchLogsDeliveryUnavailableException";
@@ -400,10 +308,6 @@ export interface CloudWatchLogsDeliveryUnavailableException extends __SmithyExce
400
308
 
401
309
  Message?: string;
402
310
  }
403
- export declare namespace CloudWatchLogsDeliveryUnavailableException {
404
-
405
- const filterSensitiveLog: (obj: CloudWatchLogsDeliveryUnavailableException) => any;
406
- }
407
311
 
408
312
  export interface CreateTrailRequest {
409
313
 
@@ -475,10 +379,6 @@ export interface InsufficientEncryptionPolicyException extends __SmithyException
475
379
 
476
380
  Message?: string;
477
381
  }
478
- export declare namespace InsufficientEncryptionPolicyException {
479
-
480
- const filterSensitiveLog: (obj: InsufficientEncryptionPolicyException) => any;
481
- }
482
382
 
483
383
  export interface InsufficientS3BucketPolicyException extends __SmithyException, $MetadataBearer {
484
384
  name: "InsufficientS3BucketPolicyException";
@@ -486,10 +386,6 @@ export interface InsufficientS3BucketPolicyException extends __SmithyException,
486
386
 
487
387
  Message?: string;
488
388
  }
489
- export declare namespace InsufficientS3BucketPolicyException {
490
-
491
- const filterSensitiveLog: (obj: InsufficientS3BucketPolicyException) => any;
492
- }
493
389
 
494
390
  export interface InsufficientSnsTopicPolicyException extends __SmithyException, $MetadataBearer {
495
391
  name: "InsufficientSnsTopicPolicyException";
@@ -497,10 +393,6 @@ export interface InsufficientSnsTopicPolicyException extends __SmithyException,
497
393
 
498
394
  Message?: string;
499
395
  }
500
- export declare namespace InsufficientSnsTopicPolicyException {
501
-
502
- const filterSensitiveLog: (obj: InsufficientSnsTopicPolicyException) => any;
503
- }
504
396
 
505
397
  export interface InvalidCloudWatchLogsLogGroupArnException extends __SmithyException, $MetadataBearer {
506
398
  name: "InvalidCloudWatchLogsLogGroupArnException";
@@ -508,10 +400,6 @@ export interface InvalidCloudWatchLogsLogGroupArnException extends __SmithyExcep
508
400
 
509
401
  Message?: string;
510
402
  }
511
- export declare namespace InvalidCloudWatchLogsLogGroupArnException {
512
-
513
- const filterSensitiveLog: (obj: InvalidCloudWatchLogsLogGroupArnException) => any;
514
- }
515
403
 
516
404
  export interface InvalidCloudWatchLogsRoleArnException extends __SmithyException, $MetadataBearer {
517
405
  name: "InvalidCloudWatchLogsRoleArnException";
@@ -519,10 +407,6 @@ export interface InvalidCloudWatchLogsRoleArnException extends __SmithyException
519
407
 
520
408
  Message?: string;
521
409
  }
522
- export declare namespace InvalidCloudWatchLogsRoleArnException {
523
-
524
- const filterSensitiveLog: (obj: InvalidCloudWatchLogsRoleArnException) => any;
525
- }
526
410
 
527
411
  export interface InvalidKmsKeyIdException extends __SmithyException, $MetadataBearer {
528
412
  name: "InvalidKmsKeyIdException";
@@ -530,10 +414,6 @@ export interface InvalidKmsKeyIdException extends __SmithyException, $MetadataBe
530
414
 
531
415
  Message?: string;
532
416
  }
533
- export declare namespace InvalidKmsKeyIdException {
534
-
535
- const filterSensitiveLog: (obj: InvalidKmsKeyIdException) => any;
536
- }
537
417
 
538
418
  export interface InvalidParameterCombinationException extends __SmithyException, $MetadataBearer {
539
419
  name: "InvalidParameterCombinationException";
@@ -541,10 +421,6 @@ export interface InvalidParameterCombinationException extends __SmithyException,
541
421
 
542
422
  Message?: string;
543
423
  }
544
- export declare namespace InvalidParameterCombinationException {
545
-
546
- const filterSensitiveLog: (obj: InvalidParameterCombinationException) => any;
547
- }
548
424
 
549
425
  export interface InvalidS3BucketNameException extends __SmithyException, $MetadataBearer {
550
426
  name: "InvalidS3BucketNameException";
@@ -552,10 +428,6 @@ export interface InvalidS3BucketNameException extends __SmithyException, $Metada
552
428
 
553
429
  Message?: string;
554
430
  }
555
- export declare namespace InvalidS3BucketNameException {
556
-
557
- const filterSensitiveLog: (obj: InvalidS3BucketNameException) => any;
558
- }
559
431
 
560
432
  export interface InvalidS3PrefixException extends __SmithyException, $MetadataBearer {
561
433
  name: "InvalidS3PrefixException";
@@ -563,10 +435,6 @@ export interface InvalidS3PrefixException extends __SmithyException, $MetadataBe
563
435
 
564
436
  Message?: string;
565
437
  }
566
- export declare namespace InvalidS3PrefixException {
567
-
568
- const filterSensitiveLog: (obj: InvalidS3PrefixException) => any;
569
- }
570
438
 
571
439
  export interface InvalidSnsTopicNameException extends __SmithyException, $MetadataBearer {
572
440
  name: "InvalidSnsTopicNameException";
@@ -574,10 +442,6 @@ export interface InvalidSnsTopicNameException extends __SmithyException, $Metada
574
442
 
575
443
  Message?: string;
576
444
  }
577
- export declare namespace InvalidSnsTopicNameException {
578
-
579
- const filterSensitiveLog: (obj: InvalidSnsTopicNameException) => any;
580
- }
581
445
 
582
446
  export interface KmsException extends __SmithyException, $MetadataBearer {
583
447
  name: "KmsException";
@@ -585,10 +449,6 @@ export interface KmsException extends __SmithyException, $MetadataBearer {
585
449
 
586
450
  Message?: string;
587
451
  }
588
- export declare namespace KmsException {
589
-
590
- const filterSensitiveLog: (obj: KmsException) => any;
591
- }
592
452
 
593
453
  export interface KmsKeyDisabledException extends __SmithyException, $MetadataBearer {
594
454
  name: "KmsKeyDisabledException";
@@ -596,10 +456,6 @@ export interface KmsKeyDisabledException extends __SmithyException, $MetadataBea
596
456
 
597
457
  Message?: string;
598
458
  }
599
- export declare namespace KmsKeyDisabledException {
600
-
601
- const filterSensitiveLog: (obj: KmsKeyDisabledException) => any;
602
- }
603
459
 
604
460
  export interface KmsKeyNotFoundException extends __SmithyException, $MetadataBearer {
605
461
  name: "KmsKeyNotFoundException";
@@ -607,10 +463,6 @@ export interface KmsKeyNotFoundException extends __SmithyException, $MetadataBea
607
463
 
608
464
  Message?: string;
609
465
  }
610
- export declare namespace KmsKeyNotFoundException {
611
-
612
- const filterSensitiveLog: (obj: KmsKeyNotFoundException) => any;
613
- }
614
466
 
615
467
  export interface MaximumNumberOfTrailsExceededException extends __SmithyException, $MetadataBearer {
616
468
  name: "MaximumNumberOfTrailsExceededException";
@@ -618,10 +470,6 @@ export interface MaximumNumberOfTrailsExceededException extends __SmithyExceptio
618
470
 
619
471
  Message?: string;
620
472
  }
621
- export declare namespace MaximumNumberOfTrailsExceededException {
622
-
623
- const filterSensitiveLog: (obj: MaximumNumberOfTrailsExceededException) => any;
624
- }
625
473
 
626
474
  export interface S3BucketDoesNotExistException extends __SmithyException, $MetadataBearer {
627
475
  name: "S3BucketDoesNotExistException";
@@ -629,10 +477,6 @@ export interface S3BucketDoesNotExistException extends __SmithyException, $Metad
629
477
 
630
478
  Message?: string;
631
479
  }
632
- export declare namespace S3BucketDoesNotExistException {
633
-
634
- const filterSensitiveLog: (obj: S3BucketDoesNotExistException) => any;
635
- }
636
480
 
637
481
  export interface TrailAlreadyExistsException extends __SmithyException, $MetadataBearer {
638
482
  name: "TrailAlreadyExistsException";
@@ -640,10 +484,6 @@ export interface TrailAlreadyExistsException extends __SmithyException, $Metadat
640
484
 
641
485
  Message?: string;
642
486
  }
643
- export declare namespace TrailAlreadyExistsException {
644
-
645
- const filterSensitiveLog: (obj: TrailAlreadyExistsException) => any;
646
- }
647
487
 
648
488
  export interface TrailNotProvidedException extends __SmithyException, $MetadataBearer {
649
489
  name: "TrailNotProvidedException";
@@ -651,10 +491,6 @@ export interface TrailNotProvidedException extends __SmithyException, $MetadataB
651
491
 
652
492
  Message?: string;
653
493
  }
654
- export declare namespace TrailNotProvidedException {
655
-
656
- const filterSensitiveLog: (obj: TrailNotProvidedException) => any;
657
- }
658
494
  export interface DeleteEventDataStoreRequest {
659
495
 
660
496
  EventDataStore: string | undefined;
@@ -676,10 +512,6 @@ export interface EventDataStoreTerminationProtectedException extends __SmithyExc
676
512
 
677
513
  Message?: string;
678
514
  }
679
- export declare namespace EventDataStoreTerminationProtectedException {
680
-
681
- const filterSensitiveLog: (obj: EventDataStoreTerminationProtectedException) => any;
682
- }
683
515
 
684
516
  export interface DeleteTrailRequest {
685
517
 
@@ -703,10 +535,6 @@ export interface InvalidHomeRegionException extends __SmithyException, $Metadata
703
535
 
704
536
  Message?: string;
705
537
  }
706
- export declare namespace InvalidHomeRegionException {
707
-
708
- const filterSensitiveLog: (obj: InvalidHomeRegionException) => any;
709
- }
710
538
 
711
539
  export interface TrailNotFoundException extends __SmithyException, $MetadataBearer {
712
540
  name: "TrailNotFoundException";
@@ -714,10 +542,6 @@ export interface TrailNotFoundException extends __SmithyException, $MetadataBear
714
542
 
715
543
  Message?: string;
716
544
  }
717
- export declare namespace TrailNotFoundException {
718
-
719
- const filterSensitiveLog: (obj: TrailNotFoundException) => any;
720
- }
721
545
  export interface DescribeQueryRequest {
722
546
 
723
547
  EventDataStore: string | undefined;
@@ -941,10 +765,6 @@ export interface InsightNotEnabledException extends __SmithyException, $Metadata
941
765
 
942
766
  Message?: string;
943
767
  }
944
- export declare namespace InsightNotEnabledException {
945
-
946
- const filterSensitiveLog: (obj: InsightNotEnabledException) => any;
947
- }
948
768
  export interface GetQueryResultsRequest {
949
769
 
950
770
  EventDataStore: string | undefined;
@@ -995,10 +815,6 @@ export interface InvalidMaxResultsException extends __SmithyException, $Metadata
995
815
 
996
816
  Message?: string;
997
817
  }
998
- export declare namespace InvalidMaxResultsException {
999
-
1000
- const filterSensitiveLog: (obj: InvalidMaxResultsException) => any;
1001
- }
1002
818
 
1003
819
  export interface InvalidNextTokenException extends __SmithyException, $MetadataBearer {
1004
820
  name: "InvalidNextTokenException";
@@ -1006,10 +822,6 @@ export interface InvalidNextTokenException extends __SmithyException, $MetadataB
1006
822
 
1007
823
  Message?: string;
1008
824
  }
1009
- export declare namespace InvalidNextTokenException {
1010
-
1011
- const filterSensitiveLog: (obj: InvalidNextTokenException) => any;
1012
- }
1013
825
  export interface GetTrailRequest {
1014
826
 
1015
827
  Name: string | undefined;
@@ -1130,10 +942,6 @@ export interface InvalidTimeRangeException extends __SmithyException, $MetadataB
1130
942
 
1131
943
  Message?: string;
1132
944
  }
1133
- export declare namespace InvalidTimeRangeException {
1134
-
1135
- const filterSensitiveLog: (obj: InvalidTimeRangeException) => any;
1136
- }
1137
945
 
1138
946
  export interface InvalidTokenException extends __SmithyException, $MetadataBearer {
1139
947
  name: "InvalidTokenException";
@@ -1141,10 +949,6 @@ export interface InvalidTokenException extends __SmithyException, $MetadataBeare
1141
949
 
1142
950
  Message?: string;
1143
951
  }
1144
- export declare namespace InvalidTokenException {
1145
-
1146
- const filterSensitiveLog: (obj: InvalidTokenException) => any;
1147
- }
1148
952
 
1149
953
  export interface ListPublicKeysRequest {
1150
954
 
@@ -1191,10 +995,6 @@ export interface InvalidDateRangeException extends __SmithyException, $MetadataB
1191
995
 
1192
996
  Message?: string;
1193
997
  }
1194
- export declare namespace InvalidDateRangeException {
1195
-
1196
- const filterSensitiveLog: (obj: InvalidDateRangeException) => any;
1197
- }
1198
998
 
1199
999
  export interface InvalidQueryStatusException extends __SmithyException, $MetadataBearer {
1200
1000
  name: "InvalidQueryStatusException";
@@ -1202,10 +1002,6 @@ export interface InvalidQueryStatusException extends __SmithyException, $Metadat
1202
1002
 
1203
1003
  Message?: string;
1204
1004
  }
1205
- export declare namespace InvalidQueryStatusException {
1206
-
1207
- const filterSensitiveLog: (obj: InvalidQueryStatusException) => any;
1208
- }
1209
1005
  export interface ListQueriesRequest {
1210
1006
 
1211
1007
  EventDataStore: string | undefined;
@@ -1318,10 +1114,6 @@ export interface InvalidEventCategoryException extends __SmithyException, $Metad
1318
1114
 
1319
1115
  Message?: string;
1320
1116
  }
1321
- export declare namespace InvalidEventCategoryException {
1322
-
1323
- const filterSensitiveLog: (obj: InvalidEventCategoryException) => any;
1324
- }
1325
1117
 
1326
1118
  export interface InvalidLookupAttributesException extends __SmithyException, $MetadataBearer {
1327
1119
  name: "InvalidLookupAttributesException";
@@ -1329,10 +1121,6 @@ export interface InvalidLookupAttributesException extends __SmithyException, $Me
1329
1121
 
1330
1122
  Message?: string;
1331
1123
  }
1332
- export declare namespace InvalidLookupAttributesException {
1333
-
1334
- const filterSensitiveLog: (obj: InvalidLookupAttributesException) => any;
1335
- }
1336
1124
  export declare enum EventCategory {
1337
1125
  Insight = "insight"
1338
1126
  }
@@ -1430,10 +1218,6 @@ export interface InvalidEventSelectorsException extends __SmithyException, $Meta
1430
1218
 
1431
1219
  Message?: string;
1432
1220
  }
1433
- export declare namespace InvalidEventSelectorsException {
1434
-
1435
- const filterSensitiveLog: (obj: InvalidEventSelectorsException) => any;
1436
- }
1437
1221
  export interface PutEventSelectorsRequest {
1438
1222
 
1439
1223
  TrailName: string | undefined;
@@ -1465,10 +1249,6 @@ export interface InvalidInsightSelectorsException extends __SmithyException, $Me
1465
1249
 
1466
1250
  Message?: string;
1467
1251
  }
1468
- export declare namespace InvalidInsightSelectorsException {
1469
-
1470
- const filterSensitiveLog: (obj: InvalidInsightSelectorsException) => any;
1471
- }
1472
1252
  export interface PutInsightSelectorsRequest {
1473
1253
 
1474
1254
  TrailName: string | undefined;
@@ -1514,10 +1294,6 @@ export interface InvalidEventDataStoreStatusException extends __SmithyException,
1514
1294
 
1515
1295
  Message?: string;
1516
1296
  }
1517
- export declare namespace InvalidEventDataStoreStatusException {
1518
-
1519
- const filterSensitiveLog: (obj: InvalidEventDataStoreStatusException) => any;
1520
- }
1521
1297
  export interface RestoreEventDataStoreRequest {
1522
1298
 
1523
1299
  EventDataStore: string | undefined;
@@ -1575,10 +1351,6 @@ export interface InvalidQueryStatementException extends __SmithyException, $Meta
1575
1351
 
1576
1352
  Message?: string;
1577
1353
  }
1578
- export declare namespace InvalidQueryStatementException {
1579
-
1580
- const filterSensitiveLog: (obj: InvalidQueryStatementException) => any;
1581
- }
1582
1354
 
1583
1355
  export interface MaxConcurrentQueriesException extends __SmithyException, $MetadataBearer {
1584
1356
  name: "MaxConcurrentQueriesException";
@@ -1586,10 +1358,6 @@ export interface MaxConcurrentQueriesException extends __SmithyException, $Metad
1586
1358
 
1587
1359
  Message?: string;
1588
1360
  }
1589
- export declare namespace MaxConcurrentQueriesException {
1590
-
1591
- const filterSensitiveLog: (obj: MaxConcurrentQueriesException) => any;
1592
- }
1593
1361
  export interface StartQueryRequest {
1594
1362
 
1595
1363
  QueryStatement: string | undefined;