@aws-sdk/client-cloudtrail 3.169.0 → 3.170.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/CloudTrail.d.ts +562 -160
  3. package/dist-types/ts3.4/CloudTrailClient.d.ts +315 -104
  4. package/dist-types/ts3.4/commands/AddTagsCommand.d.ts +34 -17
  5. package/dist-types/ts3.4/commands/CancelQueryCommand.d.ts +34 -17
  6. package/dist-types/ts3.4/commands/CreateEventDataStoreCommand.d.ts +41 -17
  7. package/dist-types/ts3.4/commands/CreateTrailCommand.d.ts +34 -17
  8. package/dist-types/ts3.4/commands/DeleteEventDataStoreCommand.d.ts +41 -17
  9. package/dist-types/ts3.4/commands/DeleteTrailCommand.d.ts +34 -17
  10. package/dist-types/ts3.4/commands/DescribeQueryCommand.d.ts +37 -17
  11. package/dist-types/ts3.4/commands/DescribeTrailsCommand.d.ts +37 -17
  12. package/dist-types/ts3.4/commands/GetChannelCommand.d.ts +34 -17
  13. package/dist-types/ts3.4/commands/GetEventDataStoreCommand.d.ts +38 -17
  14. package/dist-types/ts3.4/commands/GetEventSelectorsCommand.d.ts +38 -17
  15. package/dist-types/ts3.4/commands/GetInsightSelectorsCommand.d.ts +38 -17
  16. package/dist-types/ts3.4/commands/GetQueryResultsCommand.d.ts +37 -17
  17. package/dist-types/ts3.4/commands/GetTrailCommand.d.ts +34 -17
  18. package/dist-types/ts3.4/commands/GetTrailStatusCommand.d.ts +37 -17
  19. package/dist-types/ts3.4/commands/ListChannelsCommand.d.ts +34 -17
  20. package/dist-types/ts3.4/commands/ListEventDataStoresCommand.d.ts +38 -17
  21. package/dist-types/ts3.4/commands/ListPublicKeysCommand.d.ts +37 -17
  22. package/dist-types/ts3.4/commands/ListQueriesCommand.d.ts +34 -17
  23. package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +34 -17
  24. package/dist-types/ts3.4/commands/ListTrailsCommand.d.ts +34 -17
  25. package/dist-types/ts3.4/commands/LookupEventsCommand.d.ts +34 -17
  26. package/dist-types/ts3.4/commands/PutEventSelectorsCommand.d.ts +38 -17
  27. package/dist-types/ts3.4/commands/PutInsightSelectorsCommand.d.ts +38 -17
  28. package/dist-types/ts3.4/commands/RemoveTagsCommand.d.ts +34 -17
  29. package/dist-types/ts3.4/commands/RestoreEventDataStoreCommand.d.ts +41 -17
  30. package/dist-types/ts3.4/commands/StartLoggingCommand.d.ts +34 -17
  31. package/dist-types/ts3.4/commands/StartQueryCommand.d.ts +34 -17
  32. package/dist-types/ts3.4/commands/StopLoggingCommand.d.ts +34 -17
  33. package/dist-types/ts3.4/commands/UpdateEventDataStoreCommand.d.ts +41 -17
  34. package/dist-types/ts3.4/commands/UpdateTrailCommand.d.ts +34 -17
  35. package/dist-types/ts3.4/commands/index.d.ts +31 -31
  36. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  37. package/dist-types/ts3.4/index.d.ts +6 -6
  38. package/dist-types/ts3.4/models/CloudTrailServiceException.d.ts +8 -6
  39. package/dist-types/ts3.4/models/index.d.ts +1 -1
  40. package/dist-types/ts3.4/models/models_0.d.ts +1798 -1555
  41. package/dist-types/ts3.4/pagination/GetQueryResultsPaginator.d.ts +11 -4
  42. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  43. package/dist-types/ts3.4/pagination/ListChannelsPaginator.d.ts +11 -4
  44. package/dist-types/ts3.4/pagination/ListEventDataStoresPaginator.d.ts +11 -4
  45. package/dist-types/ts3.4/pagination/ListPublicKeysPaginator.d.ts +11 -4
  46. package/dist-types/ts3.4/pagination/ListQueriesPaginator.d.ts +11 -4
  47. package/dist-types/ts3.4/pagination/ListTagsPaginator.d.ts +11 -4
  48. package/dist-types/ts3.4/pagination/ListTrailsPaginator.d.ts +11 -4
  49. package/dist-types/ts3.4/pagination/LookupEventsPaginator.d.ts +11 -4
  50. package/dist-types/ts3.4/pagination/index.d.ts +9 -9
  51. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +377 -95
  52. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  53. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  54. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  55. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  56. package/package.json +34 -34
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient";
4
- import { ListChannelsRequest, ListChannelsResponse } from "../models/models_0";
5
- export interface ListChannelsCommandInput extends ListChannelsRequest {
6
- }
7
- export interface ListChannelsCommandOutput extends ListChannelsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListChannelsCommand extends $Command<ListChannelsCommandInput, ListChannelsCommandOutput, CloudTrailClientResolvedConfig> {
11
- readonly input: ListChannelsCommandInput;
12
- constructor(input: ListChannelsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudTrailClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListChannelsCommandInput, ListChannelsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CloudTrailClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CloudTrailClient";
13
+ import { ListChannelsRequest, ListChannelsResponse } from "../models/models_0";
14
+ export interface ListChannelsCommandInput extends ListChannelsRequest {}
15
+ export interface ListChannelsCommandOutput
16
+ extends ListChannelsResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class ListChannelsCommand extends $Command<
20
+ ListChannelsCommandInput,
21
+ ListChannelsCommandOutput,
22
+ CloudTrailClientResolvedConfig
23
+ > {
24
+ readonly input: ListChannelsCommandInput;
25
+ constructor(input: ListChannelsCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: CloudTrailClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ListChannelsCommandInput, ListChannelsCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient";
4
- import { ListEventDataStoresRequest, ListEventDataStoresResponse } from "../models/models_0";
5
- export interface ListEventDataStoresCommandInput extends ListEventDataStoresRequest {
6
- }
7
- export interface ListEventDataStoresCommandOutput extends ListEventDataStoresResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListEventDataStoresCommand extends $Command<ListEventDataStoresCommandInput, ListEventDataStoresCommandOutput, CloudTrailClientResolvedConfig> {
11
- readonly input: ListEventDataStoresCommandInput;
12
- constructor(input: ListEventDataStoresCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudTrailClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListEventDataStoresCommandInput, ListEventDataStoresCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CloudTrailClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CloudTrailClient";
13
+ import {
14
+ ListEventDataStoresRequest,
15
+ ListEventDataStoresResponse,
16
+ } from "../models/models_0";
17
+ export interface ListEventDataStoresCommandInput
18
+ extends ListEventDataStoresRequest {}
19
+ export interface ListEventDataStoresCommandOutput
20
+ extends ListEventDataStoresResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListEventDataStoresCommand extends $Command<
24
+ ListEventDataStoresCommandInput,
25
+ ListEventDataStoresCommandOutput,
26
+ CloudTrailClientResolvedConfig
27
+ > {
28
+ readonly input: ListEventDataStoresCommandInput;
29
+ constructor(input: ListEventDataStoresCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CloudTrailClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListEventDataStoresCommandInput, ListEventDataStoresCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient";
4
- import { ListPublicKeysRequest, ListPublicKeysResponse } from "../models/models_0";
5
- export interface ListPublicKeysCommandInput extends ListPublicKeysRequest {
6
- }
7
- export interface ListPublicKeysCommandOutput extends ListPublicKeysResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListPublicKeysCommand extends $Command<ListPublicKeysCommandInput, ListPublicKeysCommandOutput, CloudTrailClientResolvedConfig> {
11
- readonly input: ListPublicKeysCommandInput;
12
- constructor(input: ListPublicKeysCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudTrailClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListPublicKeysCommandInput, ListPublicKeysCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CloudTrailClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CloudTrailClient";
13
+ import {
14
+ ListPublicKeysRequest,
15
+ ListPublicKeysResponse,
16
+ } from "../models/models_0";
17
+ export interface ListPublicKeysCommandInput extends ListPublicKeysRequest {}
18
+ export interface ListPublicKeysCommandOutput
19
+ extends ListPublicKeysResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class ListPublicKeysCommand extends $Command<
23
+ ListPublicKeysCommandInput,
24
+ ListPublicKeysCommandOutput,
25
+ CloudTrailClientResolvedConfig
26
+ > {
27
+ readonly input: ListPublicKeysCommandInput;
28
+ constructor(input: ListPublicKeysCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: CloudTrailClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<ListPublicKeysCommandInput, ListPublicKeysCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient";
4
- import { ListQueriesRequest, ListQueriesResponse } from "../models/models_0";
5
- export interface ListQueriesCommandInput extends ListQueriesRequest {
6
- }
7
- export interface ListQueriesCommandOutput extends ListQueriesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListQueriesCommand extends $Command<ListQueriesCommandInput, ListQueriesCommandOutput, CloudTrailClientResolvedConfig> {
11
- readonly input: ListQueriesCommandInput;
12
- constructor(input: ListQueriesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudTrailClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListQueriesCommandInput, ListQueriesCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CloudTrailClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CloudTrailClient";
13
+ import { ListQueriesRequest, ListQueriesResponse } from "../models/models_0";
14
+ export interface ListQueriesCommandInput extends ListQueriesRequest {}
15
+ export interface ListQueriesCommandOutput
16
+ extends ListQueriesResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class ListQueriesCommand extends $Command<
20
+ ListQueriesCommandInput,
21
+ ListQueriesCommandOutput,
22
+ CloudTrailClientResolvedConfig
23
+ > {
24
+ readonly input: ListQueriesCommandInput;
25
+ constructor(input: ListQueriesCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: CloudTrailClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ListQueriesCommandInput, ListQueriesCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient";
4
- import { ListTagsRequest, ListTagsResponse } from "../models/models_0";
5
- export interface ListTagsCommandInput extends ListTagsRequest {
6
- }
7
- export interface ListTagsCommandOutput extends ListTagsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListTagsCommand extends $Command<ListTagsCommandInput, ListTagsCommandOutput, CloudTrailClientResolvedConfig> {
11
- readonly input: ListTagsCommandInput;
12
- constructor(input: ListTagsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudTrailClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsCommandInput, ListTagsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CloudTrailClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CloudTrailClient";
13
+ import { ListTagsRequest, ListTagsResponse } from "../models/models_0";
14
+ export interface ListTagsCommandInput extends ListTagsRequest {}
15
+ export interface ListTagsCommandOutput
16
+ extends ListTagsResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class ListTagsCommand extends $Command<
20
+ ListTagsCommandInput,
21
+ ListTagsCommandOutput,
22
+ CloudTrailClientResolvedConfig
23
+ > {
24
+ readonly input: ListTagsCommandInput;
25
+ constructor(input: ListTagsCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: CloudTrailClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ListTagsCommandInput, ListTagsCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient";
4
- import { ListTrailsRequest, ListTrailsResponse } from "../models/models_0";
5
- export interface ListTrailsCommandInput extends ListTrailsRequest {
6
- }
7
- export interface ListTrailsCommandOutput extends ListTrailsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListTrailsCommand extends $Command<ListTrailsCommandInput, ListTrailsCommandOutput, CloudTrailClientResolvedConfig> {
11
- readonly input: ListTrailsCommandInput;
12
- constructor(input: ListTrailsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudTrailClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTrailsCommandInput, ListTrailsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CloudTrailClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CloudTrailClient";
13
+ import { ListTrailsRequest, ListTrailsResponse } from "../models/models_0";
14
+ export interface ListTrailsCommandInput extends ListTrailsRequest {}
15
+ export interface ListTrailsCommandOutput
16
+ extends ListTrailsResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class ListTrailsCommand extends $Command<
20
+ ListTrailsCommandInput,
21
+ ListTrailsCommandOutput,
22
+ CloudTrailClientResolvedConfig
23
+ > {
24
+ readonly input: ListTrailsCommandInput;
25
+ constructor(input: ListTrailsCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: CloudTrailClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ListTrailsCommandInput, ListTrailsCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient";
4
- import { LookupEventsRequest, LookupEventsResponse } from "../models/models_0";
5
- export interface LookupEventsCommandInput extends LookupEventsRequest {
6
- }
7
- export interface LookupEventsCommandOutput extends LookupEventsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class LookupEventsCommand extends $Command<LookupEventsCommandInput, LookupEventsCommandOutput, CloudTrailClientResolvedConfig> {
11
- readonly input: LookupEventsCommandInput;
12
- constructor(input: LookupEventsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudTrailClientResolvedConfig, options?: __HttpHandlerOptions): Handler<LookupEventsCommandInput, LookupEventsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CloudTrailClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CloudTrailClient";
13
+ import { LookupEventsRequest, LookupEventsResponse } from "../models/models_0";
14
+ export interface LookupEventsCommandInput extends LookupEventsRequest {}
15
+ export interface LookupEventsCommandOutput
16
+ extends LookupEventsResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class LookupEventsCommand extends $Command<
20
+ LookupEventsCommandInput,
21
+ LookupEventsCommandOutput,
22
+ CloudTrailClientResolvedConfig
23
+ > {
24
+ readonly input: LookupEventsCommandInput;
25
+ constructor(input: LookupEventsCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: CloudTrailClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<LookupEventsCommandInput, LookupEventsCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient";
4
- import { PutEventSelectorsRequest, PutEventSelectorsResponse } from "../models/models_0";
5
- export interface PutEventSelectorsCommandInput extends PutEventSelectorsRequest {
6
- }
7
- export interface PutEventSelectorsCommandOutput extends PutEventSelectorsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class PutEventSelectorsCommand extends $Command<PutEventSelectorsCommandInput, PutEventSelectorsCommandOutput, CloudTrailClientResolvedConfig> {
11
- readonly input: PutEventSelectorsCommandInput;
12
- constructor(input: PutEventSelectorsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudTrailClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutEventSelectorsCommandInput, PutEventSelectorsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CloudTrailClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CloudTrailClient";
13
+ import {
14
+ PutEventSelectorsRequest,
15
+ PutEventSelectorsResponse,
16
+ } from "../models/models_0";
17
+ export interface PutEventSelectorsCommandInput
18
+ extends PutEventSelectorsRequest {}
19
+ export interface PutEventSelectorsCommandOutput
20
+ extends PutEventSelectorsResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class PutEventSelectorsCommand extends $Command<
24
+ PutEventSelectorsCommandInput,
25
+ PutEventSelectorsCommandOutput,
26
+ CloudTrailClientResolvedConfig
27
+ > {
28
+ readonly input: PutEventSelectorsCommandInput;
29
+ constructor(input: PutEventSelectorsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CloudTrailClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<PutEventSelectorsCommandInput, PutEventSelectorsCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient";
4
- import { PutInsightSelectorsRequest, PutInsightSelectorsResponse } from "../models/models_0";
5
- export interface PutInsightSelectorsCommandInput extends PutInsightSelectorsRequest {
6
- }
7
- export interface PutInsightSelectorsCommandOutput extends PutInsightSelectorsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class PutInsightSelectorsCommand extends $Command<PutInsightSelectorsCommandInput, PutInsightSelectorsCommandOutput, CloudTrailClientResolvedConfig> {
11
- readonly input: PutInsightSelectorsCommandInput;
12
- constructor(input: PutInsightSelectorsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudTrailClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutInsightSelectorsCommandInput, PutInsightSelectorsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CloudTrailClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CloudTrailClient";
13
+ import {
14
+ PutInsightSelectorsRequest,
15
+ PutInsightSelectorsResponse,
16
+ } from "../models/models_0";
17
+ export interface PutInsightSelectorsCommandInput
18
+ extends PutInsightSelectorsRequest {}
19
+ export interface PutInsightSelectorsCommandOutput
20
+ extends PutInsightSelectorsResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class PutInsightSelectorsCommand extends $Command<
24
+ PutInsightSelectorsCommandInput,
25
+ PutInsightSelectorsCommandOutput,
26
+ CloudTrailClientResolvedConfig
27
+ > {
28
+ readonly input: PutInsightSelectorsCommandInput;
29
+ constructor(input: PutInsightSelectorsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CloudTrailClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<PutInsightSelectorsCommandInput, PutInsightSelectorsCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient";
4
- import { RemoveTagsRequest, RemoveTagsResponse } from "../models/models_0";
5
- export interface RemoveTagsCommandInput extends RemoveTagsRequest {
6
- }
7
- export interface RemoveTagsCommandOutput extends RemoveTagsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class RemoveTagsCommand extends $Command<RemoveTagsCommandInput, RemoveTagsCommandOutput, CloudTrailClientResolvedConfig> {
11
- readonly input: RemoveTagsCommandInput;
12
- constructor(input: RemoveTagsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudTrailClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RemoveTagsCommandInput, RemoveTagsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CloudTrailClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CloudTrailClient";
13
+ import { RemoveTagsRequest, RemoveTagsResponse } from "../models/models_0";
14
+ export interface RemoveTagsCommandInput extends RemoveTagsRequest {}
15
+ export interface RemoveTagsCommandOutput
16
+ extends RemoveTagsResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class RemoveTagsCommand extends $Command<
20
+ RemoveTagsCommandInput,
21
+ RemoveTagsCommandOutput,
22
+ CloudTrailClientResolvedConfig
23
+ > {
24
+ readonly input: RemoveTagsCommandInput;
25
+ constructor(input: RemoveTagsCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: CloudTrailClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<RemoveTagsCommandInput, RemoveTagsCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient";
4
- import { RestoreEventDataStoreRequest, RestoreEventDataStoreResponse } from "../models/models_0";
5
- export interface RestoreEventDataStoreCommandInput extends RestoreEventDataStoreRequest {
6
- }
7
- export interface RestoreEventDataStoreCommandOutput extends RestoreEventDataStoreResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class RestoreEventDataStoreCommand extends $Command<RestoreEventDataStoreCommandInput, RestoreEventDataStoreCommandOutput, CloudTrailClientResolvedConfig> {
11
- readonly input: RestoreEventDataStoreCommandInput;
12
- constructor(input: RestoreEventDataStoreCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudTrailClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RestoreEventDataStoreCommandInput, RestoreEventDataStoreCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CloudTrailClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CloudTrailClient";
13
+ import {
14
+ RestoreEventDataStoreRequest,
15
+ RestoreEventDataStoreResponse,
16
+ } from "../models/models_0";
17
+ export interface RestoreEventDataStoreCommandInput
18
+ extends RestoreEventDataStoreRequest {}
19
+ export interface RestoreEventDataStoreCommandOutput
20
+ extends RestoreEventDataStoreResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class RestoreEventDataStoreCommand extends $Command<
24
+ RestoreEventDataStoreCommandInput,
25
+ RestoreEventDataStoreCommandOutput,
26
+ CloudTrailClientResolvedConfig
27
+ > {
28
+ readonly input: RestoreEventDataStoreCommandInput;
29
+ constructor(input: RestoreEventDataStoreCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CloudTrailClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ RestoreEventDataStoreCommandInput,
37
+ RestoreEventDataStoreCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }