@aws-sdk/client-cloudtrail 3.342.0 → 3.345.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 (51) hide show
  1. package/README.md +293 -0
  2. package/dist-cjs/CloudTrail.js +4 -0
  3. package/dist-cjs/commands/StartEventDataStoreIngestionCommand.js +46 -0
  4. package/dist-cjs/commands/StopEventDataStoreIngestionCommand.js +46 -0
  5. package/dist-cjs/commands/index.js +2 -0
  6. package/dist-cjs/models/models_0.js +3 -0
  7. package/dist-cjs/protocols/Aws_json1_1.js +136 -2
  8. package/dist-es/CloudTrail.js +4 -0
  9. package/dist-es/commands/StartEventDataStoreIngestionCommand.js +42 -0
  10. package/dist-es/commands/StopEventDataStoreIngestionCommand.js +42 -0
  11. package/dist-es/commands/index.js +2 -0
  12. package/dist-es/models/models_0.js +3 -0
  13. package/dist-es/protocols/Aws_json1_1.js +130 -0
  14. package/dist-types/CloudTrail.d.ts +292 -1
  15. package/dist-types/CloudTrailClient.d.ts +282 -3
  16. package/dist-types/commands/AddTagsCommand.d.ts +2 -2
  17. package/dist-types/commands/CreateEventDataStoreCommand.d.ts +4 -3
  18. package/dist-types/commands/CreateTrailCommand.d.ts +3 -3
  19. package/dist-types/commands/DeleteTrailCommand.d.ts +5 -5
  20. package/dist-types/commands/DescribeTrailsCommand.d.ts +1 -1
  21. package/dist-types/commands/GetEventDataStoreCommand.d.ts +1 -1
  22. package/dist-types/commands/GetEventSelectorsCommand.d.ts +1 -1
  23. package/dist-types/commands/GetInsightSelectorsCommand.d.ts +1 -1
  24. package/dist-types/commands/GetTrailCommand.d.ts +1 -1
  25. package/dist-types/commands/GetTrailStatusCommand.d.ts +3 -3
  26. package/dist-types/commands/ListEventDataStoresCommand.d.ts +2 -2
  27. package/dist-types/commands/ListPublicKeysCommand.d.ts +3 -3
  28. package/dist-types/commands/ListTagsCommand.d.ts +2 -2
  29. package/dist-types/commands/LookupEventsCommand.d.ts +2 -2
  30. package/dist-types/commands/PutEventSelectorsCommand.d.ts +4 -4
  31. package/dist-types/commands/PutInsightSelectorsCommand.d.ts +3 -3
  32. package/dist-types/commands/RemoveTagsCommand.d.ts +1 -1
  33. package/dist-types/commands/RestoreEventDataStoreCommand.d.ts +1 -1
  34. package/dist-types/commands/StartEventDataStoreIngestionCommand.d.ts +109 -0
  35. package/dist-types/commands/StartLoggingCommand.d.ts +5 -5
  36. package/dist-types/commands/StopEventDataStoreIngestionCommand.d.ts +109 -0
  37. package/dist-types/commands/StopLoggingCommand.d.ts +6 -6
  38. package/dist-types/commands/UpdateEventDataStoreCommand.d.ts +3 -3
  39. package/dist-types/commands/UpdateTrailCommand.d.ts +7 -7
  40. package/dist-types/commands/index.d.ts +2 -0
  41. package/dist-types/index.d.ts +278 -1
  42. package/dist-types/models/models_0.d.ts +98 -57
  43. package/dist-types/protocols/Aws_json1_1.d.ts +18 -0
  44. package/dist-types/ts3.4/CloudTrail.d.ts +34 -0
  45. package/dist-types/ts3.4/CloudTrailClient.d.ts +12 -0
  46. package/dist-types/ts3.4/commands/StartEventDataStoreIngestionCommand.d.ts +42 -0
  47. package/dist-types/ts3.4/commands/StopEventDataStoreIngestionCommand.d.ts +42 -0
  48. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  49. package/dist-types/ts3.4/models/models_0.d.ts +12 -0
  50. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +24 -0
  51. package/package.json +9 -9
