@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.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/CloudTrail.d.ts +562 -160
- package/dist-types/ts3.4/CloudTrailClient.d.ts +315 -104
- package/dist-types/ts3.4/commands/AddTagsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CancelQueryCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateEventDataStoreCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateTrailCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteEventDataStoreCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteTrailCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DescribeQueryCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeTrailsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetChannelCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetEventDataStoreCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetEventSelectorsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetInsightSelectorsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetQueryResultsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetTrailCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetTrailStatusCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListChannelsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListEventDataStoresCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListPublicKeysCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListQueriesCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListTrailsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/LookupEventsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/PutEventSelectorsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PutInsightSelectorsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/RemoveTagsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/RestoreEventDataStoreCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/StartLoggingCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/StartQueryCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/StopLoggingCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateEventDataStoreCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateTrailCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/index.d.ts +31 -31
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/CloudTrailServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1798 -1555
- package/dist-types/ts3.4/pagination/GetQueryResultsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListChannelsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListEventDataStoresPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListPublicKeysPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListQueriesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListTagsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListTrailsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/LookupEventsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +9 -9
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +377 -95
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
DeleteEventDataStoreRequest,
|
|
15
|
+
DeleteEventDataStoreResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteEventDataStoreCommandInput
|
|
18
|
+
extends DeleteEventDataStoreRequest {}
|
|
19
|
+
export interface DeleteEventDataStoreCommandOutput
|
|
20
|
+
extends DeleteEventDataStoreResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DeleteEventDataStoreCommand extends $Command<
|
|
24
|
+
DeleteEventDataStoreCommandInput,
|
|
25
|
+
DeleteEventDataStoreCommandOutput,
|
|
26
|
+
CloudTrailClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteEventDataStoreCommandInput;
|
|
29
|
+
constructor(input: DeleteEventDataStoreCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: CloudTrailClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DeleteEventDataStoreCommandInput,
|
|
37
|
+
DeleteEventDataStoreCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 { DeleteTrailRequest, DeleteTrailResponse } from "../models/models_0";
|
|
14
|
+
export interface DeleteTrailCommandInput extends DeleteTrailRequest {}
|
|
15
|
+
export interface DeleteTrailCommandOutput
|
|
16
|
+
extends DeleteTrailResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class DeleteTrailCommand extends $Command<
|
|
20
|
+
DeleteTrailCommandInput,
|
|
21
|
+
DeleteTrailCommandOutput,
|
|
22
|
+
CloudTrailClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeleteTrailCommandInput;
|
|
25
|
+
constructor(input: DeleteTrailCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: CloudTrailClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<DeleteTrailCommandInput, DeleteTrailCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
DescribeQueryRequest,
|
|
15
|
+
DescribeQueryResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeQueryCommandInput extends DescribeQueryRequest {}
|
|
18
|
+
export interface DescribeQueryCommandOutput
|
|
19
|
+
extends DescribeQueryResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class DescribeQueryCommand extends $Command<
|
|
23
|
+
DescribeQueryCommandInput,
|
|
24
|
+
DescribeQueryCommandOutput,
|
|
25
|
+
CloudTrailClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeQueryCommandInput;
|
|
28
|
+
constructor(input: DescribeQueryCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: CloudTrailClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<DescribeQueryCommandInput, DescribeQueryCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
DescribeTrailsRequest,
|
|
15
|
+
DescribeTrailsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeTrailsCommandInput extends DescribeTrailsRequest {}
|
|
18
|
+
export interface DescribeTrailsCommandOutput
|
|
19
|
+
extends DescribeTrailsResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class DescribeTrailsCommand extends $Command<
|
|
23
|
+
DescribeTrailsCommandInput,
|
|
24
|
+
DescribeTrailsCommandOutput,
|
|
25
|
+
CloudTrailClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeTrailsCommandInput;
|
|
28
|
+
constructor(input: DescribeTrailsCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: CloudTrailClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<DescribeTrailsCommandInput, DescribeTrailsCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 { GetChannelRequest, GetChannelResponse } from "../models/models_0";
|
|
14
|
+
export interface GetChannelCommandInput extends GetChannelRequest {}
|
|
15
|
+
export interface GetChannelCommandOutput
|
|
16
|
+
extends GetChannelResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class GetChannelCommand extends $Command<
|
|
20
|
+
GetChannelCommandInput,
|
|
21
|
+
GetChannelCommandOutput,
|
|
22
|
+
CloudTrailClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: GetChannelCommandInput;
|
|
25
|
+
constructor(input: GetChannelCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: CloudTrailClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<GetChannelCommandInput, GetChannelCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
GetEventDataStoreRequest,
|
|
15
|
+
GetEventDataStoreResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetEventDataStoreCommandInput
|
|
18
|
+
extends GetEventDataStoreRequest {}
|
|
19
|
+
export interface GetEventDataStoreCommandOutput
|
|
20
|
+
extends GetEventDataStoreResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetEventDataStoreCommand extends $Command<
|
|
24
|
+
GetEventDataStoreCommandInput,
|
|
25
|
+
GetEventDataStoreCommandOutput,
|
|
26
|
+
CloudTrailClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetEventDataStoreCommandInput;
|
|
29
|
+
constructor(input: GetEventDataStoreCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: CloudTrailClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<GetEventDataStoreCommandInput, GetEventDataStoreCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
GetEventSelectorsRequest,
|
|
15
|
+
GetEventSelectorsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetEventSelectorsCommandInput
|
|
18
|
+
extends GetEventSelectorsRequest {}
|
|
19
|
+
export interface GetEventSelectorsCommandOutput
|
|
20
|
+
extends GetEventSelectorsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetEventSelectorsCommand extends $Command<
|
|
24
|
+
GetEventSelectorsCommandInput,
|
|
25
|
+
GetEventSelectorsCommandOutput,
|
|
26
|
+
CloudTrailClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetEventSelectorsCommandInput;
|
|
29
|
+
constructor(input: GetEventSelectorsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: CloudTrailClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<GetEventSelectorsCommandInput, GetEventSelectorsCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
GetInsightSelectorsRequest,
|
|
15
|
+
GetInsightSelectorsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetInsightSelectorsCommandInput
|
|
18
|
+
extends GetInsightSelectorsRequest {}
|
|
19
|
+
export interface GetInsightSelectorsCommandOutput
|
|
20
|
+
extends GetInsightSelectorsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetInsightSelectorsCommand extends $Command<
|
|
24
|
+
GetInsightSelectorsCommandInput,
|
|
25
|
+
GetInsightSelectorsCommandOutput,
|
|
26
|
+
CloudTrailClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetInsightSelectorsCommandInput;
|
|
29
|
+
constructor(input: GetInsightSelectorsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: CloudTrailClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<GetInsightSelectorsCommandInput, GetInsightSelectorsCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
GetQueryResultsRequest,
|
|
15
|
+
GetQueryResultsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetQueryResultsCommandInput extends GetQueryResultsRequest {}
|
|
18
|
+
export interface GetQueryResultsCommandOutput
|
|
19
|
+
extends GetQueryResultsResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class GetQueryResultsCommand extends $Command<
|
|
23
|
+
GetQueryResultsCommandInput,
|
|
24
|
+
GetQueryResultsCommandOutput,
|
|
25
|
+
CloudTrailClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetQueryResultsCommandInput;
|
|
28
|
+
constructor(input: GetQueryResultsCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: CloudTrailClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<GetQueryResultsCommandInput, GetQueryResultsCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 { GetTrailRequest, GetTrailResponse } from "../models/models_0";
|
|
14
|
+
export interface GetTrailCommandInput extends GetTrailRequest {}
|
|
15
|
+
export interface GetTrailCommandOutput
|
|
16
|
+
extends GetTrailResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class GetTrailCommand extends $Command<
|
|
20
|
+
GetTrailCommandInput,
|
|
21
|
+
GetTrailCommandOutput,
|
|
22
|
+
CloudTrailClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: GetTrailCommandInput;
|
|
25
|
+
constructor(input: GetTrailCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: CloudTrailClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<GetTrailCommandInput, GetTrailCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
GetTrailStatusRequest,
|
|
15
|
+
GetTrailStatusResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetTrailStatusCommandInput extends GetTrailStatusRequest {}
|
|
18
|
+
export interface GetTrailStatusCommandOutput
|
|
19
|
+
extends GetTrailStatusResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class GetTrailStatusCommand extends $Command<
|
|
23
|
+
GetTrailStatusCommandInput,
|
|
24
|
+
GetTrailStatusCommandOutput,
|
|
25
|
+
CloudTrailClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetTrailStatusCommandInput;
|
|
28
|
+
constructor(input: GetTrailStatusCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: CloudTrailClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<GetTrailStatusCommandInput, GetTrailStatusCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|