@aws-sdk/client-emr-containers 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/EMRContainers.d.ts +274 -80
- package/dist-types/ts3.4/EMRContainersClient.d.ts +220 -88
- package/dist-types/ts3.4/commands/CancelJobRunCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateManagedEndpointCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateVirtualClusterCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteManagedEndpointCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteVirtualClusterCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeJobRunCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeManagedEndpointCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeVirtualClusterCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListJobRunsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListManagedEndpointsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListVirtualClustersCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/StartJobRunCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/index.d.ts +15 -15
- 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/EMRContainersServiceException.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 +607 -567
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListJobRunsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListManagedEndpointsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListVirtualClustersPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +4 -4
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +185 -47
- 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,6 +1,7 @@
|
|
|
1
|
-
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { EMRContainers } from "../EMRContainers";
|
|
3
|
-
import { EMRContainersClient } from "../EMRContainersClient";
|
|
4
|
-
export interface EMRContainersPaginationConfiguration
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { EMRContainers } from "../EMRContainers";
|
|
3
|
+
import { EMRContainersClient } from "../EMRContainersClient";
|
|
4
|
+
export interface EMRContainersPaginationConfiguration
|
|
5
|
+
extends PaginationConfiguration {
|
|
6
|
+
client: EMRContainers | EMRContainersClient;
|
|
7
|
+
}
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListJobRunsCommandInput,
|
|
4
|
+
ListJobRunsCommandOutput,
|
|
5
|
+
} from "../commands/ListJobRunsCommand";
|
|
6
|
+
import { EMRContainersPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListJobRuns(
|
|
8
|
+
config: EMRContainersPaginationConfiguration,
|
|
9
|
+
input: ListJobRunsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListJobRunsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListManagedEndpointsCommandInput,
|
|
4
|
+
ListManagedEndpointsCommandOutput,
|
|
5
|
+
} from "../commands/ListManagedEndpointsCommand";
|
|
6
|
+
import { EMRContainersPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListManagedEndpoints(
|
|
8
|
+
config: EMRContainersPaginationConfiguration,
|
|
9
|
+
input: ListManagedEndpointsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListManagedEndpointsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListVirtualClustersCommandInput,
|
|
4
|
+
ListVirtualClustersCommandOutput,
|
|
5
|
+
} from "../commands/ListVirtualClustersCommand";
|
|
6
|
+
import { EMRContainersPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListVirtualClusters(
|
|
8
|
+
config: EMRContainersPaginationConfiguration,
|
|
9
|
+
input: ListVirtualClustersCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListVirtualClustersCommandOutput>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from "./Interfaces";
|
|
2
|
-
export * from "./ListJobRunsPaginator";
|
|
3
|
-
export * from "./ListManagedEndpointsPaginator";
|
|
4
|
-
export * from "./ListVirtualClustersPaginator";
|
|
1
|
+
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListJobRunsPaginator";
|
|
3
|
+
export * from "./ListManagedEndpointsPaginator";
|
|
4
|
+
export * from "./ListVirtualClustersPaginator";
|
|
@@ -1,47 +1,185 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
1
|
+
import {
|
|
2
|
+
HttpRequest as __HttpRequest,
|
|
3
|
+
HttpResponse as __HttpResponse,
|
|
4
|
+
} from "@aws-sdk/protocol-http";
|
|
5
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
6
|
+
import {
|
|
7
|
+
CancelJobRunCommandInput,
|
|
8
|
+
CancelJobRunCommandOutput,
|
|
9
|
+
} from "../commands/CancelJobRunCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateManagedEndpointCommandInput,
|
|
12
|
+
CreateManagedEndpointCommandOutput,
|
|
13
|
+
} from "../commands/CreateManagedEndpointCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateVirtualClusterCommandInput,
|
|
16
|
+
CreateVirtualClusterCommandOutput,
|
|
17
|
+
} from "../commands/CreateVirtualClusterCommand";
|
|
18
|
+
import {
|
|
19
|
+
DeleteManagedEndpointCommandInput,
|
|
20
|
+
DeleteManagedEndpointCommandOutput,
|
|
21
|
+
} from "../commands/DeleteManagedEndpointCommand";
|
|
22
|
+
import {
|
|
23
|
+
DeleteVirtualClusterCommandInput,
|
|
24
|
+
DeleteVirtualClusterCommandOutput,
|
|
25
|
+
} from "../commands/DeleteVirtualClusterCommand";
|
|
26
|
+
import {
|
|
27
|
+
DescribeJobRunCommandInput,
|
|
28
|
+
DescribeJobRunCommandOutput,
|
|
29
|
+
} from "../commands/DescribeJobRunCommand";
|
|
30
|
+
import {
|
|
31
|
+
DescribeManagedEndpointCommandInput,
|
|
32
|
+
DescribeManagedEndpointCommandOutput,
|
|
33
|
+
} from "../commands/DescribeManagedEndpointCommand";
|
|
34
|
+
import {
|
|
35
|
+
DescribeVirtualClusterCommandInput,
|
|
36
|
+
DescribeVirtualClusterCommandOutput,
|
|
37
|
+
} from "../commands/DescribeVirtualClusterCommand";
|
|
38
|
+
import {
|
|
39
|
+
ListJobRunsCommandInput,
|
|
40
|
+
ListJobRunsCommandOutput,
|
|
41
|
+
} from "../commands/ListJobRunsCommand";
|
|
42
|
+
import {
|
|
43
|
+
ListManagedEndpointsCommandInput,
|
|
44
|
+
ListManagedEndpointsCommandOutput,
|
|
45
|
+
} from "../commands/ListManagedEndpointsCommand";
|
|
46
|
+
import {
|
|
47
|
+
ListTagsForResourceCommandInput,
|
|
48
|
+
ListTagsForResourceCommandOutput,
|
|
49
|
+
} from "../commands/ListTagsForResourceCommand";
|
|
50
|
+
import {
|
|
51
|
+
ListVirtualClustersCommandInput,
|
|
52
|
+
ListVirtualClustersCommandOutput,
|
|
53
|
+
} from "../commands/ListVirtualClustersCommand";
|
|
54
|
+
import {
|
|
55
|
+
StartJobRunCommandInput,
|
|
56
|
+
StartJobRunCommandOutput,
|
|
57
|
+
} from "../commands/StartJobRunCommand";
|
|
58
|
+
import {
|
|
59
|
+
TagResourceCommandInput,
|
|
60
|
+
TagResourceCommandOutput,
|
|
61
|
+
} from "../commands/TagResourceCommand";
|
|
62
|
+
import {
|
|
63
|
+
UntagResourceCommandInput,
|
|
64
|
+
UntagResourceCommandOutput,
|
|
65
|
+
} from "../commands/UntagResourceCommand";
|
|
66
|
+
export declare const serializeAws_restJson1CancelJobRunCommand: (
|
|
67
|
+
input: CancelJobRunCommandInput,
|
|
68
|
+
context: __SerdeContext
|
|
69
|
+
) => Promise<__HttpRequest>;
|
|
70
|
+
export declare const serializeAws_restJson1CreateManagedEndpointCommand: (
|
|
71
|
+
input: CreateManagedEndpointCommandInput,
|
|
72
|
+
context: __SerdeContext
|
|
73
|
+
) => Promise<__HttpRequest>;
|
|
74
|
+
export declare const serializeAws_restJson1CreateVirtualClusterCommand: (
|
|
75
|
+
input: CreateVirtualClusterCommandInput,
|
|
76
|
+
context: __SerdeContext
|
|
77
|
+
) => Promise<__HttpRequest>;
|
|
78
|
+
export declare const serializeAws_restJson1DeleteManagedEndpointCommand: (
|
|
79
|
+
input: DeleteManagedEndpointCommandInput,
|
|
80
|
+
context: __SerdeContext
|
|
81
|
+
) => Promise<__HttpRequest>;
|
|
82
|
+
export declare const serializeAws_restJson1DeleteVirtualClusterCommand: (
|
|
83
|
+
input: DeleteVirtualClusterCommandInput,
|
|
84
|
+
context: __SerdeContext
|
|
85
|
+
) => Promise<__HttpRequest>;
|
|
86
|
+
export declare const serializeAws_restJson1DescribeJobRunCommand: (
|
|
87
|
+
input: DescribeJobRunCommandInput,
|
|
88
|
+
context: __SerdeContext
|
|
89
|
+
) => Promise<__HttpRequest>;
|
|
90
|
+
export declare const serializeAws_restJson1DescribeManagedEndpointCommand: (
|
|
91
|
+
input: DescribeManagedEndpointCommandInput,
|
|
92
|
+
context: __SerdeContext
|
|
93
|
+
) => Promise<__HttpRequest>;
|
|
94
|
+
export declare const serializeAws_restJson1DescribeVirtualClusterCommand: (
|
|
95
|
+
input: DescribeVirtualClusterCommandInput,
|
|
96
|
+
context: __SerdeContext
|
|
97
|
+
) => Promise<__HttpRequest>;
|
|
98
|
+
export declare const serializeAws_restJson1ListJobRunsCommand: (
|
|
99
|
+
input: ListJobRunsCommandInput,
|
|
100
|
+
context: __SerdeContext
|
|
101
|
+
) => Promise<__HttpRequest>;
|
|
102
|
+
export declare const serializeAws_restJson1ListManagedEndpointsCommand: (
|
|
103
|
+
input: ListManagedEndpointsCommandInput,
|
|
104
|
+
context: __SerdeContext
|
|
105
|
+
) => Promise<__HttpRequest>;
|
|
106
|
+
export declare const serializeAws_restJson1ListTagsForResourceCommand: (
|
|
107
|
+
input: ListTagsForResourceCommandInput,
|
|
108
|
+
context: __SerdeContext
|
|
109
|
+
) => Promise<__HttpRequest>;
|
|
110
|
+
export declare const serializeAws_restJson1ListVirtualClustersCommand: (
|
|
111
|
+
input: ListVirtualClustersCommandInput,
|
|
112
|
+
context: __SerdeContext
|
|
113
|
+
) => Promise<__HttpRequest>;
|
|
114
|
+
export declare const serializeAws_restJson1StartJobRunCommand: (
|
|
115
|
+
input: StartJobRunCommandInput,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<__HttpRequest>;
|
|
118
|
+
export declare const serializeAws_restJson1TagResourceCommand: (
|
|
119
|
+
input: TagResourceCommandInput,
|
|
120
|
+
context: __SerdeContext
|
|
121
|
+
) => Promise<__HttpRequest>;
|
|
122
|
+
export declare const serializeAws_restJson1UntagResourceCommand: (
|
|
123
|
+
input: UntagResourceCommandInput,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<__HttpRequest>;
|
|
126
|
+
export declare const deserializeAws_restJson1CancelJobRunCommand: (
|
|
127
|
+
output: __HttpResponse,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<CancelJobRunCommandOutput>;
|
|
130
|
+
export declare const deserializeAws_restJson1CreateManagedEndpointCommand: (
|
|
131
|
+
output: __HttpResponse,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<CreateManagedEndpointCommandOutput>;
|
|
134
|
+
export declare const deserializeAws_restJson1CreateVirtualClusterCommand: (
|
|
135
|
+
output: __HttpResponse,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<CreateVirtualClusterCommandOutput>;
|
|
138
|
+
export declare const deserializeAws_restJson1DeleteManagedEndpointCommand: (
|
|
139
|
+
output: __HttpResponse,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<DeleteManagedEndpointCommandOutput>;
|
|
142
|
+
export declare const deserializeAws_restJson1DeleteVirtualClusterCommand: (
|
|
143
|
+
output: __HttpResponse,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<DeleteVirtualClusterCommandOutput>;
|
|
146
|
+
export declare const deserializeAws_restJson1DescribeJobRunCommand: (
|
|
147
|
+
output: __HttpResponse,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<DescribeJobRunCommandOutput>;
|
|
150
|
+
export declare const deserializeAws_restJson1DescribeManagedEndpointCommand: (
|
|
151
|
+
output: __HttpResponse,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<DescribeManagedEndpointCommandOutput>;
|
|
154
|
+
export declare const deserializeAws_restJson1DescribeVirtualClusterCommand: (
|
|
155
|
+
output: __HttpResponse,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<DescribeVirtualClusterCommandOutput>;
|
|
158
|
+
export declare const deserializeAws_restJson1ListJobRunsCommand: (
|
|
159
|
+
output: __HttpResponse,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<ListJobRunsCommandOutput>;
|
|
162
|
+
export declare const deserializeAws_restJson1ListManagedEndpointsCommand: (
|
|
163
|
+
output: __HttpResponse,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<ListManagedEndpointsCommandOutput>;
|
|
166
|
+
export declare const deserializeAws_restJson1ListTagsForResourceCommand: (
|
|
167
|
+
output: __HttpResponse,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<ListTagsForResourceCommandOutput>;
|
|
170
|
+
export declare const deserializeAws_restJson1ListVirtualClustersCommand: (
|
|
171
|
+
output: __HttpResponse,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<ListVirtualClustersCommandOutput>;
|
|
174
|
+
export declare const deserializeAws_restJson1StartJobRunCommand: (
|
|
175
|
+
output: __HttpResponse,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<StartJobRunCommandOutput>;
|
|
178
|
+
export declare const deserializeAws_restJson1TagResourceCommand: (
|
|
179
|
+
output: __HttpResponse,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<TagResourceCommandOutput>;
|
|
182
|
+
export declare const deserializeAws_restJson1UntagResourceCommand: (
|
|
183
|
+
output: __HttpResponse,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<UntagResourceCommandOutput>;
|
|
@@ -1,38 +1,66 @@
|
|
|
1
|
-
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
-
import { EMRContainersClientConfig } from "./EMRContainersClient";
|
|
3
|
-
|
|
4
|
-
export declare const getRuntimeConfig: (config: EMRContainersClientConfig) => {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { EMRContainersClientConfig } from "./EMRContainersClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: EMRContainersClientConfig) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
7
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
8
|
+
>;
|
|
9
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
|
+
credentialDefaultProvider: (
|
|
13
|
+
input: any
|
|
14
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
15
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
16
|
+
import("@aws-sdk/types").UserAgent
|
|
17
|
+
>;
|
|
18
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
19
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
20
|
+
requestHandler:
|
|
21
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
22
|
+
any,
|
|
23
|
+
any,
|
|
24
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
25
|
+
> &
|
|
26
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
27
|
+
| RequestHandler;
|
|
28
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
29
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
30
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
31
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
32
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
33
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
34
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
35
|
+
apiVersion: string;
|
|
36
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
37
|
+
disableHostPrefix: boolean;
|
|
38
|
+
logger: import("@aws-sdk/types").Logger;
|
|
39
|
+
serviceId: string;
|
|
40
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
41
|
+
endpoint?:
|
|
42
|
+
| string
|
|
43
|
+
| import("@aws-sdk/types").Endpoint
|
|
44
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
45
|
+
| undefined;
|
|
46
|
+
tls?: boolean | undefined;
|
|
47
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
48
|
+
credentials?:
|
|
49
|
+
| import("@aws-sdk/types").Credentials
|
|
50
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
51
|
+
| undefined;
|
|
52
|
+
signer?:
|
|
53
|
+
| import("@aws-sdk/types").RequestSigner
|
|
54
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
55
|
+
| undefined;
|
|
56
|
+
signingEscapePath?: boolean | undefined;
|
|
57
|
+
systemClockOffset?: number | undefined;
|
|
58
|
+
signingRegion?: string | undefined;
|
|
59
|
+
signerConstructor?:
|
|
60
|
+
| (new (
|
|
61
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
62
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
63
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
64
|
+
| undefined;
|
|
65
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
66
|
+
};
|
|
@@ -1,38 +1,66 @@
|
|
|
1
|
-
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
-
import { EMRContainersClientConfig } from "./EMRContainersClient";
|
|
3
|
-
|
|
4
|
-
export declare const getRuntimeConfig: (config: EMRContainersClientConfig) => {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { EMRContainersClientConfig } from "./EMRContainersClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: EMRContainersClientConfig) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
7
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
8
|
+
>;
|
|
9
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
|
+
credentialDefaultProvider: (
|
|
13
|
+
input: any
|
|
14
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
15
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
16
|
+
import("@aws-sdk/types").UserAgent
|
|
17
|
+
>;
|
|
18
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
19
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
20
|
+
requestHandler:
|
|
21
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
22
|
+
any,
|
|
23
|
+
any,
|
|
24
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
25
|
+
> &
|
|
26
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
27
|
+
| RequestHandler;
|
|
28
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
29
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
30
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
31
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
32
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
33
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
34
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
35
|
+
apiVersion: string;
|
|
36
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
37
|
+
disableHostPrefix: boolean;
|
|
38
|
+
logger: import("@aws-sdk/types").Logger;
|
|
39
|
+
serviceId: string;
|
|
40
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
41
|
+
endpoint?:
|
|
42
|
+
| string
|
|
43
|
+
| import("@aws-sdk/types").Endpoint
|
|
44
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
45
|
+
| undefined;
|
|
46
|
+
tls?: boolean | undefined;
|
|
47
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
48
|
+
credentials?:
|
|
49
|
+
| import("@aws-sdk/types").Credentials
|
|
50
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
51
|
+
| undefined;
|
|
52
|
+
signer?:
|
|
53
|
+
| import("@aws-sdk/types").RequestSigner
|
|
54
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
55
|
+
| undefined;
|
|
56
|
+
signingEscapePath?: boolean | undefined;
|
|
57
|
+
systemClockOffset?: number | undefined;
|
|
58
|
+
signingRegion?: string | undefined;
|
|
59
|
+
signerConstructor?:
|
|
60
|
+
| (new (
|
|
61
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
62
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
63
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
64
|
+
| undefined;
|
|
65
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
66
|
+
};
|