@@ -0,0 +1,42 @@
1
+ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { de_StartEventDataStoreIngestionCommand, se_StartEventDataStoreIngestionCommand, } from "../protocols/Aws_json1_1";
5
+ export { $Command };
6
+ export class StartEventDataStoreIngestionCommand extends $Command {
7
+ static getEndpointParameterInstructions() {
8
+ return {
9
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
10
+ Endpoint: { type: "builtInParams", name: "endpoint" },
11
+ Region: { type: "builtInParams", name: "region" },
12
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
13
+ };
14
+ }
15
+ constructor(input) {
16
+ super();
17
+ this.input = input;
18
+ }
19
+ resolveMiddleware(clientStack, configuration, options) {
20
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
21
+ this.middlewareStack.use(getEndpointPlugin(configuration, StartEventDataStoreIngestionCommand.getEndpointParameterInstructions()));
22
+ const stack = clientStack.concat(this.middlewareStack);
23
+ const { logger } = configuration;
24
+ const clientName = "CloudTrailClient";
25
+ const commandName = "StartEventDataStoreIngestionCommand";
26
+ const handlerExecutionContext = {
27
+ logger,
28
+ clientName,
29
+ commandName,
30
+ inputFilterSensitiveLog: (_) => _,
31
+ outputFilterSensitiveLog: (_) => _,
32
+ };
33
+ const { requestHandler } = configuration;
34
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
35
+ }
36
+ serialize(input, context) {
37
+ return se_StartEventDataStoreIngestionCommand(input, context);
38
+ }
39
+ deserialize(output, context) {
40
+ return de_StartEventDataStoreIngestionCommand(output, context);
41
+ }
42
+ }
@@ -0,0 +1,42 @@
1
+ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { de_StopEventDataStoreIngestionCommand, se_StopEventDataStoreIngestionCommand } from "../protocols/Aws_json1_1";
5
+ export { $Command };
6
+ export class StopEventDataStoreIngestionCommand extends $Command {
7
+ static getEndpointParameterInstructions() {
8
+ return {
9
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
10
+ Endpoint: { type: "builtInParams", name: "endpoint" },
11
+ Region: { type: "builtInParams", name: "region" },
12
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
13
+ };
14
+ }
15
+ constructor(input) {
16
+ super();
17
+ this.input = input;
18
+ }
19
+ resolveMiddleware(clientStack, configuration, options) {
20
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
21
+ this.middlewareStack.use(getEndpointPlugin(configuration, StopEventDataStoreIngestionCommand.getEndpointParameterInstructions()));
22
+ const stack = clientStack.concat(this.middlewareStack);
23
+ const { logger } = configuration;
24
+ const clientName = "CloudTrailClient";
25
+ const commandName = "StopEventDataStoreIngestionCommand";
26
+ const handlerExecutionContext = {
27
+ logger,
28
+ clientName,
29
+ commandName,
30
+ inputFilterSensitiveLog: (_) => _,
31
+ outputFilterSensitiveLog: (_) => _,
32
+ };
33
+ const { requestHandler } = configuration;
34
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
35
+ }
36
+ serialize(input, context) {
37
+ return se_StopEventDataStoreIngestionCommand(input, context);
38
+ }
39
+ deserialize(output, context) {
40
+ return de_StopEventDataStoreIngestionCommand(output, context);
41
+ }
42
+ }
@@ -34,9 +34,11 @@ export * from "./PutResourcePolicyCommand";
34
34
  export * from "./RegisterOrganizationDelegatedAdminCommand";
35
35
  export * from "./RemoveTagsCommand";
36
36
  export * from "./RestoreEventDataStoreCommand";
37
+ export * from "./StartEventDataStoreIngestionCommand";
37
38
  export * from "./StartImportCommand";
38
39
  export * from "./StartLoggingCommand";
39
40
  export * from "./StartQueryCommand";
41
+ export * from "./StopEventDataStoreIngestionCommand";
40
42
  export * from "./StopImportCommand";
41
43
  export * from "./StopLoggingCommand";
42
44
  export * from "./UpdateChannelCommand";
@@ -405,6 +405,9 @@ export const EventDataStoreStatus = {
405
405
  CREATED: "CREATED",
406
406
  ENABLED: "ENABLED",
407
407
  PENDING_DELETION: "PENDING_DELETION",
408
+ STARTING_INGESTION: "STARTING_INGESTION",
409
+ STOPPED_INGESTION: "STOPPED_INGESTION",
410
+ STOPPING_INGESTION: "STOPPING_INGESTION",
408
411
  };
