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