@aws-sdk/client-cloudtrail 3.170.0 → 3.171.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/CloudTrail.d.ts +0 -31
  3. package/dist-types/ts3.4/CloudTrailClient.d.ts +0 -25
  4. package/dist-types/ts3.4/commands/AddTagsCommand.d.ts +0 -2
  5. package/dist-types/ts3.4/commands/CancelQueryCommand.d.ts +0 -2
  6. package/dist-types/ts3.4/commands/CreateEventDataStoreCommand.d.ts +0 -2
  7. package/dist-types/ts3.4/commands/CreateTrailCommand.d.ts +0 -2
  8. package/dist-types/ts3.4/commands/DeleteEventDataStoreCommand.d.ts +0 -2
  9. package/dist-types/ts3.4/commands/DeleteTrailCommand.d.ts +0 -2
  10. package/dist-types/ts3.4/commands/DescribeQueryCommand.d.ts +0 -2
  11. package/dist-types/ts3.4/commands/DescribeTrailsCommand.d.ts +0 -2
  12. package/dist-types/ts3.4/commands/GetChannelCommand.d.ts +0 -2
  13. package/dist-types/ts3.4/commands/GetEventDataStoreCommand.d.ts +0 -2
  14. package/dist-types/ts3.4/commands/GetEventSelectorsCommand.d.ts +0 -2
  15. package/dist-types/ts3.4/commands/GetInsightSelectorsCommand.d.ts +0 -2
  16. package/dist-types/ts3.4/commands/GetQueryResultsCommand.d.ts +0 -2
  17. package/dist-types/ts3.4/commands/GetTrailCommand.d.ts +0 -2
  18. package/dist-types/ts3.4/commands/GetTrailStatusCommand.d.ts +0 -2
  19. package/dist-types/ts3.4/commands/ListChannelsCommand.d.ts +0 -2
  20. package/dist-types/ts3.4/commands/ListEventDataStoresCommand.d.ts +0 -2
  21. package/dist-types/ts3.4/commands/ListPublicKeysCommand.d.ts +0 -2
  22. package/dist-types/ts3.4/commands/ListQueriesCommand.d.ts +0 -2
  23. package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +0 -2
  24. package/dist-types/ts3.4/commands/ListTrailsCommand.d.ts +0 -2
  25. package/dist-types/ts3.4/commands/LookupEventsCommand.d.ts +0 -2
  26. package/dist-types/ts3.4/commands/PutEventSelectorsCommand.d.ts +0 -2
  27. package/dist-types/ts3.4/commands/PutInsightSelectorsCommand.d.ts +0 -2
  28. package/dist-types/ts3.4/commands/RemoveTagsCommand.d.ts +0 -2
  29. package/dist-types/ts3.4/commands/RestoreEventDataStoreCommand.d.ts +0 -2
  30. package/dist-types/ts3.4/commands/StartLoggingCommand.d.ts +0 -2
  31. package/dist-types/ts3.4/commands/StartQueryCommand.d.ts +0 -2
  32. package/dist-types/ts3.4/commands/StopLoggingCommand.d.ts +0 -2
  33. package/dist-types/ts3.4/commands/UpdateEventDataStoreCommand.d.ts +0 -2
  34. package/dist-types/ts3.4/commands/UpdateTrailCommand.d.ts +0 -2
  35. package/dist-types/ts3.4/models/CloudTrailServiceException.d.ts +0 -1
  36. package/dist-types/ts3.4/models/models_0.d.ts +0 -531
  37. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -1
  38. package/dist-types/ts3.4/runtimeConfig.d.ts +0 -1
  39. package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -1
  40. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
  41. package/package.json +26 -26
@@ -1,46 +1,32 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { CloudTrailServiceException as __BaseException } from "./CloudTrailServiceException";
3
-
4
3
  export interface Tag {
5
4
  Key: string | undefined;
6
-
7
5
  Value?: string;
8
6
  }
9
-
10
7
  export interface AddTagsRequest {
11
8
  ResourceId: string | undefined;
12
-
13
9
  TagsList: Tag[] | undefined;
14
10
  }
15
-
16
11
  export interface AddTagsResponse {}
17
-
18
12
  export declare class CloudTrailARNInvalidException extends __BaseException {
19
13
  readonly name: "CloudTrailARNInvalidException";
20
14
  readonly $fault: "client";
21
-
22
15
  Message?: string;
23
-
24
16
  constructor(
25
17
  opts: __ExceptionOptionType<CloudTrailARNInvalidException, __BaseException>
26
18
  );
27
19
  }
28
-
29
20
  export declare class ConflictException extends __BaseException {
30
21
  readonly name: "ConflictException";
31
22
  readonly $fault: "client";
32
-
33
23
  Message?: string;
34
-
35
24
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
36
25
  }