409
412
  export class EventDataStoreAlreadyExistsException extends __BaseException {
410
413
  constructor(opts) {
@@ -218,6 +218,12 @@ export const se_RestoreEventDataStoreCommand = async (input, context) => {
218
218
  body = JSON.stringify(_json(input));
219
219
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
220
220
  };
221
+ export const se_StartEventDataStoreIngestionCommand = async (input, context) => {
222
+ const headers = sharedHeaders("StartEventDataStoreIngestion");
223
+ let body;
224
+ body = JSON.stringify(_json(input));
225
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
226
+ };
221
227
  export const se_StartImportCommand = async (input, context) => {
222
228
  const headers = sharedHeaders("StartImport");
223
229
  let body;
@@ -236,6 +242,12 @@ export const se_StartQueryCommand = async (input, context) => {
236
242
  body = JSON.stringify(_json(input));
237
243
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
238
244
  };
245
+ export const se_StopEventDataStoreIngestionCommand = async (input, context) => {
246
+ const headers = sharedHeaders("StopEventDataStoreIngestion");
247
+ let body;
248
+ body = JSON.stringify(_json(input));
249
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
250
+ };
239
251
  export const se_StopImportCommand = async (input, context) => {
240
252
  const headers = sharedHeaders("StopImport");
241
253
  let body;
@@ -2264,6 +2276,65 @@ const de_RestoreEventDataStoreCommandError = async (output, context) => {
2264
2276
  });
2265
2277
  }
2266
2278
  };
2279
+ export const de_StartEventDataStoreIngestionCommand = async (output, context) => {
2280
+ if (output.statusCode >= 300) {
2281
+ return de_StartEventDataStoreIngestionCommandError(output, context);
2282
+ }
2283
+ const data = await parseBody(output.body, context);
2284
+ let contents = {};
2285
+ contents = _json(data);
2286
+ const response = {
2287
+ $metadata: deserializeMetadata(output),
2288
+ ...contents,
2289
+ };
2290
+ return response;
2291
+ };
2292
+ const de_StartEventDataStoreIngestionCommandError = async (output, context) => {
2293
+ const parsedOutput = {
2294
+ ...output,
2295
+ body: await parseErrorBody(output.body, context),
2296
+ };
2297
+ const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
2298
+ switch (errorCode) {
2299
+ case "EventDataStoreARNInvalidException":
2300
+ case "com.amazonaws.cloudtrail#EventDataStoreARNInvalidException":
2301
+ throw await de_EventDataStoreARNInvalidExceptionRes(parsedOutput, context);
2302
+ case "EventDataStoreNotFoundException":
2303
+ case "com.amazonaws.cloudtrail#EventDataStoreNotFoundException":
2304
+ throw await de_EventDataStoreNotFoundExceptionRes(parsedOutput, context);
2305
+ case "InsufficientDependencyServiceAccessPermissionException":
2306
+ case "com.amazonaws.cloudtrail#InsufficientDependencyServiceAccessPermissionException":
2307
+ throw await de_InsufficientDependencyServiceAccessPermissionExceptionRes(parsedOutput, context);
2308
+ case "InvalidEventDataStoreCategoryException":
2309
+ case "com.amazonaws.cloudtrail#InvalidEventDataStoreCategoryException":
2310
+ throw await de_InvalidEventDataStoreCategoryExceptionRes(parsedOutput, context);
2311
+ case "InvalidEventDataStoreStatusException":
2312
+ case "com.amazonaws.cloudtrail#InvalidEventDataStoreStatusException":
2313
+ throw await de_InvalidEventDataStoreStatusExceptionRes(parsedOutput, context);
2314
+ case "InvalidParameterException":
2315
+ case "com.amazonaws.cloudtrail#InvalidParameterException":
2316
+ throw await de_InvalidParameterExceptionRes(parsedOutput, context);
2317
+ case "NoManagementAccountSLRExistsException":
2318
+ case "com.amazonaws.cloudtrail#NoManagementAccountSLRExistsException":
2319
+ throw await de_NoManagementAccountSLRExistsExceptionRes(parsedOutput, context);
2320
+ case "NotOrganizationMasterAccountException":
2321
+ case "com.amazonaws.cloudtrail#NotOrganizationMasterAccountException":
2322
+ throw await de_NotOrganizationMasterAccountExceptionRes(parsedOutput, context);
2323
+ case "OperationNotPermittedException":
2324
+ case "com.amazonaws.cloudtrail#OperationNotPermittedException":
2325
+ throw await de_OperationNotPermittedExceptionRes(parsedOutput, context);
2326
+ case "UnsupportedOperationException":
2327
+ case "com.amazonaws.cloudtrail#UnsupportedOperationException":
2328
+ throw await de_UnsupportedOperationExceptionRes(parsedOutput, context);
2329
+ default:
2330
+ const parsedBody = parsedOutput.body;
2331
+ return throwDefaultError({
2332
+ output,
2333
+ parsedBody,
2334
+ errorCode,
2335
+ });
2336
+ }
2337
+ };
2267
2338
  export const de_StartImportCommand = async (output, context) => {
2268
2339
  if (output.statusCode >= 300) {
2269
2340
  return de_StartImportCommandError(output, context);
@@ -2459,6 +2530,65 @@ const de_StartQueryCommandError = async (output, context) => {
2459
2530
  });
2460
2531
  }
2461
2532
  };
