@aws-sdk/client-cloudtrail 3.693.0 → 3.698.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/README.md +48 -0
- package/dist-cjs/index.js +346 -44
- package/dist-es/CloudTrail.js +12 -0
- package/dist-es/commands/CreateDashboardCommand.js +22 -0
- package/dist-es/commands/DeleteDashboardCommand.js +22 -0
- package/dist-es/commands/GetDashboardCommand.js +22 -0
- package/dist-es/commands/ListDashboardsCommand.js +22 -0
- package/dist-es/commands/StartDashboardRefreshCommand.js +22 -0
- package/dist-es/commands/UpdateDashboardCommand.js +22 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/models_0.js +58 -26
- package/dist-es/protocols/Aws_json1_1.js +160 -7
- package/dist-types/CloudTrail.d.ts +43 -0
- package/dist-types/CloudTrailClient.d.ts +8 -2
- package/dist-types/commands/AddTagsCommand.d.ts +4 -2
- package/dist-types/commands/CancelQueryCommand.d.ts +2 -0
- package/dist-types/commands/CreateChannelCommand.d.ts +1 -1
- package/dist-types/commands/CreateDashboardCommand.d.ts +189 -0
- package/dist-types/commands/CreateEventDataStoreCommand.d.ts +5 -1
- package/dist-types/commands/CreateTrailCommand.d.ts +6 -2
- package/dist-types/commands/DeleteDashboardCommand.d.ts +83 -0
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +16 -3
- package/dist-types/commands/DeleteTrailCommand.d.ts +2 -0
- package/dist-types/commands/DescribeQueryCommand.d.ts +7 -3
- package/dist-types/commands/DescribeTrailsCommand.d.ts +2 -0
- package/dist-types/commands/GenerateQueryCommand.d.ts +1 -0
- package/dist-types/commands/GetDashboardCommand.d.ts +106 -0
- package/dist-types/commands/GetEventSelectorsCommand.d.ts +2 -0
- package/dist-types/commands/GetInsightSelectorsCommand.d.ts +2 -0
- package/dist-types/commands/GetQueryResultsCommand.d.ts +6 -1
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +11 -3
- package/dist-types/commands/GetTrailCommand.d.ts +2 -0
- package/dist-types/commands/GetTrailStatusCommand.d.ts +2 -0
- package/dist-types/commands/ListDashboardsCommand.d.ts +85 -0
- package/dist-types/commands/ListTagsCommand.d.ts +3 -1
- package/dist-types/commands/PutEventSelectorsCommand.d.ts +2 -0
- package/dist-types/commands/PutInsightSelectorsCommand.d.ts +7 -1
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +17 -21
- package/dist-types/commands/RemoveTagsCommand.d.ts +3 -1
- package/dist-types/commands/StartDashboardRefreshCommand.d.ts +98 -0
- package/dist-types/commands/StartImportCommand.d.ts +5 -1
- package/dist-types/commands/StartLoggingCommand.d.ts +2 -0
- package/dist-types/commands/StartQueryCommand.d.ts +7 -1
- package/dist-types/commands/StopLoggingCommand.d.ts +2 -0
- package/dist-types/commands/UpdateDashboardCommand.d.ts +164 -0
- package/dist-types/commands/UpdateEventDataStoreCommand.d.ts +5 -1
- package/dist-types/commands/UpdateTrailCommand.d.ts +7 -1
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +823 -116
- package/dist-types/protocols/Aws_json1_1.d.ts +54 -0
- package/dist-types/ts3.4/CloudTrail.d.ts +103 -0
- package/dist-types/ts3.4/CloudTrailClient.d.ts +36 -0
- package/dist-types/ts3.4/commands/CreateDashboardCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteDashboardCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetDashboardCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListDashboardsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/StartDashboardRefreshCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateDashboardCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +156 -19
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +72 -0
- package/package.json +35 -35
package/README.md
CHANGED
|
@@ -242,6 +242,14 @@ CreateChannel
|
|
|
242
242
|
|
|
243
243
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudtrail/command/CreateChannelCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudtrail/Interface/CreateChannelCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudtrail/Interface/CreateChannelCommandOutput/)
|
|
244
244
|
|
|
245
|
+
</details>
|
|
246
|
+
<details>
|
|
247
|
+
<summary>
|
|
248
|
+
CreateDashboard
|
|
249
|
+
</summary>
|
|
250
|
+
|
|
251
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudtrail/command/CreateDashboardCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudtrail/Interface/CreateDashboardCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudtrail/Interface/CreateDashboardCommandOutput/)
|
|
252
|
+
|
|
245
253
|
</details>
|
|
246
254
|
<details>
|
|
247
255
|
<summary>
|
|
@@ -266,6 +274,14 @@ DeleteChannel
|
|
|
266
274
|
|
|
267
275
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudtrail/command/DeleteChannelCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudtrail/Interface/DeleteChannelCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudtrail/Interface/DeleteChannelCommandOutput/)
|
|
268
276
|
|
|
277
|
+
</details>
|
|
278
|
+
<details>
|
|
279
|
+
<summary>
|
|
280
|
+
DeleteDashboard
|
|
281
|
+
</summary>
|
|
282
|
+
|
|
283
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudtrail/command/DeleteDashboardCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudtrail/Interface/DeleteDashboardCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudtrail/Interface/DeleteDashboardCommandOutput/)
|
|
284
|
+
|
|
269
285
|
</details>
|
|
270
286
|
<details>
|
|
271
287
|
<summary>
|
|
@@ -346,6 +362,14 @@ GetChannel
|
|
|
346
362
|
|
|
347
363
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudtrail/command/GetChannelCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudtrail/Interface/GetChannelCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudtrail/Interface/GetChannelCommandOutput/)
|
|
348
364
|
|
|
365
|
+
</details>
|
|
366
|
+
<details>
|
|
367
|
+
<summary>
|
|
368
|
+
GetDashboard
|
|
369
|
+
</summary>
|
|
370
|
+
|
|
371
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudtrail/command/GetDashboardCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudtrail/Interface/GetDashboardCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudtrail/Interface/GetDashboardCommandOutput/)
|
|
372
|
+
|
|
349
373
|
</details>
|
|
350
374
|
<details>
|
|
351
375
|
<summary>
|
|
@@ -418,6 +442,14 @@ ListChannels
|
|
|
418
442
|
|
|
419
443
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudtrail/command/ListChannelsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudtrail/Interface/ListChannelsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudtrail/Interface/ListChannelsCommandOutput/)
|
|
420
444
|
|
|
445
|
+
</details>
|
|
446
|
+
<details>
|
|
447
|
+
<summary>
|
|
448
|
+
ListDashboards
|
|
449
|
+
</summary>
|
|
450
|
+
|
|
451
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudtrail/command/ListDashboardsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudtrail/Interface/ListDashboardsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudtrail/Interface/ListDashboardsCommandOutput/)
|
|
452
|
+
|
|
421
453
|
</details>
|
|
422
454
|
<details>
|
|
423
455
|
<summary>
|
|
@@ -538,6 +570,14 @@ RestoreEventDataStore
|
|
|
538
570
|
|
|
539
571
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudtrail/command/RestoreEventDataStoreCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudtrail/Interface/RestoreEventDataStoreCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudtrail/Interface/RestoreEventDataStoreCommandOutput/)
|
|
540
572
|
|
|
573
|
+
</details>
|
|
574
|
+
<details>
|
|
575
|
+
<summary>
|
|
576
|
+
StartDashboardRefresh
|
|
577
|
+
</summary>
|
|
578
|
+
|
|
579
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudtrail/command/StartDashboardRefreshCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudtrail/Interface/StartDashboardRefreshCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudtrail/Interface/StartDashboardRefreshCommandOutput/)
|
|
580
|
+
|
|
541
581
|
</details>
|
|
542
582
|
<details>
|
|
543
583
|
<summary>
|
|
@@ -602,6 +642,14 @@ UpdateChannel
|
|
|
602
642
|
|
|
603
643
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudtrail/command/UpdateChannelCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudtrail/Interface/UpdateChannelCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudtrail/Interface/UpdateChannelCommandOutput/)
|
|
604
644
|
|
|
645
|
+
</details>
|
|
646
|
+
<details>
|
|
647
|
+
<summary>
|
|
648
|
+
UpdateDashboard
|
|
649
|
+
</summary>
|
|
650
|
+
|
|
651
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudtrail/command/UpdateDashboardCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudtrail/Interface/UpdateDashboardCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudtrail/Interface/UpdateDashboardCommandOutput/)
|
|
652
|
+
|
|
605
653
|
</details>
|
|
606
654
|
<details>
|
|
607
655
|
<summary>
|