37
-
38
26
  export declare class EventDataStoreNotFoundException extends __BaseException {
39
27
  readonly name: "EventDataStoreNotFoundException";
40
28
  readonly $fault: "client";
41
-
42
29
  Message?: string;
43
-
44
30
  constructor(
45
31
  opts: __ExceptionOptionType<
46
32
  EventDataStoreNotFoundException,
@@ -48,13 +34,10 @@ export declare class EventDataStoreNotFoundException extends __BaseException {
48
34
  >
49
35
  );
50
36
  }
51
-
52
37
  export declare class InactiveEventDataStoreException extends __BaseException {
53
38
  readonly name: "InactiveEventDataStoreException";
54
39
  readonly $fault: "client";
55
-
56
40
  Message?: string;
57
-
58
41
  constructor(
59
42
  opts: __ExceptionOptionType<
60
43
  InactiveEventDataStoreException,
@@ -62,35 +45,26 @@ export declare class InactiveEventDataStoreException extends __BaseException {
62
45
  >
63
46
  );
64
47
  }
65
-
66
48
  export declare class InvalidTagParameterException extends __BaseException {
67
49
  readonly name: "InvalidTagParameterException";
68
50
  readonly $fault: "client";
69
-
70
51
  Message?: string;
71
-
72
52
  constructor(
73
53
  opts: __ExceptionOptionType<InvalidTagParameterException, __BaseException>
74
54
  );
75
55
  }
76
-
77
56
  export declare class InvalidTrailNameException extends __BaseException {
78
57
  readonly name: "InvalidTrailNameException";
79
58
  readonly $fault: "client";
80
-
81
59
  Message?: string;
82
-
83
60
  constructor(
84
61
  opts: __ExceptionOptionType<InvalidTrailNameException, __BaseException>
85
62
  );
86
63
  }
87
-
88
64
  export declare class NotOrganizationMasterAccountException extends __BaseException {
89
65
  readonly name: "NotOrganizationMasterAccountException";
90
66
  readonly $fault: "client";
91
-
92
67
  Message?: string;
93
-
94
68
  constructor(
95
69
  opts: __ExceptionOptionType<
96
70
  NotOrganizationMasterAccountException,
@@ -98,35 +72,26 @@ export declare class NotOrganizationMasterAccountException extends __BaseExcepti
98
72
  >
99
73
  );
100
74
  }
101
-
102
75
  export declare class OperationNotPermittedException extends __BaseException {
103
76
  readonly name: "OperationNotPermittedException";
104
77
  readonly $fault: "client";
105
-
106
78
  Message?: string;
107
-
108
79
  constructor(
109
80
  opts: __ExceptionOptionType<OperationNotPermittedException, __BaseException>
110
81
  );
111
82
  }
112
-
113
83
  export declare class ResourceNotFoundException extends __BaseException {
114
84
  readonly name: "ResourceNotFoundException";
115
85
  readonly $fault: "client";
116
-
117
86
  Message?: string;
118
-
119
87
  constructor(
120
88
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
121
89
  );
122
90
  }
123
-
124
91
  export declare class ResourceTypeNotSupportedException extends __BaseException {
125
92
  readonly name: "ResourceTypeNotSupportedException";
126
93
  readonly $fault: "client";
127
-
128
94
  Message?: string;
129
-
130
95
  constructor(
131
96
  opts: __ExceptionOptionType<
132
97
  ResourceTypeNotSupportedException,
@@ -134,53 +99,37 @@ export declare class ResourceTypeNotSupportedException extends __BaseException {
134
99
  >
135
100
  );
136
101
  }
137
-
138
102
  export declare class TagsLimitExceededException extends __BaseException {
139
103
  readonly name: "TagsLimitExceededException";
140
104
  readonly $fault: "client";
141
-
142
105
  Message?: string;
143
-
144
106
  constructor(
145
107
  opts: __ExceptionOptionType<TagsLimitExceededException, __BaseException>
146
108
  );
147
109
  }
148
-
149
110
  export declare class UnsupportedOperationException extends __BaseException {
150
111
  readonly name: "UnsupportedOperationException";
151
112
  readonly $fault: "client";
152
-
153
113
  Message?: string;
154
-
155
114
  constructor(
156
115
  opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>
157
116
  );
158
117
  }
159
-
160
118
  export interface AdvancedFieldSelector {
161
119
  Field: string | undefined;
162
-
163
120
  Equals?: string[];
164
-
165
121
  StartsWith?: string[];
166
-
167
122
  EndsWith?: string[];
168
-
169
123
  NotEquals?: string[];
170
-
171
124
  NotStartsWith?: string[];
172
-
173
125
  NotEndsWith?: string[];
174
126
  }
175
-
176
127
  export interface AdvancedEventSelector {
177
128
  Name?: string;
178
-
179
129
  FieldSelectors: AdvancedFieldSelector[] | undefined;
180
130
  }
181
131
  export interface CancelQueryRequest {
182
132
  EventDataStore: string | undefined;
183
-
184
133
  QueryId: string | undefined;
185
134
  }
186
135
  export declare enum QueryStatus {
@@ -193,16 +142,12 @@ export declare enum QueryStatus {
193
142
  }
194
143
  export interface CancelQueryResponse {
195
144
  QueryId: string | undefined;
196
-
197
145
  QueryStatus: QueryStatus | string | undefined;
198
146
  }
199
-
200
147
  export declare class EventDataStoreARNInvalidException extends __BaseException {
201
148
  readonly name: "EventDataStoreARNInvalidException";
202
149
  readonly $fault: "client";
203
-
204
150
  Message?: string;
205
-
206
151
  constructor(
207
152
  opts: __ExceptionOptionType<
208
153
  EventDataStoreARNInvalidException,
@@ -210,74 +155,54 @@ export declare class EventDataStoreARNInvalidException extends __BaseException {
210
155
  >
211
156
  );
212
157
  }
213
-
214
158
  export declare class InactiveQueryException extends __BaseException {
215
159
  readonly name: "InactiveQueryException";
216
160
  readonly $fault: "client";
217
-
218
161
  Message?: string;
219
-
220
162
  constructor(
221
163
  opts: __ExceptionOptionType<InactiveQueryException, __BaseException>
222
164
  );
223
165
  }
224
-
225
166
  export declare class InvalidParameterException extends __BaseException {
226
167
  readonly name: "InvalidParameterException";
227
168
  readonly $fault: "client";
228
-
229
169
  Message?: string;
230
-
231
170
  constructor(
232
171
  opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
233
172
  );
234
173
  }
235
-
236
174
  export declare class QueryIdNotFoundException extends __BaseException {
237
175
  readonly name: "QueryIdNotFoundException";
238
176
  readonly $fault: "client";
239
-
240
177
  Message?: string;
241
-
242
178
  constructor(
243
179
  opts: __ExceptionOptionType<QueryIdNotFoundException, __BaseException>
244
180
  );
245
181
  }
246
-
247
182
  export interface Channel {
248
183
  ChannelArn?: string;
249
-
250
184
  Name?: string;
251
185
  }
252
-
253
186
  export declare class ChannelARNInvalidException extends __BaseException {
254
187
  readonly name: "ChannelARNInvalidException";
255
188
  readonly $fault: "client";
256
-
257
189
  Message?: string;
258
-
259
190
  constructor(
260
191
  opts: __ExceptionOptionType<ChannelARNInvalidException, __BaseException>
261
192
  );
262
193
  }
263
-
264
194
  export declare class ChannelNotFoundException extends __BaseException {
265
195
  readonly name: "ChannelNotFoundException";
266
196
  readonly $fault: "client";
267
-
268
197
  Message?: string;
269
-
270
198
  constructor(
271
199
  opts: __ExceptionOptionType<ChannelNotFoundException, __BaseException>
272
200
  );
273
201
  }
274
-
275
202
  export declare class CloudTrailAccessNotEnabledException extends __BaseException {
276
203
  readonly name: "CloudTrailAccessNotEnabledException";
277
204
  readonly $fault: "client";
278
-
279
205
  Message?: string;
280
-
281
206
  constructor(
282
207
  opts: __ExceptionOptionType<
283
208
  CloudTrailAccessNotEnabledException,
@@ -287,17 +212,11 @@ export declare class CloudTrailAccessNotEnabledException extends __BaseException
287
212
  }
288
213
  export interface CreateEventDataStoreRequest {
289
214
  Name: string | undefined;
290
-
291
215
  AdvancedEventSelectors?: AdvancedEventSelector[];
292
-
293
216
  MultiRegionEnabled?: boolean;
294
-
295
217
  OrganizationEnabled?: boolean;
296
-
297
218
  RetentionPeriod?: number;
298
-
299
219
  TerminationProtectionEnabled?: boolean;
300
-
301
220
  TagsList?: Tag[];
302
221
  }
303
222
  export declare enum EventDataStoreStatus {
@@ -307,34 +226,21 @@ export declare enum EventDataStoreStatus {
307
226
  }
308
227
  export interface CreateEventDataStoreResponse {
309
228
  EventDataStoreArn?: string;
310
-
311
229
  Name?: string;
312
-
313
230
  Status?: EventDataStoreStatus | string;
314
-
315
231
  AdvancedEventSelectors?: AdvancedEventSelector[];
316
-
317
232
  MultiRegionEnabled?: boolean;
318
-
319
233
  OrganizationEnabled?: boolean;
320
-
321
234
  RetentionPeriod?: number;
322
-
323
235
  TerminationProtectionEnabled?: boolean;
324
-
325
236
  TagsList?: Tag[];
326
-
327
237
  CreatedTimestamp?: Date;
328
-
329
238
  UpdatedTimestamp?: Date;
330
239
  }
331
-
332
240
  export declare class EventDataStoreAlreadyExistsException extends __BaseException {
333
241
  readonly name: "EventDataStoreAlreadyExistsException";
334
242
  readonly $fault: "client";
335
-
336
243
  Message?: string;
337
-
338
244
  constructor(
339
245
  opts: __ExceptionOptionType<
340
246
  EventDataStoreAlreadyExistsException,
@@ -342,13 +248,10 @@ export declare class EventDataStoreAlreadyExistsException extends __BaseExceptio
342
248
  >
343
249
  );
344
250
  }
345
-
346
251
  export declare class EventDataStoreMaxLimitExceededException extends __BaseException {
347
252
  readonly name: "EventDataStoreMaxLimitExceededException";
348
253
  readonly $fault: "client";
349
-
350
254
  Message?: string;
351
-
352
255
  constructor(
353
256
  opts: __ExceptionOptionType<
354
257
  EventDataStoreMaxLimitExceededException,
@@ -356,13 +259,10 @@ export declare class EventDataStoreMaxLimitExceededException extends __BaseExcep
356
259
  >
357
260
  );
358
261
  }
359
-
360
262
  export declare class InsufficientDependencyServiceAccessPermissionException extends __BaseException {
361
263
  readonly name: "InsufficientDependencyServiceAccessPermissionException";
362
264
  readonly $fault: "client";
363
-
364
265
  Message?: string;
365
-
366
266
  constructor(
367
267
  opts: __ExceptionOptionType<
368
268
  InsufficientDependencyServiceAccessPermissionException,
@@ -370,13 +270,10 @@ export declare class InsufficientDependencyServiceAccessPermissionException exte
370
270
  >
371
271
  );
372
272
  }
373
-
374
273
  export declare class OrganizationNotInAllFeaturesModeException extends __BaseException {
375
274
  readonly name: "OrganizationNotInAllFeaturesModeException";
376
275
  readonly $fault: "client";
377
-
378
276
  Message?: string;
379
-
380
277
  constructor(
381
278
  opts: __ExceptionOptionType<
382
279
  OrganizationNotInAllFeaturesModeException,
@@ -384,24 +281,18 @@ export declare class OrganizationNotInAllFeaturesModeException extends __BaseExc
384
281
  >
385
282
  );
386
283
  }
387
-
388
284
  export declare class OrganizationsNotInUseException extends __BaseException {
389
285
  readonly name: "OrganizationsNotInUseException";
390
286
  readonly $fault: "client";
391
-
392
287
  Message?: string;
393
-
394
288
  constructor(
395
289
  opts: __ExceptionOptionType<OrganizationsNotInUseException, __BaseException>
396
290
  );
397
291
  }
398
-
399
292
  export declare class CloudTrailInvalidClientTokenIdException extends __BaseException {
400
293
  readonly name: "CloudTrailInvalidClientTokenIdException";
401
294
  readonly $fault: "client";
402
-
403
295
  Message?: string;
404
-
405
296
  constructor(
406
297
  opts: __ExceptionOptionType<
407
298
  CloudTrailInvalidClientTokenIdException,
@@ -409,13 +300,10 @@ export declare class CloudTrailInvalidClientTokenIdException extends __BaseExcep
409
300
  >
410
301
  );
411
302
  }
412
-
413
303
  export declare class CloudWatchLogsDeliveryUnavailableException extends __BaseException {
414
304
  readonly name: "CloudWatchLogsDeliveryUnavailableException";
415
305
  readonly $fault: "client";
416
-
417
306
  Message?: string;
418
-
419
307
  constructor(
420
308
  opts: __ExceptionOptionType<
421
309
  CloudWatchLogsDeliveryUnavailableException,
@@ -423,67 +311,39 @@ export declare class CloudWatchLogsDeliveryUnavailableException extends __BaseEx
423
311
  >
424
312
  );
425
313
  }
426
-
427
314
  export interface CreateTrailRequest {
428
315
  Name: string | undefined;
429
-
430
316
  S3BucketName: string | undefined;
431
-
432
317
  S3KeyPrefix?: string;
433
-
434
318
  SnsTopicName?: string;
435
-
436
319
  IncludeGlobalServiceEvents?: boolean;
437
-
438
320
  IsMultiRegionTrail?: boolean;
439
-
440
321
  EnableLogFileValidation?: boolean;
441
-
442
322
  CloudWatchLogsLogGroupArn?: string;
443
-
444
323
  CloudWatchLogsRoleArn?: string;
445
-
446
324
  KmsKeyId?: string;
447
-
448
325
  IsOrganizationTrail?: boolean;
449
-
450
326
  TagsList?: Tag[];
451
327
  }
452
-
453
328
  export interface CreateTrailResponse {
454
329
  Name?: string;
455
-
456
330
  S3BucketName?: string;
457
-
458
331
  S3KeyPrefix?: string;
459
-
460
332
  SnsTopicName?: string;
461
-
462
333
  SnsTopicARN?: string;
463
-
464
334
  IncludeGlobalServiceEvents?: boolean;
465
-
466
335
  IsMultiRegionTrail?: boolean;
467
-
468
336
  TrailARN?: string;
469
-
470
337
  LogFileValidationEnabled?: boolean;
471
-
472
338
  CloudWatchLogsLogGroupArn?: string;
473
-
474
339
  CloudWatchLogsRoleArn?: string;
475
-
476
340
  KmsKeyId?: string;
477
-
478
341
  IsOrganizationTrail?: boolean;
479
342
  }
480
-
481
343
  export declare class InsufficientEncryptionPolicyException extends __BaseException {
482
344
  readonly name: "InsufficientEncryptionPolicyException";
483
345
  readonly $fault: "client";
484
-
485
346
  Message?: string;
486
-
487
347
  constructor(
488
348
  opts: __ExceptionOptionType<
489
349
  InsufficientEncryptionPolicyException,
@@ -491,13 +351,10 @@ export declare class InsufficientEncryptionPolicyException extends __BaseExcepti
491
351
  >
492
352
  );
493
353
  }
494
-
495
354
  export declare class InsufficientS3BucketPolicyException extends __BaseException {
496
355
  readonly name: "InsufficientS3BucketPolicyException";
497
356
  readonly $fault: "client";
498
-
499
357
  Message?: string;
500
-
501
358
  constructor(
502
359
  opts: __ExceptionOptionType<
503
360
  InsufficientS3BucketPolicyException,
@@ -505,13 +362,10 @@ export declare class InsufficientS3BucketPolicyException extends __BaseException
505
362
  >
506
363
  );
507
364
  }
508
-
509
365
  export declare class InsufficientSnsTopicPolicyException extends __BaseException {
510
366
  readonly name: "InsufficientSnsTopicPolicyException";
511
367
  readonly $fault: "client";
512
-
513
368
  Message?: string;
514
-
515
369
  constructor(
516
370
  opts: __ExceptionOptionType<
517
371
  InsufficientSnsTopicPolicyException,
@@ -519,13 +373,10 @@ export declare class InsufficientSnsTopicPolicyException extends __BaseException
519
373
  >
520
374
  );
521
375
  }
522
-
523
376
  export declare class InvalidCloudWatchLogsLogGroupArnException extends __BaseException {
524
377
  readonly name: "InvalidCloudWatchLogsLogGroupArnException";
525
378
  readonly $fault: "client";
526
-
527
379
  Message?: string;
528
-
529
380
  constructor(
530
381
  opts: __ExceptionOptionType<
531
382
  InvalidCloudWatchLogsLogGroupArnException,
@@ -533,13 +384,10 @@ export declare class InvalidCloudWatchLogsLogGroupArnException extends __BaseExc
533
384
  >
534
385
  );
535
386
  }
536
-
537
387
  export declare class InvalidCloudWatchLogsRoleArnException extends __BaseException {
538
388
  readonly name: "InvalidCloudWatchLogsRoleArnException";
539
389
  readonly $fault: "client";
540
-
541
390
  Message?: string;
542
-
543
391
  constructor(
544
392
  opts: __ExceptionOptionType<
545
393
  InvalidCloudWatchLogsRoleArnException,
@@ -547,24 +395,18 @@ export declare class InvalidCloudWatchLogsRoleArnException extends __BaseExcepti
547
395
  >
548
396
  );
549
397
  }
550
-
551
398
  export declare class InvalidKmsKeyIdException extends __BaseException {
552
399
  readonly name: "InvalidKmsKeyIdException";
553
400
  readonly $fault: "client";
554
-
555
401
  Message?: string;
556
-
557
402
  constructor(
558
403
  opts: __ExceptionOptionType<InvalidKmsKeyIdException, __BaseException>
559
404
  );
560
405
  }
561
-
562
406
  export declare class InvalidParameterCombinationException extends __BaseException {
563
407
  readonly name: "InvalidParameterCombinationException";
564
408
  readonly $fault: "client";
565
-
566
409
  Message?: string;
567
-
568
410
  constructor(
569
411
  opts: __ExceptionOptionType<
570
412
  InvalidParameterCombinationException,
@@ -572,77 +414,56 @@ export declare class InvalidParameterCombinationException extends __BaseExceptio
572
414
  >
573
415
  );
574
416
  }
575
-
576
417
  export declare class InvalidS3BucketNameException extends __BaseException {
577
418
  readonly name: "InvalidS3BucketNameException";
578
419
  readonly $fault: "client";
579
-
580
420
  Message?: string;
581
-
582
421
  constructor(
583
422
  opts: __ExceptionOptionType<InvalidS3BucketNameException, __BaseException>
584
423
  );
585
424
  }
586
-
587
425
  export declare class InvalidS3PrefixException extends __BaseException {
588
426
  readonly name: "InvalidS3PrefixException";
589
427
  readonly $fault: "client";
590
-
591
428
  Message?: string;
592
-
593
429
  constructor(
594
430
  opts: __ExceptionOptionType<InvalidS3PrefixException, __BaseException>
595
431
  );
596
432
  }
597
-
598
433
  export declare class InvalidSnsTopicNameException extends __BaseException {
599
434
  readonly name: "InvalidSnsTopicNameException";
600
435
  readonly $fault: "client";
601
-
602
436
  Message?: string;
603
-
604
437
  constructor(
605
438
  opts: __ExceptionOptionType<InvalidSnsTopicNameException, __BaseException>
606
439
  );
607
440
  }
608
-
609
441
  export declare class KmsException extends __BaseException {
610
442
  readonly name: "KmsException";
611
443
  readonly $fault: "client";
612
-
613
444
  Message?: string;
614
-
615
445
  constructor(opts: __ExceptionOptionType<KmsException, __BaseException>);
616
446
  }
617
-
618
447
  export declare class KmsKeyDisabledException extends __BaseException {
619
448
  readonly name: "KmsKeyDisabledException";
620
449
  readonly $fault: "client";
621
-
622
450
  Message?: string;
623
-
624
451
  constructor(
625
452
  opts: __ExceptionOptionType<KmsKeyDisabledException, __BaseException>
626
453
  );
627
454
  }
628
-
629
455
  export declare class KmsKeyNotFoundException extends __BaseException {
630
456
  readonly name: "KmsKeyNotFoundException";
631
457
  readonly $fault: "client";
632
-
633
458
  Message?: string;
634
-
635
459
  constructor(
636
460
  opts: __ExceptionOptionType<KmsKeyNotFoundException, __BaseException>
637
461
  );
638
462
  }
639
-
640
463
  export declare class MaximumNumberOfTrailsExceededException extends __BaseException {
641
464
  readonly name: "MaximumNumberOfTrailsExceededException";
642
465
  readonly $fault: "client";
643
-
644
466
  Message?: string;
645
-
646
467
  constructor(
647
468
  opts: __ExceptionOptionType<
648
469
  MaximumNumberOfTrailsExceededException,
@@ -650,35 +471,26 @@ export declare class MaximumNumberOfTrailsExceededException extends __BaseExcept
650
471
  >
651
472
  );
652
473
  }
653
-
654
474
  export declare class S3BucketDoesNotExistException extends __BaseException {
655
475
  readonly name: "S3BucketDoesNotExistException";
656
476
  readonly $fault: "client";
657
-
658
477
  Message?: string;
659
-
660
478
  constructor(
661
479
  opts: __ExceptionOptionType<S3BucketDoesNotExistException, __BaseException>
662
480
  );
663
481
  }
664
-
665
482
  export declare class TrailAlreadyExistsException extends __BaseException {
666
483
  readonly name: "TrailAlreadyExistsException";
667
484
  readonly $fault: "client";
668
-
669
485
  Message?: string;
670
-
671
486
  constructor(
672
487
  opts: __ExceptionOptionType<TrailAlreadyExistsException, __BaseException>
673
488
  );
674
489
  }
675
-
676
490
  export declare class TrailNotProvidedException extends __BaseException {
677
491
  readonly name: "TrailNotProvidedException";
678
492
  readonly $fault: "client";
679
-
680
493
  Message?: string;
681
-
682
494
  constructor(
683
495
  opts: __ExceptionOptionType<TrailNotProvidedException, __BaseException>
684
496
  );
@@ -687,13 +499,10 @@ export interface DeleteEventDataStoreRequest {
687
499
  EventDataStore: string | undefined;
688
500
  }
689
501
  export interface DeleteEventDataStoreResponse {}
690
-
691
502
  export declare class EventDataStoreTerminationProtectedException extends __BaseException {
692
503
  readonly name: "EventDataStoreTerminationProtectedException";
693
504
  readonly $fault: "client";
694
-
695
505
  Message?: string;
696
-
697
506
  constructor(
698
507
  opts: __ExceptionOptionType<
699
508
  EventDataStoreTerminationProtectedException,
@@ -701,103 +510,66 @@ export declare class EventDataStoreTerminationProtectedException extends __BaseE
701
510
  >
702
511
  );
703
512
  }
704
-
705
513
  export interface DeleteTrailRequest {
706
514
  Name: string | undefined;
707
515
  }
708
-
709
516
  export interface DeleteTrailResponse {}
710
-
711
517
  export declare class InvalidHomeRegionException extends __BaseException {
712
518
  readonly name: "InvalidHomeRegionException";
713
519
  readonly $fault: "client";
714
-
715
520
  Message?: string;
716
-
717
521
  constructor(
718
522
  opts: __ExceptionOptionType<InvalidHomeRegionException, __BaseException>
719
523
  );
720
524
  }
721
-
722
525
  export declare class TrailNotFoundException extends __BaseException {
723
526
  readonly name: "TrailNotFoundException";
724
527
  readonly $fault: "client";
725
-
726
528
  Message?: string;
727
-
728
529
  constructor(
729
530
  opts: __ExceptionOptionType<TrailNotFoundException, __BaseException>
730
531
  );
731
532
  }
732
533
  export interface DescribeQueryRequest {
733
534
  EventDataStore: string | undefined;
734
-
735
535
  QueryId: string | undefined;
736
536
  }
737
-
738
537
  export interface QueryStatisticsForDescribeQuery {
739
538
  EventsMatched?: number;
740
-
741
539
  EventsScanned?: number;
742
-
743
540
  BytesScanned?: number;
744
-
745
541
  ExecutionTimeInMillis?: number;
746
-
747
542
  CreationTime?: Date;
748
543
  }
749
544
  export interface DescribeQueryResponse {
750
545
  QueryId?: string;
751
-
752
546
  QueryString?: string;
753
-
754
547
  QueryStatus?: QueryStatus | string;
755
-
756
548
  QueryStatistics?: QueryStatisticsForDescribeQuery;
757
-
758
549
  ErrorMessage?: string;
759
550
  }
760
-
761
551
  export interface DescribeTrailsRequest {
762
552
  trailNameList?: string[];
763
-
764
553
  includeShadowTrails?: boolean;
765
554
  }
766
-
767
555
  export interface Trail {
768
556
  Name?: string;
769
-
770
557
  S3BucketName?: string;
771
-
772
558
  S3KeyPrefix?: string;
773
-
774
559
  SnsTopicName?: string;
775
-
776
560
  SnsTopicARN?: string;
777
-
778
561
  IncludeGlobalServiceEvents?: boolean;
779
-
780
562
  IsMultiRegionTrail?: boolean;
781
-
782
563
  HomeRegion?: string;
783
-
784
564
  TrailARN?: string;
785
-
786
565
  LogFileValidationEnabled?: boolean;
787
-
788
566
  CloudWatchLogsLogGroupArn?: string;
789
-
790
567
  CloudWatchLogsRoleArn?: string;
791
-
792
568
  KmsKeyId?: string;
793
-
794
569
  HasCustomEventSelectors?: boolean;
795
-
796
570
  HasInsightSelectors?: boolean;
797
-
798
571
  IsOrganizationTrail?: boolean;
799
572
  }
800
-
801
573
  export interface DescribeTrailsResponse {
802
574
  trailList?: Trail[];
803
575
  }
@@ -808,27 +580,19 @@ export declare enum DestinationType {
808
580
  AWS_SERVICE = "AWS_SERVICE",
809
581
  EVENT_DATA_STORE = "EVENT_DATA_STORE",
810
582
  }
811
-
812
583
  export interface Destination {
813
584
  Type: DestinationType | string | undefined;
814
-
815
585
  Location: string | undefined;
816
586
  }
817
-
818
587
  export interface SourceConfig {
819
588
  ApplyToAllRegions?: boolean;
820
-
821
589
  AdvancedEventSelectors?: AdvancedEventSelector[];
822
590
  }
823
591
  export interface GetChannelResponse {
824
592
  ChannelArn?: string;
825
-
826
593
  Name?: string;
827
-
828
594
  Source?: string;
829
-
830
595
  SourceConfig?: SourceConfig;
831
-
832
596
  Destinations?: Destination[];
833
597
  }
834
598
  export interface GetEventDataStoreRequest {
@@ -836,32 +600,21 @@ export interface GetEventDataStoreRequest {
836
600
  }
837
601
  export interface GetEventDataStoreResponse {
838
602
  EventDataStoreArn?: string;
839
-
840
603
  Name?: string;
841
-
842
604
  Status?: EventDataStoreStatus | string;
843
-
844
605
  AdvancedEventSelectors?: AdvancedEventSelector[];
845
-
846
606
  MultiRegionEnabled?: boolean;
847
-
848
607
  OrganizationEnabled?: boolean;
849
-
850
608
  RetentionPeriod?: number;
851
-
852
609
  TerminationProtectionEnabled?: boolean;
853
-
854
610
  CreatedTimestamp?: Date;
855
-
856
611
  UpdatedTimestamp?: Date;
857
612
  }
858
613
  export interface GetEventSelectorsRequest {
859
614
  TrailName: string | undefined;
860
615
  }
861
-
862
616
  export interface DataResource {
863
617
  Type?: string;
864
-
865
618
  Values?: string[];
866
619
  }
867
620
  export declare enum ReadWriteType {
@@ -869,21 +622,15 @@ export declare enum ReadWriteType {
869
622
  ReadOnly = "ReadOnly",
870
623
  WriteOnly = "WriteOnly",
871
624
  }
872
-
873
625
  export interface EventSelector {
874
626
  ReadWriteType?: ReadWriteType | string;
875
-
876
627
  IncludeManagementEvents?: boolean;
877
-
878
628
  DataResources?: DataResource[];
879
-
880
629
  ExcludeManagementEventSources?: string[];
881
630
  }
882
631
  export interface GetEventSelectorsResponse {
883
632
  TrailARN?: string;
884
-
885
633
  EventSelectors?: EventSelector[];
886
-
887
634
  AdvancedEventSelectors?: AdvancedEventSelector[];
888
635
  }
889
636
  export interface GetInsightSelectorsRequest {
@@ -893,72 +640,51 @@ export declare enum InsightType {
893
640
  ApiCallRateInsight = "ApiCallRateInsight",
894
641
  ApiErrorRateInsight = "ApiErrorRateInsight",
895
642
  }
896
-
897
643
  export interface InsightSelector {
898
644
  InsightType?: InsightType | string;
899
645
  }
900
646
  export interface GetInsightSelectorsResponse {
901
647
  TrailARN?: string;
902
-
903
648
  InsightSelectors?: InsightSelector[];
904
649
  }
905
-
906
650
  export declare class InsightNotEnabledException extends __BaseException {
907
651
  readonly name: "InsightNotEnabledException";
908
652
  readonly $fault: "client";
909
-
910
653
  Message?: string;
911
-
912
654
  constructor(
913
655
  opts: __ExceptionOptionType<InsightNotEnabledException, __BaseException>
914
656
  );
915
657
  }
916
658
  export interface GetQueryResultsRequest {
917
659
  EventDataStore: string | undefined;
918
-
919
660
  QueryId: string | undefined;
920
-
921
661
  NextToken?: string;
922
-
923
662
  MaxQueryResults?: number;
924
663
  }
925
-
926
664
  export interface QueryStatistics {
927
665
  ResultsCount?: number;
928
-
929
666
  TotalResultsCount?: number;
930
-
931
667
  BytesScanned?: number;
932
668
  }
933
669
  export interface GetQueryResultsResponse {
934
670
  QueryStatus?: QueryStatus | string;
935
-
936
671
  QueryStatistics?: QueryStatistics;
937
-
938
672
  QueryResultRows?: Record<string, string>[][];
939
-
940
673
  NextToken?: string;
941
-
942
674
  ErrorMessage?: string;
943
675
  }
944
-
945
676
  export declare class InvalidMaxResultsException extends __BaseException {
946
677
  readonly name: "InvalidMaxResultsException";
947
678
  readonly $fault: "client";
948
-
949
679
  Message?: string;
950
-
951
680
  constructor(
952
681
  opts: __ExceptionOptionType<InvalidMaxResultsException, __BaseException>
953
682
  );
954
683
  }
955
-
956
684
  export declare class InvalidNextTokenException extends __BaseException {
957
685
  readonly name: "InvalidNextTokenException";
958
686
  readonly $fault: "client";
959
-
960
687
  Message?: string;
961
-
962
688
  constructor(
963
689
  opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>
964
690
  );
@@ -969,234 +695,156 @@ export interface GetTrailRequest {
969
695
  export interface GetTrailResponse {
970
696
  Trail?: Trail;
971
697
  }
972
-
973
698
  export interface GetTrailStatusRequest {
974
699
  Name: string | undefined;
975
700
  }
976
-
977
701
  export interface GetTrailStatusResponse {
978
702
  IsLogging?: boolean;
979
-
980
703
  LatestDeliveryError?: string;
981
-
982
704
  LatestNotificationError?: string;
983
-
984
705
  LatestDeliveryTime?: Date;
985
-
986
706
  LatestNotificationTime?: Date;
987
-
988
707
  StartLoggingTime?: Date;
989
-
990
708
  StopLoggingTime?: Date;
991
-
992
709
  LatestCloudWatchLogsDeliveryError?: string;
993
-
994
710
  LatestCloudWatchLogsDeliveryTime?: Date;
995
-
996
711
  LatestDigestDeliveryTime?: Date;
997
-
998
712
  LatestDigestDeliveryError?: string;
999
-
1000
713
  LatestDeliveryAttemptTime?: string;
1001
-
1002
714
  LatestNotificationAttemptTime?: string;
1003
-
1004
715
  LatestNotificationAttemptSucceeded?: string;
1005
-
1006
716
  LatestDeliveryAttemptSucceeded?: string;
1007
-
1008
717
  TimeLoggingStarted?: string;
1009
-
1010
718
  TimeLoggingStopped?: string;
1011
719
  }
1012
720
  export interface ListChannelsRequest {
1013
721
  MaxResults?: number;
1014
-
1015
722
  NextToken?: string;
1016
723
  }
1017
724
  export interface ListChannelsResponse {
1018
725
  Channels?: Channel[];
1019
-
1020
726
  NextToken?: string;
1021
727
  }
1022
728
  export interface ListEventDataStoresRequest {
1023
729
  NextToken?: string;
1024
-
1025
730
  MaxResults?: number;
1026
731
  }
1027
-
1028
732
  export interface EventDataStore {
1029
733
  EventDataStoreArn?: string;
1030
-
1031
734
  Name?: string;
1032
-
1033
735
  TerminationProtectionEnabled?: boolean;
1034
-
1035
736
  Status?: EventDataStoreStatus | string;
1036
-
1037
737
  AdvancedEventSelectors?: AdvancedEventSelector[];
1038
-
1039
738
  MultiRegionEnabled?: boolean;
1040
-
1041
739
  OrganizationEnabled?: boolean;
1042
-
1043
740
  RetentionPeriod?: number;
1044
-
1045
741
  CreatedTimestamp?: Date;
1046
-
1047
742
  UpdatedTimestamp?: Date;
1048
743
  }
1049
744
  export interface ListEventDataStoresResponse {
1050
745
  EventDataStores?: EventDataStore[];
1051
-
1052
746
  NextToken?: string;
1053
747
  }
1054
-
1055
748
  export declare class InvalidTimeRangeException extends __BaseException {
1056
749
  readonly name: "InvalidTimeRangeException";
1057
750
  readonly $fault: "client";
1058
-
1059
751
  Message?: string;
1060
-
1061
752
  constructor(
1062
753
  opts: __ExceptionOptionType<InvalidTimeRangeException, __BaseException>
1063
754
  );
1064
755
  }
1065
-
1066
756
  export declare class InvalidTokenException extends __BaseException {
1067
757
  readonly name: "InvalidTokenException";
1068
758
  readonly $fault: "client";
1069
-
1070
759
  Message?: string;
1071
-
1072
760
  constructor(
1073
761
  opts: __ExceptionOptionType<InvalidTokenException, __BaseException>
1074
762
  );
1075
763
  }
1076
-
1077
764
  export interface ListPublicKeysRequest {
1078
765
  StartTime?: Date;
1079
-
1080
766
  EndTime?: Date;
1081
-
1082
767
  NextToken?: string;
1083
768
  }
1084
-
1085
769
  export interface PublicKey {
1086
770
  Value?: Uint8Array;
1087
-
1088
771
  ValidityStartTime?: Date;
1089
-
1090
772
  ValidityEndTime?: Date;
1091
-
1092
773
  Fingerprint?: string;
1093
774
  }
1094
-
1095
775
  export interface ListPublicKeysResponse {
1096
776
  PublicKeyList?: PublicKey[];
1097
-
1098
777
  NextToken?: string;
1099
778
  }
1100
-
1101
779
  export declare class InvalidDateRangeException extends __BaseException {
1102
780
  readonly name: "InvalidDateRangeException";
1103
781
  readonly $fault: "client";
1104
-
1105
782
  Message?: string;
1106
-
1107
783
  constructor(
1108
784
  opts: __ExceptionOptionType<InvalidDateRangeException, __BaseException>
1109
785
  );
1110
786
  }
1111
-
1112
787
  export declare class InvalidQueryStatusException extends __BaseException {
1113
788
  readonly name: "InvalidQueryStatusException";
1114
789
  readonly $fault: "client";
1115
-
1116
790
  Message?: string;
1117
-
1118
791
  constructor(
1119
792
  opts: __ExceptionOptionType<InvalidQueryStatusException, __BaseException>
1120
793
  );
1121
794
  }
1122
795
  export interface ListQueriesRequest {
1123
796
  EventDataStore: string | undefined;
1124
-
1125
797
  NextToken?: string;
1126
-
1127
798
  MaxResults?: number;
1128
-
1129
799
  StartTime?: Date;
1130
-
1131
800
  EndTime?: Date;
1132
-
1133
801
  QueryStatus?: QueryStatus | string;
1134
802
  }
1135
-
1136
803
  export interface Query {
1137
804
  QueryId?: string;
1138
-
1139
805
  QueryStatus?: QueryStatus | string;
1140
-
1141
806
  CreationTime?: Date;
1142
807
  }
1143
808
  export interface ListQueriesResponse {
1144
809
  Queries?: Query[];
1145
-
1146
810
  NextToken?: string;
1147
811
  }
1148
-
1149
812
  export interface ListTagsRequest {
1150
813
  ResourceIdList: string[] | undefined;
1151
-
1152
814
  NextToken?: string;
1153
815
  }
1154
-
1155
816
  export interface ResourceTag {
1156
817
  ResourceId?: string;
1157
-
1158
818
  TagsList?: Tag[];
1159
819
  }
1160
-
1161
820
  export interface ListTagsResponse {
1162
821
  ResourceTagList?: ResourceTag[];
1163
-
1164
822
  NextToken?: string;
1165
823
  }
1166
824
  export interface ListTrailsRequest {
1167
825
  NextToken?: string;
1168
826
  }
1169
-
1170
827
  export interface TrailInfo {
1171
828
  TrailARN?: string;
1172
-
1173
829
  Name?: string;
1174
-
1175
830
  HomeRegion?: string;
1176
831
  }
1177
832
  export interface ListTrailsResponse {
1178
833
  Trails?: TrailInfo[];
1179
-
1180
834
  NextToken?: string;
1181
835
  }
1182
-
1183
836
  export declare class InvalidEventCategoryException extends __BaseException {
1184
837
  readonly name: "InvalidEventCategoryException";
1185
838
  readonly $fault: "client";
1186
-
1187
839
  Message?: string;
1188
-
1189
840
  constructor(
1190
841
  opts: __ExceptionOptionType<InvalidEventCategoryException, __BaseException>
1191
842
  );
1192
843
  }
1193
-
1194
844
  export declare class InvalidLookupAttributesException extends __BaseException {
1195
845
  readonly name: "InvalidLookupAttributesException";
1196
846
  readonly $fault: "client";
1197
-
1198
847
  Message?: string;
1199
-
1200
848
  constructor(
1201
849
  opts: __ExceptionOptionType<
1202
850
  InvalidLookupAttributesException,
@@ -1217,90 +865,59 @@ export declare enum LookupAttributeKey {
1217
865
  RESOURCE_TYPE = "ResourceType",
1218
866
  USERNAME = "Username",
1219
867
  }
1220
-
1221
868
  export interface LookupAttribute {
1222
869
  AttributeKey: LookupAttributeKey | string | undefined;
1223
-
1224
870
  AttributeValue: string | undefined;
1225
871
  }
1226
-
1227
872
  export interface LookupEventsRequest {
1228
873
  LookupAttributes?: LookupAttribute[];
1229
-
1230
874
  StartTime?: Date;
1231
-
1232
875
  EndTime?: Date;
1233
-
1234
876
  EventCategory?: EventCategory | string;
1235
-
1236
877
  MaxResults?: number;
1237
-
1238
878
  NextToken?: string;
1239
879
  }
1240
-
1241
880
  export interface Resource {
1242
881
  ResourceType?: string;
1243
-
1244
882
  ResourceName?: string;
1245
883
  }
1246
-
1247
884
  export interface Event {
1248
885
  EventId?: string;
1249
-
1250
886
  EventName?: string;
1251
-
1252
887
  ReadOnly?: string;
1253
-
1254
888
  AccessKeyId?: string;
1255
-
1256
889
  EventTime?: Date;
1257
-
1258
890
  EventSource?: string;
1259
-
1260
891
  Username?: string;
1261
-
1262
892
  Resources?: Resource[];
1263
-
1264
893
  CloudTrailEvent?: string;
1265
894
  }
1266
-
1267
895
  export interface LookupEventsResponse {
1268
896
  Events?: Event[];
1269
-
1270
897
  NextToken?: string;
1271
898
  }
1272
-
1273
899
  export declare class InvalidEventSelectorsException extends __BaseException {
1274
900
  readonly name: "InvalidEventSelectorsException";
1275
901
  readonly $fault: "client";
1276
-
1277
902
  Message?: string;
1278
-
1279
903
  constructor(
1280
904
  opts: __ExceptionOptionType<InvalidEventSelectorsException, __BaseException>
1281
905
  );
1282
906
  }
1283
907
  export interface PutEventSelectorsRequest {
1284
908
  TrailName: string | undefined;
1285
-
1286
909
  EventSelectors?: EventSelector[];
1287
-
1288
910
  AdvancedEventSelectors?: AdvancedEventSelector[];
1289
911
  }
1290
912
  export interface PutEventSelectorsResponse {
1291
913
  TrailARN?: string;
1292
-
1293
914
  EventSelectors?: EventSelector[];
1294
-
1295
915
  AdvancedEventSelectors?: AdvancedEventSelector[];
1296
916
  }
1297
-
1298
917
  export declare class InvalidInsightSelectorsException extends __BaseException {
1299
918
  readonly name: "InvalidInsightSelectorsException";
1300
919
  readonly $fault: "client";
1301
-
1302
920
  Message?: string;
1303
-
1304
921
  constructor(
1305
922
  opts: __ExceptionOptionType<
1306
923
  InvalidInsightSelectorsException,
@@ -1310,29 +927,21 @@ export declare class InvalidInsightSelectorsException extends __BaseException {
1310
927
  }
1311
928
  export interface PutInsightSelectorsRequest {
1312
929
  TrailName: string | undefined;
1313
-
1314
930
  InsightSelectors: InsightSelector[] | undefined;
1315
931
  }
1316
932
  export interface PutInsightSelectorsResponse {
1317
933
  TrailARN?: string;
1318
-
1319
934
  InsightSelectors?: InsightSelector[];
1320
935
  }
1321
-
1322
936
  export interface RemoveTagsRequest {
1323
937
  ResourceId: string | undefined;
1324
-
1325
938
  TagsList: Tag[] | undefined;
1326
939
  }
1327
-
1328
940
  export interface RemoveTagsResponse {}
1329
-
1330
941
  export declare class InvalidEventDataStoreStatusException extends __BaseException {
1331
942
  readonly name: "InvalidEventDataStoreStatusException";
1332
943
  readonly $fault: "client";
1333
-
1334
944
  Message?: string;
1335
-
1336
945
  constructor(
1337
946
  opts: __ExceptionOptionType<
1338
947
  InvalidEventDataStoreStatusException,
@@ -1345,49 +954,32 @@ export interface RestoreEventDataStoreRequest {
1345
954
  }
1346
955
  export interface RestoreEventDataStoreResponse {
1347
956
  EventDataStoreArn?: string;
1348
-
1349
957
  Name?: string;
1350
-
1351
958
  Status?: EventDataStoreStatus | string;
1352
-
1353
959
  AdvancedEventSelectors?: AdvancedEventSelector[];
1354
-
1355
960
  MultiRegionEnabled?: boolean;
1356
-
1357
961
  OrganizationEnabled?: boolean;
1358
-
1359
962
  RetentionPeriod?: number;
1360
-
1361
963
  TerminationProtectionEnabled?: boolean;
1362
-
1363
964
  CreatedTimestamp?: Date;
1364
-
1365
965
  UpdatedTimestamp?: Date;
1366
966
  }
1367
-
1368
967
  export interface StartLoggingRequest {
1369
968
  Name: string | undefined;
1370
969
  }
1371
-
1372
970
  export interface StartLoggingResponse {}
1373
-
1374
971
  export declare class InvalidQueryStatementException extends __BaseException {
1375
972
  readonly name: "InvalidQueryStatementException";
1376
973
  readonly $fault: "client";
1377
-
1378
974
  Message?: string;
1379
-
1380
975
  constructor(
1381
976
  opts: __ExceptionOptionType<InvalidQueryStatementException, __BaseException>
1382
977
  );
1383
978
  }
1384
-
1385
979
  export declare class MaxConcurrentQueriesException extends __BaseException {
1386
980
  readonly name: "MaxConcurrentQueriesException";
1387
981
  readonly $fault: "client";
1388
-
1389
982
  Message?: string;
1390
-
1391
983
  constructor(
1392
984
  opts: __ExceptionOptionType<MaxConcurrentQueriesException, __BaseException>
1393
985
  );
@@ -1398,401 +990,278 @@ export interface StartQueryRequest {
1398
990
  export interface StartQueryResponse {
1399
991
  QueryId?: string;
1400
992
  }
1401
-
1402
993
  export interface StopLoggingRequest {
1403
994
  Name: string | undefined;
1404
995
  }
1405
-
1406
996
  export interface StopLoggingResponse {}
1407
997
  export interface UpdateEventDataStoreRequest {
1408
998
  EventDataStore: string | undefined;
1409
-
1410
999
  Name?: string;
1411
-
1412
1000
  AdvancedEventSelectors?: AdvancedEventSelector[];
1413
-
1414
1001
  MultiRegionEnabled?: boolean;
1415
-
1416
1002
  OrganizationEnabled?: boolean;
1417
-
1418
1003
  RetentionPeriod?: number;
1419
-
1420
1004
  TerminationProtectionEnabled?: boolean;
1421
1005
  }
1422
1006
  export interface UpdateEventDataStoreResponse {
1423
1007
  EventDataStoreArn?: string;
1424
-
1425
1008
  Name?: string;
1426
-
1427
1009
  Status?: EventDataStoreStatus | string;
1428
-
1429
1010
  AdvancedEventSelectors?: AdvancedEventSelector[];
1430
-
1431
1011
  MultiRegionEnabled?: boolean;
1432
-
1433
1012
  OrganizationEnabled?: boolean;
1434
-
1435
1013
  RetentionPeriod?: number;
1436
-
1437
1014
  TerminationProtectionEnabled?: boolean;
1438
-
1439
1015
  CreatedTimestamp?: Date;
1440
-
1441
1016
  UpdatedTimestamp?: Date;
1442
1017
  }
1443
-
1444
1018
  export interface UpdateTrailRequest {
1445
1019
  Name: string | undefined;
1446
-
1447
1020
  S3BucketName?: string;
1448
-
1449
1021
  S3KeyPrefix?: string;
1450
-
1451
1022
  SnsTopicName?: string;
1452
-
1453
1023
  IncludeGlobalServiceEvents?: boolean;
1454
-
1455
1024
  IsMultiRegionTrail?: boolean;
1456
-
1457
1025
  EnableLogFileValidation?: boolean;
1458
-
1459
1026
  CloudWatchLogsLogGroupArn?: string;
1460
-
1461
1027
  CloudWatchLogsRoleArn?: string;
1462
-
1463
1028
  KmsKeyId?: string;
1464
-
1465
1029
  IsOrganizationTrail?: boolean;
1466
1030
  }
1467
-
1468
1031
  export interface UpdateTrailResponse {
1469
1032
  Name?: string;
1470
-
1471
1033
  S3BucketName?: string;
1472
-
1473
1034
  S3KeyPrefix?: string;
1474
-
1475
1035
  SnsTopicName?: string;
1476
-
1477
1036
  SnsTopicARN?: string;
1478
-
1479
1037
  IncludeGlobalServiceEvents?: boolean;
1480
-
1481
1038
  IsMultiRegionTrail?: boolean;
1482
-
1483
1039
  TrailARN?: string;
1484
-
1485
1040
  LogFileValidationEnabled?: boolean;
1486
-
1487
1041
  CloudWatchLogsLogGroupArn?: string;
1488
-
1489
1042
  CloudWatchLogsRoleArn?: string;
1490
-
1491
1043
  KmsKeyId?: string;
1492
-
1493
1044
  IsOrganizationTrail?: boolean;
1494
1045
  }
1495
-
1496
1046
  export declare const TagFilterSensitiveLog: (obj: Tag) => any;
1497
-
1498
1047
  export declare const AddTagsRequestFilterSensitiveLog: (
1499
1048
  obj: AddTagsRequest
1500
1049
  ) => any;
1501
-
1502
1050
  export declare const AddTagsResponseFilterSensitiveLog: (
1503
1051
  obj: AddTagsResponse
1504
1052
  ) => any;
1505
-
1506
1053
  export declare const AdvancedFieldSelectorFilterSensitiveLog: (
1507
1054
  obj: AdvancedFieldSelector
1508
1055
  ) => any;
1509
-
1510
1056
  export declare const AdvancedEventSelectorFilterSensitiveLog: (
1511
1057
  obj: AdvancedEventSelector
1512
1058
  ) => any;
1513
-
1514
1059
  export declare const CancelQueryRequestFilterSensitiveLog: (
1515
1060
  obj: CancelQueryRequest
1516
1061
  ) => any;
1517
-
1518
1062
  export declare const CancelQueryResponseFilterSensitiveLog: (
1519
1063
  obj: CancelQueryResponse
1520
1064
  ) => any;
1521
-
1522
1065
  export declare const ChannelFilterSensitiveLog: (obj: Channel) => any;
1523
-
1524
1066
  export declare const CreateEventDataStoreRequestFilterSensitiveLog: (
1525
1067
  obj: CreateEventDataStoreRequest
1526
1068
  ) => any;
1527
-
1528
1069
  export declare const CreateEventDataStoreResponseFilterSensitiveLog: (
1529
1070
  obj: CreateEventDataStoreResponse
1530
1071
  ) => any;
1531
-
1532
1072
  export declare const CreateTrailRequestFilterSensitiveLog: (
1533
1073
  obj: CreateTrailRequest
1534
1074
  ) => any;
1535
-
1536
1075
  export declare const CreateTrailResponseFilterSensitiveLog: (
1537
1076
  obj: CreateTrailResponse
1538
1077
  ) => any;
1539
-
1540
1078
  export declare const DeleteEventDataStoreRequestFilterSensitiveLog: (
1541
1079
  obj: DeleteEventDataStoreRequest
1542
1080
  ) => any;
1543
-
1544
1081
  export declare const DeleteEventDataStoreResponseFilterSensitiveLog: (
1545
1082
  obj: DeleteEventDataStoreResponse
1546
1083
  ) => any;
1547
-
1548
1084
  export declare const DeleteTrailRequestFilterSensitiveLog: (
1549
1085
  obj: DeleteTrailRequest
1550
1086
  ) => any;
1551
-
1552
1087
  export declare const DeleteTrailResponseFilterSensitiveLog: (
1553
1088
  obj: DeleteTrailResponse
1554
1089
  ) => any;
1555
-
1556
1090
  export declare const DescribeQueryRequestFilterSensitiveLog: (
1557
1091
  obj: DescribeQueryRequest
1558
1092
  ) => any;
1559
-
1560
1093
  export declare const QueryStatisticsForDescribeQueryFilterSensitiveLog: (
1561
1094
  obj: QueryStatisticsForDescribeQuery
1562
1095
  ) => any;
1563
-
1564
1096
  export declare const DescribeQueryResponseFilterSensitiveLog: (
1565
1097
  obj: DescribeQueryResponse
1566
1098
  ) => any;
1567
-
1568
1099
  export declare const DescribeTrailsRequestFilterSensitiveLog: (
1569
1100
  obj: DescribeTrailsRequest
1570
1101
  ) => any;
1571
-
1572
1102
  export declare const TrailFilterSensitiveLog: (obj: Trail) => any;
1573
-
1574
1103
  export declare const DescribeTrailsResponseFilterSensitiveLog: (
1575
1104
  obj: DescribeTrailsResponse
1576
1105
  ) => any;
1577
-
1578
1106
  export declare const GetChannelRequestFilterSensitiveLog: (
1579
1107
  obj: GetChannelRequest
1580
1108
  ) => any;
1581
-
1582
1109
  export declare const DestinationFilterSensitiveLog: (obj: Destination) => any;
1583
-
1584
1110
  export declare const SourceConfigFilterSensitiveLog: (obj: SourceConfig) => any;
1585
-
1586
1111
  export declare const GetChannelResponseFilterSensitiveLog: (
1587
1112
  obj: GetChannelResponse
1588
1113
  ) => any;
1589
-
1590
1114
  export declare const GetEventDataStoreRequestFilterSensitiveLog: (
1591
1115
  obj: GetEventDataStoreRequest
1592
1116
  ) => any;
1593
-
1594
1117
  export declare const GetEventDataStoreResponseFilterSensitiveLog: (
1595
1118
  obj: GetEventDataStoreResponse
1596
1119
  ) => any;
1597
-
1598
1120
  export declare const GetEventSelectorsRequestFilterSensitiveLog: (
1599
1121
  obj: GetEventSelectorsRequest
1600
1122
  ) => any;
1601
-
1602
1123
  export declare const DataResourceFilterSensitiveLog: (obj: DataResource) => any;
1603
-
1604
1124
  export declare const EventSelectorFilterSensitiveLog: (
1605
1125
  obj: EventSelector
1606
1126
  ) => any;
1607
-
1608
1127
  export declare const GetEventSelectorsResponseFilterSensitiveLog: (
1609
1128
  obj: GetEventSelectorsResponse
1610
1129
  ) => any;
1611
-
1612
1130
  export declare const GetInsightSelectorsRequestFilterSensitiveLog: (
1613
1131
  obj: GetInsightSelectorsRequest
1614
1132
  ) => any;
1615
-
1616
1133
  export declare const InsightSelectorFilterSensitiveLog: (
1617
1134
  obj: InsightSelector
1618
1135
  ) => any;
1619
-
1620
1136
  export declare const GetInsightSelectorsResponseFilterSensitiveLog: (
1621
1137
  obj: GetInsightSelectorsResponse
1622
1138
  ) => any;
1623
-
1624
1139
  export declare const GetQueryResultsRequestFilterSensitiveLog: (
1625
1140
  obj: GetQueryResultsRequest
1626
1141
  ) => any;
1627
-
1628
1142
  export declare const QueryStatisticsFilterSensitiveLog: (
1629
1143
  obj: QueryStatistics
1630
1144
  ) => any;
1631
-
1632
1145
  export declare const GetQueryResultsResponseFilterSensitiveLog: (
1633
1146
  obj: GetQueryResultsResponse
1634
1147
  ) => any;
1635
-
1636
1148
  export declare const GetTrailRequestFilterSensitiveLog: (
1637
1149
  obj: GetTrailRequest
1638
1150
  ) => any;
1639
-
1640
1151
  export declare const GetTrailResponseFilterSensitiveLog: (
1641
1152
  obj: GetTrailResponse
1642
1153
  ) => any;
1643
-
1644
1154
  export declare const GetTrailStatusRequestFilterSensitiveLog: (
1645
1155
  obj: GetTrailStatusRequest
1646
1156
  ) => any;
1647
-
1648
1157
  export declare const GetTrailStatusResponseFilterSensitiveLog: (
1649
1158
  obj: GetTrailStatusResponse
1650
1159
  ) => any;
1651
-
1652
1160
  export declare const ListChannelsRequestFilterSensitiveLog: (
1653
1161
  obj: ListChannelsRequest
1654
1162
  ) => any;
1655
-
1656
1163
  export declare const ListChannelsResponseFilterSensitiveLog: (
1657
1164
  obj: ListChannelsResponse
1658
1165
  ) => any;
1659
-
1660
1166
  export declare const ListEventDataStoresRequestFilterSensitiveLog: (
1661
1167
  obj: ListEventDataStoresRequest
1662
1168
  ) => any;
1663
-
1664
1169
  export declare const EventDataStoreFilterSensitiveLog: (
1665
1170
  obj: EventDataStore
1666
1171
  ) => any;
1667
-
1668
1172
  export declare const ListEventDataStoresResponseFilterSensitiveLog: (
1669
1173
  obj: ListEventDataStoresResponse
1670
1174
  ) => any;
1671
-
1672
1175
  export declare const ListPublicKeysRequestFilterSensitiveLog: (
1673
1176
  obj: ListPublicKeysRequest
1674
1177
  ) => any;
1675
-
1676
1178
  export declare const PublicKeyFilterSensitiveLog: (obj: PublicKey) => any;
1677
-
1678
1179
  export declare const ListPublicKeysResponseFilterSensitiveLog: (
1679
1180
  obj: ListPublicKeysResponse
1680
1181
  ) => any;
1681
-
1682
1182
  export declare const ListQueriesRequestFilterSensitiveLog: (
1683
1183
  obj: ListQueriesRequest
1684
1184
  ) => any;
1685
-
1686
1185
  export declare const QueryFilterSensitiveLog: (obj: Query) => any;
1687
-
1688
1186
  export declare const ListQueriesResponseFilterSensitiveLog: (
1689
1187
  obj: ListQueriesResponse
1690
1188
  ) => any;
1691
-
1692
1189
  export declare const ListTagsRequestFilterSensitiveLog: (
1693
1190
  obj: ListTagsRequest
1694
1191
  ) => any;
1695
-
1696
1192
  export declare const ResourceTagFilterSensitiveLog: (obj: ResourceTag) => any;
1697
-
1698
1193
  export declare const ListTagsResponseFilterSensitiveLog: (
1699
1194
  obj: ListTagsResponse
1700
1195
  ) => any;
1701
-
1702
1196
  export declare const ListTrailsRequestFilterSensitiveLog: (
1703
1197
  obj: ListTrailsRequest
1704
1198
  ) => any;
1705
-
1706
1199
  export declare const TrailInfoFilterSensitiveLog: (obj: TrailInfo) => any;
1707
-
1708
1200
  export declare const ListTrailsResponseFilterSensitiveLog: (
1709
1201
  obj: ListTrailsResponse
1710
1202
  ) => any;
1711
-
1712
1203
  export declare const LookupAttributeFilterSensitiveLog: (
1713
1204
  obj: LookupAttribute
1714
1205
  ) => any;
1715
-
1716
1206
  export declare const LookupEventsRequestFilterSensitiveLog: (
1717
1207
  obj: LookupEventsRequest
1718
1208
  ) => any;
1719
-
1720
1209
  export declare const ResourceFilterSensitiveLog: (obj: Resource) => any;
1721
-
1722
1210
  export declare const EventFilterSensitiveLog: (obj: Event) => any;
1723
-
1724
1211
  export declare const LookupEventsResponseFilterSensitiveLog: (
1725
1212
  obj: LookupEventsResponse
1726
1213
  ) => any;
1727
-
1728
1214
  export declare const PutEventSelectorsRequestFilterSensitiveLog: (
1729
1215
  obj: PutEventSelectorsRequest
1730
1216
  ) => any;
1731
-
1732
1217
  export declare const PutEventSelectorsResponseFilterSensitiveLog: (
1733
1218
  obj: PutEventSelectorsResponse
1734
1219
  ) => any;
1735
-
1736
1220
  export declare const PutInsightSelectorsRequestFilterSensitiveLog: (
1737
1221
  obj: PutInsightSelectorsRequest
1738
1222
  ) => any;
1739
-
1740
1223
  export declare const PutInsightSelectorsResponseFilterSensitiveLog: (
1741
1224
  obj: PutInsightSelectorsResponse
1742
1225
  ) => any;
1743
-
1744
1226
  export declare const RemoveTagsRequestFilterSensitiveLog: (
1745
1227
  obj: RemoveTagsRequest
1746
1228
  ) => any;
1747
-
1748
1229
  export declare const RemoveTagsResponseFilterSensitiveLog: (
1749
1230
  obj: RemoveTagsResponse
1750
1231
  ) => any;
1751
-
1752
1232
  export declare const RestoreEventDataStoreRequestFilterSensitiveLog: (
1753
1233
  obj: RestoreEventDataStoreRequest
1754
1234
  ) => any;
1755
-
1756
1235
  export declare const RestoreEventDataStoreResponseFilterSensitiveLog: (
1757
1236
  obj: RestoreEventDataStoreResponse
1758
1237
  ) => any;
1759
-
1760
1238
  export declare const StartLoggingRequestFilterSensitiveLog: (
1761
1239
  obj: StartLoggingRequest
1762
1240
  ) => any;
1763
-
1764
1241
  export declare const StartLoggingResponseFilterSensitiveLog: (
1765
1242
  obj: StartLoggingResponse
1766
1243
  ) => any;
1767
-
1768
1244
  export declare const StartQueryRequestFilterSensitiveLog: (
1769
1245
  obj: StartQueryRequest
1770
1246
  ) => any;
1771
-
1772
1247
  export declare const StartQueryResponseFilterSensitiveLog: (
1773
1248
  obj: StartQueryResponse
1774
1249
  ) => any;
1775
-
1776
1250
  export declare const StopLoggingRequestFilterSensitiveLog: (
1777
1251
  obj: StopLoggingRequest
1778
1252
  ) => any;
1779
-
1780
1253
  export declare const StopLoggingResponseFilterSensitiveLog: (
1781
1254
  obj: StopLoggingResponse
1782
1255
  ) => any;
1783
-
1784
1256
  export declare const UpdateEventDataStoreRequestFilterSensitiveLog: (
1785
1257
  obj: UpdateEventDataStoreRequest
1786
1258
  ) => any;
1787
-
1788
1259
  export declare const UpdateEventDataStoreResponseFilterSensitiveLog: (
1789
1260
  obj: UpdateEventDataStoreResponse
1790
1261
  ) => any;
1791
-
1792
1262
  export declare const UpdateTrailRequestFilterSensitiveLog: (
1793
1263
  obj: UpdateTrailRequest
1794
1264
  ) => any;
1795
-
1796
1265
  export declare const UpdateTrailResponseFilterSensitiveLog: (
1797
1266
  obj: UpdateTrailResponse
1798
1267
  ) => any;