2533
+ export const de_StopEventDataStoreIngestionCommand = async (output, context) => {
2534
+ if (output.statusCode >= 300) {
2535
+ return de_StopEventDataStoreIngestionCommandError(output, context);
2536
+ }
2537
+ const data = await parseBody(output.body, context);
2538
+ let contents = {};
2539
+ contents = _json(data);
2540
+ const response = {
2541
+ $metadata: deserializeMetadata(output),
2542
+ ...contents,
2543
+ };
2544
+ return response;
2545
+ };
2546
+ const de_StopEventDataStoreIngestionCommandError = async (output, context) => {
2547
+ const parsedOutput = {
2548
+ ...output,
2549
+ body: await parseErrorBody(output.body, context),
2550
+ };
2551
+ const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
2552
+ switch (errorCode) {
2553
+ case "EventDataStoreARNInvalidException":
2554
+ case "com.amazonaws.cloudtrail#EventDataStoreARNInvalidException":
2555
+ throw await de_EventDataStoreARNInvalidExceptionRes(parsedOutput, context);
2556
+ case "EventDataStoreNotFoundException":
2557
+ case "com.amazonaws.cloudtrail#EventDataStoreNotFoundException":
2558
+ throw await de_EventDataStoreNotFoundExceptionRes(parsedOutput, context);
2559
+ case "InsufficientDependencyServiceAccessPermissionException":
2560
+ case "com.amazonaws.cloudtrail#InsufficientDependencyServiceAccessPermissionException":
2561
+ throw await de_InsufficientDependencyServiceAccessPermissionExceptionRes(parsedOutput, context);
2562
+ case "InvalidEventDataStoreCategoryException":
2563
+ case "com.amazonaws.cloudtrail#InvalidEventDataStoreCategoryException":
2564
+ throw await de_InvalidEventDataStoreCategoryExceptionRes(parsedOutput, context);
2565
+ case "InvalidEventDataStoreStatusException":
2566
+ case "com.amazonaws.cloudtrail#InvalidEventDataStoreStatusException":
2567
+ throw await de_InvalidEventDataStoreStatusExceptionRes(parsedOutput, context);
2568
+ case "InvalidParameterException":
2569
+ case "com.amazonaws.cloudtrail#InvalidParameterException":
2570
+ throw await de_InvalidParameterExceptionRes(parsedOutput, context);
2571
+ case "NoManagementAccountSLRExistsException":
2572
+ case "com.amazonaws.cloudtrail#NoManagementAccountSLRExistsException":
2573
+ throw await de_NoManagementAccountSLRExistsExceptionRes(parsedOutput, context);
2574
+ case "NotOrganizationMasterAccountException":
2575
+ case "com.amazonaws.cloudtrail#NotOrganizationMasterAccountException":
2576
+ throw await de_NotOrganizationMasterAccountExceptionRes(parsedOutput, context);
2577
+ case "OperationNotPermittedException":
2578
+ case "com.amazonaws.cloudtrail#OperationNotPermittedException":
2579
+ throw await de_OperationNotPermittedExceptionRes(parsedOutput, context);
2580
+ case "UnsupportedOperationException":
2581
+ case "com.amazonaws.cloudtrail#UnsupportedOperationException":
2582
+ throw await de_UnsupportedOperationExceptionRes(parsedOutput, context);
2583
+ default:
2584
+ const parsedBody = parsedOutput.body;
2585
+ return throwDefaultError({
2586
+ output,
2587
+ parsedBody,
2588
+ errorCode,
2589
+ });
2590
+ }
2591
+ };
2462
2592
  export const de_StopImportCommand = async (output, context) => {
2463
2593
  if (output.statusCode >= 300) {
2464
2594
  return de_StopImportCommandError(output, context);
@@ -36,9 +36,11 @@ import { PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput } from ".
36
36
  import { RegisterOrganizationDelegatedAdminCommandInput, RegisterOrganizationDelegatedAdminCommandOutput } from "./commands/RegisterOrganizationDelegatedAdminCommand";
37
37
  import { RemoveTagsCommandInput, RemoveTagsCommandOutput } from "./commands/RemoveTagsCommand";
38
38
  import { RestoreEventDataStoreCommandInput, RestoreEventDataStoreCommandOutput } from "./commands/RestoreEventDataStoreCommand";
39
+ import { StartEventDataStoreIngestionCommandInput, StartEventDataStoreIngestionCommandOutput } from "./commands/StartEventDataStoreIngestionCommand";
39
40
  import { StartImportCommandInput, StartImportCommandOutput } from "./commands/StartImportCommand";
40
41
  import { StartLoggingCommandInput, StartLoggingCommandOutput } from "./commands/StartLoggingCommand";
41
42
  import { StartQueryCommandInput, StartQueryCommandOutput } from "./commands/StartQueryCommand";
43
+ import { StopEventDataStoreIngestionCommandInput, StopEventDataStoreIngestionCommandOutput } from "./commands/StopEventDataStoreIngestionCommand";
42
44
  import { StopImportCommandInput, StopImportCommandOutput } from "./commands/StopImportCommand";
43
45
  import { StopLoggingCommandInput, StopLoggingCommandOutput } from "./commands/StopLoggingCommand";
44
46
  import { UpdateChannelCommandInput, UpdateChannelCommandOutput } from "./commands/UpdateChannelCommand";
@@ -261,6 +263,12 @@ export interface CloudTrail {
261
263
  restoreEventDataStore(args: RestoreEventDataStoreCommandInput, options?: __HttpHandlerOptions): Promise<RestoreEventDataStoreCommandOutput>;
262
264
  restoreEventDataStore(args: RestoreEventDataStoreCommandInput, cb: (err: any, data?: RestoreEventDataStoreCommandOutput) => void): void;
263
265
  restoreEventDataStore(args: RestoreEventDataStoreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RestoreEventDataStoreCommandOutput) => void): void;
266
+ /**
267
+ * @see {@link StartEventDataStoreIngestionCommand}
268
+ */
269
+ startEventDataStoreIngestion(args: StartEventDataStoreIngestionCommandInput, options?: __HttpHandlerOptions): Promise<StartEventDataStoreIngestionCommandOutput>;
270
+ startEventDataStoreIngestion(args: StartEventDataStoreIngestionCommandInput, cb: (err: any, data?: StartEventDataStoreIngestionCommandOutput) => void): void;
271
+ startEventDataStoreIngestion(args: StartEventDataStoreIngestionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartEventDataStoreIngestionCommandOutput) => void): void;
264
272
  /**
265
273
  * @see {@link StartImportCommand}
266
274
  */
@@ -279,6 +287,12 @@ export interface CloudTrail {
279
287
  startQuery(args: StartQueryCommandInput, options?: __HttpHandlerOptions): Promise<StartQueryCommandOutput>;
280
288
  startQuery(args: StartQueryCommandInput, cb: (err: any, data?: StartQueryCommandOutput) => void): void;
281
289
  startQuery(args: StartQueryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartQueryCommandOutput) => void): void;
290
+ /**
291
+ * @see {@link StopEventDataStoreIngestionCommand}
292
+ */
293
+ stopEventDataStoreIngestion(args: StopEventDataStoreIngestionCommandInput, options?: __HttpHandlerOptions): Promise<StopEventDataStoreIngestionCommandOutput>;
294
+ stopEventDataStoreIngestion(args: StopEventDataStoreIngestionCommandInput, cb: (err: any, data?: StopEventDataStoreIngestionCommandOutput) => void): void;
295
+ stopEventDataStoreIngestion(args: StopEventDataStoreIngestionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopEventDataStoreIngestionCommandOutput) => void): void;
282
296
  /**
283
297
  * @see {@link StopImportCommand}
284
298
  */
