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