@@ -327,7 +341,284 @@ export interface CloudTrail {
327
341
  * Amazon Web Services SDKs, including how to download and install them, see <a href="http://aws.amazon.com/tools/">Tools to Build on Amazon Web Services</a>.</p>
328
342
  * </note>
329
343
  * <p>See the <a href="https://docs.aws.amazon.com/awscloudtrail/latest/userguide/cloudtrail-user-guide.html">CloudTrail
330
- * User Guide</a> for information about the data that is included with each Amazon Web Services API call listed in the log files.</p>
344
+ * User Guide</a> for information about the data that is included with each Amazon Web Services API call listed in the log files.</p>
345
+ * <p>
346
+ * <b>Actions available for CloudTrail trails</b>
347
+ * </p>
348
+ * <p>The following actions are available for CloudTrail trails.</p>
349
+ * <ul>
350
+ * <li>
351
+ * <p>
352
+ * <a>AddTags</a>
353
+ * </p>
354
+ * </li>
355
+ * <li>
356
+ * <p>
357
+ * <a>CreateTrail</a>
358
+ * </p>
359
+ * </li>
360
+ * <li>
361
+ * <p>
362
+ * <a>DeleteTrail</a>
363
+ * </p>
364
+ * </li>
365
+ * <li>
366
+ * <p>
367
+ * <a>DescribeTrails</a>
368
+ * </p>
369
+ * </li>
370
+ * <li>
371
+ * <p>
372
+ * <a>GetEventSelectors</a>
373
+ * </p>
374
+ * </li>
375
+ * <li>
376
+ * <p>
377
+ * <a>GetInsightSelectors</a>
378
+ * </p>
379
+ * </li>
380
+ * <li>
381
+ * <p>
382
+ * <a>GetTrail</a>
383
+ * </p>
384
+ * </li>
385
+ * <li>
386
+ * <p>
387
+ * <a>GetTrailStatus</a>
388
+ * </p>
389
+ * </li>
390
+ * <li>
391
+ * <p>
392
+ * <a>ListTags</a>
393
+ * </p>
394
+ * </li>
395
+ * <li>
396
+ * <p>
397
+ * <a>ListTrails</a>
398
+ * </p>
399
+ * </li>
400
+ * <li>
401
+ * <p>
402
+ * <a>PutEventSelectors</a>
403
+ * </p>
404
+ * </li>
405
+ * <li>
406
+ * <p>
407
+ * <a>PutInsightSelectors</a>
408
+ * </p>
409
+ * </li>
410
+ * <li>
411
+ * <p>
412
+ * <a>RemoveTags</a>
413
+ * </p>
414
+ * </li>
415
+ * <li>
416
+ * <p>
417
+ * <a>StartLogging</a>
418
+ * </p>
419
+ * </li>
420
+ * <li>
421
+ * <p>
422
+ * <a>StopLogging</a>
423
+ * </p>
424
+ * </li>
425
+ * <li>
426
+ * <p>
427
+ * <a>UpdateTrail</a>
428
+ * </p>
429
+ * </li>
430
+ * </ul>
431
+ * <p>
432
+ * <b>Actions available for CloudTrail event data stores</b>
433
+ * </p>
434
+ * <p>The following actions are available for CloudTrail event data stores.</p>
435
+ * <ul>
436
+ * <li>
437
+ * <p>
438
+ * <a>AddTags</a>
439
+ * </p>
440
+ * </li>
441
+ * <li>
442
+ * <p>
443
+ * <a>CancelQuery</a>
444
+ * </p>
445
+ * </li>
446
+ * <li>
447
+ * <p>
448
+ * <a>CreateEventDataStore</a>
449
+ * </p>
450
+ * </li>
451
+ * <li>
452
+ * <p>
453
+ * <a>DeleteEventDataStore</a>
454
+ * </p>
455
+ * </li>
456
+ * <li>
457
+ * <p>
458
+ * <a>DescribeQuery</a>
459
+ * </p>
460
+ * </li>
461
+ * <li>
462
+ * <p>
463
+ * <a>GetEventDataStore</a>
464
+ * </p>
465
+ * </li>
466
+ * <li>
467
+ * <p>
468
+ * <a>GetQueryResults</a>
469
+ * </p>
470
+ * </li>
471
+ * <li>
472
+ * <p>
473
+ * <a>ListEventDataStores</a>
474
+ * </p>
475
+ * </li>
476
+ * <li>
477
+ * <p>
478
+ * <a>ListTags</a>
479
+ * </p>
480
+ * </li>
481
+ * <li>
482
+ * <p>
483
+ * <a>ListQueries</a>
484
+ * </p>
485
+ * </li>
486
+ * <li>
487
+ * <p>
488
+ * <a>RemoveTags</a>
489
+ * </p>
490
+ * </li>
491
+ * <li>
492
+ * <p>
493
+ * <a>RestoreEventDataStore</a>
494
+ * </p>
495
+ * </li>
496
+ * <li>
497
+ * <p>
498
+ * <a>StartEventDataStoreIngestion</a>
499
+ * </p>
500
+ * </li>
501
+ * <li>
502
+ * <p>
503
+ * <a>StartImport</a>
504
+ * </p>
505
+ * <p>The following additional actions are available for imports.</p>
506
+ * <ul>
507
+ * <li>
508
+ * <p>
509
+ * <a>GetImport</a>
510
+ * </p>
511
+ * </li>
512
+ * <li>
513
+ * <p>
514
+ * <a>ListImportFailures</a>
515
+ * </p>
516
+ * </li>
517
+ * <li>
518
+ * <p>
519
+ * <a>ListImports</a>
520
+ * </p>
521
+ * </li>
522
+ * <li>
523
+ * <p>
524
+ * <a>StopImport</a>
525
+ * </p>
526
+ * </li>
527
+ * </ul>
528
+ * </li>
529
+ * <li>
530
+ * <p>
531
+ * <a>StartQuery</a>
532
+ * </p>
533
+ * </li>
534
+ * <li>
535
+ * <p>
536
+ * <a>StartEventDataStoreIngestion</a>
537
+ * </p>
538
+ * </li>
539
+ * <li>
540
+ * <p>
541
+ * <a>UpdateEventDataStore</a>
542
+ * </p>
543
+ * </li>
544
+ * </ul>
545
+ * <p>
546
+ * <b>Actions available for CloudTrail channels</b>
547
+ * </p>
548
+ * <p>The following actions are available for CloudTrail channels.</p>
549
+ * <ul>
550
+ * <li>
551
+ * <p>
552
+ * <a>AddTags</a>
553
+ * </p>
554
+ * </li>
555
+ * <li>
556
+ * <p>
557
+ * <a>CreateChannel</a>
558
+ * </p>
559
+ * </li>
560
+ * <li>
561
+ * <p>
562
+ * <a>DeleteChannel</a>
563
+ * </p>
564
+ * </li>
565
+ * <li>
566
+ * <p>
567
+ * <a>DeleteResourcePolicy</a>
568
+ * </p>
569
+ * </li>
570
+ * <li>
571
+ * <p>
572
+ * <a>GetChannel</a>
573
+ * </p>
574
+ * </li>
575
+ * <li>
576
+ * <p>
577
+ * <a>GetResourcePolicy</a>
578
+ * </p>
579
+ * </li>
580
+ * <li>
581
+ * <p>
582
+ * <a>ListChannels</a>
583
+ * </p>
584
+ * </li>
585
+ * <li>
586
+ * <p>
587
+ * <a>ListTags</a>
588
+ * </p>
589
+ * </li>
590
+ * <li>
591
+ * <p>
592
+ * <a>PutResourcePolicy</a>
593
+ * </p>
594
+ * </li>
595
+ * <li>
596
+ * <p>
597
+ * <a>RemoveTags</a>
598
+ * </p>
599
+ * </li>
600
+ * <li>
601
+ * <p>
602
+ * <a>UpdateChannel</a>
603
+ * </p>
604
+ * </li>
605
+ * </ul>
606
+ * <p>
607
+ * <b>Actions available for managing delegated administrators</b>
608
+ * </p>
609
+ * <p>The following actions are available for adding or a removing a delegated administrator to manage an Organizations organization’s CloudTrail resources.</p>
610
+ * <ul>
611
+ * <li>
612
+ * <p>
613
+ * <a>DeregisterOrganizationDelegatedAdmin</a>
614
+ * </p>
615
+ * </li>
616
+ * <li>
617
+ * <p>
618
+ * <a>RegisterOrganizationDelegatedAdmin</a>
619
+ * </p>
620
+ * </li>
621
+ * </ul>
331
622
  */
332
623
  export declare class CloudTrail extends CloudTrailClient implements CloudTrail {
333
624
  }