@aws-sdk/client-emr-containers 3.295.0 → 3.297.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/dist-types/EMRContainers.d.ts +20 -0
- package/dist-types/EMRContainersClient.d.ts +24 -4
- package/dist-types/commands/CancelJobRunCommand.d.ts +16 -0
- package/dist-types/commands/CreateJobTemplateCommand.d.ts +16 -0
- package/dist-types/commands/CreateManagedEndpointCommand.d.ts +16 -0
- package/dist-types/commands/CreateVirtualClusterCommand.d.ts +16 -0
- package/dist-types/commands/DeleteJobTemplateCommand.d.ts +16 -0
- package/dist-types/commands/DeleteManagedEndpointCommand.d.ts +16 -0
- package/dist-types/commands/DeleteVirtualClusterCommand.d.ts +16 -0
- package/dist-types/commands/DescribeJobRunCommand.d.ts +16 -0
- package/dist-types/commands/DescribeJobTemplateCommand.d.ts +16 -0
- package/dist-types/commands/DescribeManagedEndpointCommand.d.ts +16 -0
- package/dist-types/commands/DescribeVirtualClusterCommand.d.ts +16 -0
- package/dist-types/commands/ListJobRunsCommand.d.ts +16 -0
- package/dist-types/commands/ListJobTemplatesCommand.d.ts +16 -0
- package/dist-types/commands/ListManagedEndpointsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListVirtualClustersCommand.d.ts +16 -0
- package/dist-types/commands/StartJobRunCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/models/EMRContainersServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +165 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListJobRunsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListJobTemplatesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListManagedEndpointsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListVirtualClustersPaginator.d.ts +3 -0
- package/package.json +29 -29
|
@@ -20,6 +20,7 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/Ta
|
|
|
20
20
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
21
21
|
import { EMRContainersClient } from "./EMRContainersClient";
|
|
22
22
|
/**
|
|
23
|
+
* @public
|
|
23
24
|
* <p>Amazon EMR on EKS provides a deployment option for Amazon EMR that allows
|
|
24
25
|
* you to run open-source big data frameworks on Amazon Elastic Kubernetes Service (Amazon EKS).
|
|
25
26
|
* With this deployment option, you can focus on running analytics workloads while Amazon EMR on EKS builds, configures, and manages containers for open-source applications.
|
|
@@ -47,6 +48,7 @@ import { EMRContainersClient } from "./EMRContainersClient";
|
|
|
47
48
|
*/
|
|
48
49
|
export declare class EMRContainers extends EMRContainersClient {
|
|
49
50
|
/**
|
|
51
|
+
* @public
|
|
50
52
|
* <p>Cancels a job run. A job run is a unit of work, such as a Spark jar, PySpark script, or
|
|
51
53
|
* SparkSQL query, that you submit to Amazon EMR on EKS.</p>
|
|
52
54
|
*/
|
|
@@ -54,6 +56,7 @@ export declare class EMRContainers extends EMRContainersClient {
|
|
|
54
56
|
cancelJobRun(args: CancelJobRunCommandInput, cb: (err: any, data?: CancelJobRunCommandOutput) => void): void;
|
|
55
57
|
cancelJobRun(args: CancelJobRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelJobRunCommandOutput) => void): void;
|
|
56
58
|
/**
|
|
59
|
+
* @public
|
|
57
60
|
* <p>Creates a job template. Job template stores values of StartJobRun API request in a
|
|
58
61
|
* template and can be used to start a job run. Job template allows two use cases: avoid
|
|
59
62
|
* repeating recurring StartJobRun API request values, enforcing certain values in StartJobRun
|
|
@@ -63,6 +66,7 @@ export declare class EMRContainers extends EMRContainersClient {
|
|
|
63
66
|
createJobTemplate(args: CreateJobTemplateCommandInput, cb: (err: any, data?: CreateJobTemplateCommandOutput) => void): void;
|
|
64
67
|
createJobTemplate(args: CreateJobTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateJobTemplateCommandOutput) => void): void;
|
|
65
68
|
/**
|
|
69
|
+
* @public
|
|
66
70
|
* <p>Creates a managed endpoint. A managed endpoint is a gateway that connects Amazon EMR Studio to
|
|
67
71
|
* Amazon EMR on EKS so that Amazon EMR Studio can communicate with your virtual
|
|
68
72
|
* cluster.</p>
|
|
@@ -71,6 +75,7 @@ export declare class EMRContainers extends EMRContainersClient {
|
|
|
71
75
|
createManagedEndpoint(args: CreateManagedEndpointCommandInput, cb: (err: any, data?: CreateManagedEndpointCommandOutput) => void): void;
|
|
72
76
|
createManagedEndpoint(args: CreateManagedEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateManagedEndpointCommandOutput) => void): void;
|
|
73
77
|
/**
|
|
78
|
+
* @public
|
|
74
79
|
* <p>Creates a virtual cluster. Virtual cluster is a managed entity on Amazon EMR on EKS. You can create, describe, list and delete virtual clusters. They do not consume any
|
|
75
80
|
* additional resource in your system. A single virtual cluster maps to a single Kubernetes
|
|
76
81
|
* namespace. Given this relationship, you can model virtual clusters the same way you model
|
|
@@ -80,6 +85,7 @@ export declare class EMRContainers extends EMRContainersClient {
|
|
|
80
85
|
createVirtualCluster(args: CreateVirtualClusterCommandInput, cb: (err: any, data?: CreateVirtualClusterCommandOutput) => void): void;
|
|
81
86
|
createVirtualCluster(args: CreateVirtualClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVirtualClusterCommandOutput) => void): void;
|
|
82
87
|
/**
|
|
88
|
+
* @public
|
|
83
89
|
* <p>Deletes a job template. Job template stores values of StartJobRun API request in a
|
|
84
90
|
* template and can be used to start a job run. Job template allows two use cases: avoid
|
|
85
91
|
* repeating recurring StartJobRun API request values, enforcing certain values in StartJobRun
|
|
@@ -89,6 +95,7 @@ export declare class EMRContainers extends EMRContainersClient {
|
|
|
89
95
|
deleteJobTemplate(args: DeleteJobTemplateCommandInput, cb: (err: any, data?: DeleteJobTemplateCommandOutput) => void): void;
|
|
90
96
|
deleteJobTemplate(args: DeleteJobTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteJobTemplateCommandOutput) => void): void;
|
|
91
97
|
/**
|
|
98
|
+
* @public
|
|
92
99
|
* <p>Deletes a managed endpoint. A managed endpoint is a gateway that connects Amazon EMR Studio to
|
|
93
100
|
* Amazon EMR on EKS so that Amazon EMR Studio can communicate with your virtual
|
|
94
101
|
* cluster.</p>
|
|
@@ -97,6 +104,7 @@ export declare class EMRContainers extends EMRContainersClient {
|
|
|
97
104
|
deleteManagedEndpoint(args: DeleteManagedEndpointCommandInput, cb: (err: any, data?: DeleteManagedEndpointCommandOutput) => void): void;
|
|
98
105
|
deleteManagedEndpoint(args: DeleteManagedEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteManagedEndpointCommandOutput) => void): void;
|
|
99
106
|
/**
|
|
107
|
+
* @public
|
|
100
108
|
* <p>Deletes a virtual cluster. Virtual cluster is a managed entity on Amazon EMR on EKS. You can create, describe, list and delete virtual clusters. They do not consume any
|
|
101
109
|
* additional resource in your system. A single virtual cluster maps to a single Kubernetes
|
|
102
110
|
* namespace. Given this relationship, you can model virtual clusters the same way you model
|
|
@@ -106,6 +114,7 @@ export declare class EMRContainers extends EMRContainersClient {
|
|
|
106
114
|
deleteVirtualCluster(args: DeleteVirtualClusterCommandInput, cb: (err: any, data?: DeleteVirtualClusterCommandOutput) => void): void;
|
|
107
115
|
deleteVirtualCluster(args: DeleteVirtualClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVirtualClusterCommandOutput) => void): void;
|
|
108
116
|
/**
|
|
117
|
+
* @public
|
|
109
118
|
* <p>Displays detailed information about a job run. A job run is a unit of work, such as a
|
|
110
119
|
* Spark jar, PySpark script, or SparkSQL query, that you submit to Amazon EMR on EKS.</p>
|
|
111
120
|
*/
|
|
@@ -113,6 +122,7 @@ export declare class EMRContainers extends EMRContainersClient {
|
|
|
113
122
|
describeJobRun(args: DescribeJobRunCommandInput, cb: (err: any, data?: DescribeJobRunCommandOutput) => void): void;
|
|
114
123
|
describeJobRun(args: DescribeJobRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeJobRunCommandOutput) => void): void;
|
|
115
124
|
/**
|
|
125
|
+
* @public
|
|
116
126
|
* <p>Displays detailed information about a specified job template. Job template stores values
|
|
117
127
|
* of StartJobRun API request in a template and can be used to start a job run. Job template
|
|
118
128
|
* allows two use cases: avoid repeating recurring StartJobRun API request values, enforcing
|
|
@@ -122,6 +132,7 @@ export declare class EMRContainers extends EMRContainersClient {
|
|
|
122
132
|
describeJobTemplate(args: DescribeJobTemplateCommandInput, cb: (err: any, data?: DescribeJobTemplateCommandOutput) => void): void;
|
|
123
133
|
describeJobTemplate(args: DescribeJobTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeJobTemplateCommandOutput) => void): void;
|
|
124
134
|
/**
|
|
135
|
+
* @public
|
|
125
136
|
* <p>Displays detailed information about a managed endpoint. A managed endpoint is a gateway
|
|
126
137
|
* that connects Amazon EMR Studio to Amazon EMR on EKS so that Amazon EMR Studio can communicate with
|
|
127
138
|
* your virtual cluster.</p>
|
|
@@ -130,6 +141,7 @@ export declare class EMRContainers extends EMRContainersClient {
|
|
|
130
141
|
describeManagedEndpoint(args: DescribeManagedEndpointCommandInput, cb: (err: any, data?: DescribeManagedEndpointCommandOutput) => void): void;
|
|
131
142
|
describeManagedEndpoint(args: DescribeManagedEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeManagedEndpointCommandOutput) => void): void;
|
|
132
143
|
/**
|
|
144
|
+
* @public
|
|
133
145
|
* <p>Displays detailed information about a specified virtual cluster. Virtual cluster is a
|
|
134
146
|
* managed entity on Amazon EMR on EKS. You can create, describe, list and delete virtual
|
|
135
147
|
* clusters. They do not consume any additional resource in your system. A single virtual
|
|
@@ -141,6 +153,7 @@ export declare class EMRContainers extends EMRContainersClient {
|
|
|
141
153
|
describeVirtualCluster(args: DescribeVirtualClusterCommandInput, cb: (err: any, data?: DescribeVirtualClusterCommandOutput) => void): void;
|
|
142
154
|
describeVirtualCluster(args: DescribeVirtualClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeVirtualClusterCommandOutput) => void): void;
|
|
143
155
|
/**
|
|
156
|
+
* @public
|
|
144
157
|
* <p>Lists job runs based on a set of parameters. A job run is a unit of work, such as a
|
|
145
158
|
* Spark jar, PySpark script, or SparkSQL query, that you submit to Amazon EMR on EKS.</p>
|
|
146
159
|
*/
|
|
@@ -148,6 +161,7 @@ export declare class EMRContainers extends EMRContainersClient {
|
|
|
148
161
|
listJobRuns(args: ListJobRunsCommandInput, cb: (err: any, data?: ListJobRunsCommandOutput) => void): void;
|
|
149
162
|
listJobRuns(args: ListJobRunsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListJobRunsCommandOutput) => void): void;
|
|
150
163
|
/**
|
|
164
|
+
* @public
|
|
151
165
|
* <p>Lists job templates based on a set of parameters. Job template stores values of
|
|
152
166
|
* StartJobRun API request in a template and can be used to start a job run. Job template
|
|
153
167
|
* allows two use cases: avoid repeating recurring StartJobRun API request values, enforcing
|
|
@@ -157,6 +171,7 @@ export declare class EMRContainers extends EMRContainersClient {
|
|
|
157
171
|
listJobTemplates(args: ListJobTemplatesCommandInput, cb: (err: any, data?: ListJobTemplatesCommandOutput) => void): void;
|
|
158
172
|
listJobTemplates(args: ListJobTemplatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListJobTemplatesCommandOutput) => void): void;
|
|
159
173
|
/**
|
|
174
|
+
* @public
|
|
160
175
|
* <p>Lists managed endpoints based on a set of parameters. A managed endpoint is a gateway
|
|
161
176
|
* that connects Amazon EMR Studio to Amazon EMR on EKS so that Amazon EMR Studio can communicate with
|
|
162
177
|
* your virtual cluster.</p>
|
|
@@ -165,12 +180,14 @@ export declare class EMRContainers extends EMRContainersClient {
|
|
|
165
180
|
listManagedEndpoints(args: ListManagedEndpointsCommandInput, cb: (err: any, data?: ListManagedEndpointsCommandOutput) => void): void;
|
|
166
181
|
listManagedEndpoints(args: ListManagedEndpointsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListManagedEndpointsCommandOutput) => void): void;
|
|
167
182
|
/**
|
|
183
|
+
* @public
|
|
168
184
|
* <p>Lists the tags assigned to the resources.</p>
|
|
169
185
|
*/
|
|
170
186
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
171
187
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
172
188
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
173
189
|
/**
|
|
190
|
+
* @public
|
|
174
191
|
* <p>Lists information about the specified virtual cluster. Virtual cluster is a managed
|
|
175
192
|
* entity on Amazon EMR on EKS. You can create, describe, list and delete virtual
|
|
176
193
|
* clusters. They do not consume any additional resource in your system. A single virtual
|
|
@@ -182,6 +199,7 @@ export declare class EMRContainers extends EMRContainersClient {
|
|
|
182
199
|
listVirtualClusters(args: ListVirtualClustersCommandInput, cb: (err: any, data?: ListVirtualClustersCommandOutput) => void): void;
|
|
183
200
|
listVirtualClusters(args: ListVirtualClustersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListVirtualClustersCommandOutput) => void): void;
|
|
184
201
|
/**
|
|
202
|
+
* @public
|
|
185
203
|
* <p>Starts a job run. A job run is a unit of work, such as a Spark jar, PySpark script, or
|
|
186
204
|
* SparkSQL query, that you submit to Amazon EMR on EKS.</p>
|
|
187
205
|
*/
|
|
@@ -189,6 +207,7 @@ export declare class EMRContainers extends EMRContainersClient {
|
|
|
189
207
|
startJobRun(args: StartJobRunCommandInput, cb: (err: any, data?: StartJobRunCommandOutput) => void): void;
|
|
190
208
|
startJobRun(args: StartJobRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartJobRunCommandOutput) => void): void;
|
|
191
209
|
/**
|
|
210
|
+
* @public
|
|
192
211
|
* <p>Assigns tags to resources. A tag is a label that you assign to an Amazon Web Services resource. Each tag
|
|
193
212
|
* consists of a key and an optional value, both of which you define. Tags enable you to
|
|
194
213
|
* categorize your Amazon Web Services resources by attributes such as purpose, owner, or environment. When
|
|
@@ -202,6 +221,7 @@ export declare class EMRContainers extends EMRContainersClient {
|
|
|
202
221
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
203
222
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
204
223
|
/**
|
|
224
|
+
* @public
|
|
205
225
|
* <p>Removes tags from resources.</p>
|
|
206
226
|
*/
|
|
207
227
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
@@ -27,15 +27,24 @@ import { StartJobRunCommandInput, StartJobRunCommandOutput } from "./commands/St
|
|
|
27
27
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
28
28
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
29
29
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
30
|
+
/**
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
30
33
|
export type ServiceInputTypes = CancelJobRunCommandInput | CreateJobTemplateCommandInput | CreateManagedEndpointCommandInput | CreateVirtualClusterCommandInput | DeleteJobTemplateCommandInput | DeleteManagedEndpointCommandInput | DeleteVirtualClusterCommandInput | DescribeJobRunCommandInput | DescribeJobTemplateCommandInput | DescribeManagedEndpointCommandInput | DescribeVirtualClusterCommandInput | ListJobRunsCommandInput | ListJobTemplatesCommandInput | ListManagedEndpointsCommandInput | ListTagsForResourceCommandInput | ListVirtualClustersCommandInput | StartJobRunCommandInput | TagResourceCommandInput | UntagResourceCommandInput;
|
|
34
|
+
/**
|
|
35
|
+
* @public
|
|
36
|
+
*/
|
|
31
37
|
export type ServiceOutputTypes = CancelJobRunCommandOutput | CreateJobTemplateCommandOutput | CreateManagedEndpointCommandOutput | CreateVirtualClusterCommandOutput | DeleteJobTemplateCommandOutput | DeleteManagedEndpointCommandOutput | DeleteVirtualClusterCommandOutput | DescribeJobRunCommandOutput | DescribeJobTemplateCommandOutput | DescribeManagedEndpointCommandOutput | DescribeVirtualClusterCommandOutput | ListJobRunsCommandOutput | ListJobTemplatesCommandOutput | ListManagedEndpointsCommandOutput | ListTagsForResourceCommandOutput | ListVirtualClustersCommandOutput | StartJobRunCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput;
|
|
38
|
+
/**
|
|
39
|
+
* @public
|
|
40
|
+
*/
|
|
32
41
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
33
42
|
/**
|
|
34
43
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
35
44
|
*/
|
|
36
45
|
requestHandler?: __HttpHandler;
|
|
37
46
|
/**
|
|
38
|
-
* A constructor for a class implementing the {@link
|
|
47
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
39
48
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
40
49
|
* @internal
|
|
41
50
|
*/
|
|
@@ -125,23 +134,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
125
134
|
*/
|
|
126
135
|
logger?: __Logger;
|
|
127
136
|
/**
|
|
128
|
-
* The {@link
|
|
137
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
129
138
|
*/
|
|
130
139
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
131
140
|
}
|
|
141
|
+
/**
|
|
142
|
+
* @public
|
|
143
|
+
*/
|
|
132
144
|
type EMRContainersClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
133
145
|
/**
|
|
134
|
-
*
|
|
146
|
+
* @public
|
|
147
|
+
*
|
|
148
|
+
* The configuration interface of EMRContainersClient class constructor that set the region, credentials and other options.
|
|
135
149
|
*/
|
|
136
150
|
export interface EMRContainersClientConfig extends EMRContainersClientConfigType {
|
|
137
151
|
}
|
|
152
|
+
/**
|
|
153
|
+
* @public
|
|
154
|
+
*/
|
|
138
155
|
type EMRContainersClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
139
156
|
/**
|
|
140
|
-
*
|
|
157
|
+
* @public
|
|
158
|
+
*
|
|
159
|
+
* The resolved configuration interface of EMRContainersClient class. This is resolved and normalized from the {@link EMRContainersClientConfig | constructor configuration interface}.
|
|
141
160
|
*/
|
|
142
161
|
export interface EMRContainersClientResolvedConfig extends EMRContainersClientResolvedConfigType {
|
|
143
162
|
}
|
|
144
163
|
/**
|
|
164
|
+
* @public
|
|
145
165
|
* <p>Amazon EMR on EKS provides a deployment option for Amazon EMR that allows
|
|
146
166
|
* you to run open-source big data frameworks on Amazon Elastic Kubernetes Service (Amazon EKS).
|
|
147
167
|
* With this deployment option, you can focus on running analytics workloads while Amazon EMR on EKS builds, configures, and manages containers for open-source applications.
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient";
|
|
5
5
|
import { CancelJobRunRequest, CancelJobRunResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CancelJobRunCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CancelJobRunCommandInput extends CancelJobRunRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CancelJobRunCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CancelJobRunCommandOutput extends CancelJobRunResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Cancels a job run. A job run is a unit of work, such as a Spark jar, PySpark script, or
|
|
18
23
|
* SparkSQL query, that you submit to Amazon EMR on EKS.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface CancelJobRunCommandOutput extends CancelJobRunResponse, __Metad
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param CancelJobRunCommandInput - {@link CancelJobRunCommandInput}
|
|
35
|
+
* @returns {@link CancelJobRunCommandOutput}
|
|
29
36
|
* @see {@link CancelJobRunCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link CancelJobRunCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link EMRContainersClientResolvedConfig | config} for EMRContainersClient's `config` shape.
|
|
@@ -41,11 +48,20 @@ export interface CancelJobRunCommandOutput extends CancelJobRunResponse, __Metad
|
|
|
41
48
|
export declare class CancelJobRunCommand extends $Command<CancelJobRunCommandInput, CancelJobRunCommandOutput, EMRContainersClientResolvedConfig> {
|
|
42
49
|
readonly input: CancelJobRunCommandInput;
|
|
43
50
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
44
54
|
constructor(input: CancelJobRunCommandInput);
|
|
45
55
|
/**
|
|
46
56
|
* @internal
|
|
47
57
|
*/
|
|
48
58
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRContainersClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CancelJobRunCommandInput, CancelJobRunCommandOutput>;
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
49
62
|
private serialize;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
50
66
|
private deserialize;
|
|
51
67
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient";
|
|
5
5
|
import { CreateJobTemplateRequest, CreateJobTemplateResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateJobTemplateCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateJobTemplateCommandInput extends CreateJobTemplateRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateJobTemplateCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateJobTemplateCommandOutput extends CreateJobTemplateResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a job template. Job template stores values of StartJobRun API request in a
|
|
18
23
|
* template and can be used to start a job run. Job template allows two use cases: avoid
|
|
19
24
|
* repeating recurring StartJobRun API request values, enforcing certain values in StartJobRun
|
|
@@ -28,6 +33,8 @@ export interface CreateJobTemplateCommandOutput extends CreateJobTemplateRespons
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param CreateJobTemplateCommandInput - {@link CreateJobTemplateCommandInput}
|
|
37
|
+
* @returns {@link CreateJobTemplateCommandOutput}
|
|
31
38
|
* @see {@link CreateJobTemplateCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link CreateJobTemplateCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link EMRContainersClientResolvedConfig | config} for EMRContainersClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface CreateJobTemplateCommandOutput extends CreateJobTemplateRespons
|
|
|
46
53
|
export declare class CreateJobTemplateCommand extends $Command<CreateJobTemplateCommandInput, CreateJobTemplateCommandOutput, EMRContainersClientResolvedConfig> {
|
|
47
54
|
readonly input: CreateJobTemplateCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: CreateJobTemplateCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRContainersClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateJobTemplateCommandInput, CreateJobTemplateCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient";
|
|
5
5
|
import { CreateManagedEndpointRequest, CreateManagedEndpointResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateManagedEndpointCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateManagedEndpointCommandInput extends CreateManagedEndpointRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateManagedEndpointCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateManagedEndpointCommandOutput extends CreateManagedEndpointResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a managed endpoint. A managed endpoint is a gateway that connects Amazon EMR Studio to
|
|
18
23
|
* Amazon EMR on EKS so that Amazon EMR Studio can communicate with your virtual
|
|
19
24
|
* cluster.</p>
|
|
@@ -27,6 +32,8 @@ export interface CreateManagedEndpointCommandOutput extends CreateManagedEndpoin
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param CreateManagedEndpointCommandInput - {@link CreateManagedEndpointCommandInput}
|
|
36
|
+
* @returns {@link CreateManagedEndpointCommandOutput}
|
|
30
37
|
* @see {@link CreateManagedEndpointCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link CreateManagedEndpointCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link EMRContainersClientResolvedConfig | config} for EMRContainersClient's `config` shape.
|
|
@@ -45,11 +52,20 @@ export interface CreateManagedEndpointCommandOutput extends CreateManagedEndpoin
|
|
|
45
52
|
export declare class CreateManagedEndpointCommand extends $Command<CreateManagedEndpointCommandInput, CreateManagedEndpointCommandOutput, EMRContainersClientResolvedConfig> {
|
|
46
53
|
readonly input: CreateManagedEndpointCommandInput;
|
|
47
54
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
55
|
+
/**
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
48
58
|
constructor(input: CreateManagedEndpointCommandInput);
|
|
49
59
|
/**
|
|
50
60
|
* @internal
|
|
51
61
|
*/
|
|
52
62
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRContainersClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateManagedEndpointCommandInput, CreateManagedEndpointCommandOutput>;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
53
66
|
private serialize;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
54
70
|
private deserialize;
|
|
55
71
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient";
|
|
5
5
|
import { CreateVirtualClusterRequest, CreateVirtualClusterResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateVirtualClusterCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateVirtualClusterCommandInput extends CreateVirtualClusterRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateVirtualClusterCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateVirtualClusterCommandOutput extends CreateVirtualClusterResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a virtual cluster. Virtual cluster is a managed entity on Amazon EMR on EKS. You can create, describe, list and delete virtual clusters. They do not consume any
|
|
18
23
|
* additional resource in your system. A single virtual cluster maps to a single Kubernetes
|
|
19
24
|
* namespace. Given this relationship, you can model virtual clusters the same way you model
|
|
@@ -28,6 +33,8 @@ export interface CreateVirtualClusterCommandOutput extends CreateVirtualClusterR
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param CreateVirtualClusterCommandInput - {@link CreateVirtualClusterCommandInput}
|
|
37
|
+
* @returns {@link CreateVirtualClusterCommandOutput}
|
|
31
38
|
* @see {@link CreateVirtualClusterCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link CreateVirtualClusterCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link EMRContainersClientResolvedConfig | config} for EMRContainersClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface CreateVirtualClusterCommandOutput extends CreateVirtualClusterR
|
|
|
46
53
|
export declare class CreateVirtualClusterCommand extends $Command<CreateVirtualClusterCommandInput, CreateVirtualClusterCommandOutput, EMRContainersClientResolvedConfig> {
|
|
47
54
|
readonly input: CreateVirtualClusterCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: CreateVirtualClusterCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRContainersClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateVirtualClusterCommandInput, CreateVirtualClusterCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient";
|
|
5
5
|
import { DeleteJobTemplateRequest, DeleteJobTemplateResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteJobTemplateCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteJobTemplateCommandInput extends DeleteJobTemplateRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteJobTemplateCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteJobTemplateCommandOutput extends DeleteJobTemplateResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a job template. Job template stores values of StartJobRun API request in a
|
|
18
23
|
* template and can be used to start a job run. Job template allows two use cases: avoid
|
|
19
24
|
* repeating recurring StartJobRun API request values, enforcing certain values in StartJobRun
|
|
@@ -28,6 +33,8 @@ export interface DeleteJobTemplateCommandOutput extends DeleteJobTemplateRespons
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param DeleteJobTemplateCommandInput - {@link DeleteJobTemplateCommandInput}
|
|
37
|
+
* @returns {@link DeleteJobTemplateCommandOutput}
|
|
31
38
|
* @see {@link DeleteJobTemplateCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link DeleteJobTemplateCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link EMRContainersClientResolvedConfig | config} for EMRContainersClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface DeleteJobTemplateCommandOutput extends DeleteJobTemplateRespons
|
|
|
43
50
|
export declare class DeleteJobTemplateCommand extends $Command<DeleteJobTemplateCommandInput, DeleteJobTemplateCommandOutput, EMRContainersClientResolvedConfig> {
|
|
44
51
|
readonly input: DeleteJobTemplateCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: DeleteJobTemplateCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRContainersClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteJobTemplateCommandInput, DeleteJobTemplateCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient";
|
|
5
5
|
import { DeleteManagedEndpointRequest, DeleteManagedEndpointResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteManagedEndpointCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteManagedEndpointCommandInput extends DeleteManagedEndpointRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteManagedEndpointCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteManagedEndpointCommandOutput extends DeleteManagedEndpointResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a managed endpoint. A managed endpoint is a gateway that connects Amazon EMR Studio to
|
|
18
23
|
* Amazon EMR on EKS so that Amazon EMR Studio can communicate with your virtual
|
|
19
24
|
* cluster.</p>
|
|
@@ -27,6 +32,8 @@ export interface DeleteManagedEndpointCommandOutput extends DeleteManagedEndpoin
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DeleteManagedEndpointCommandInput - {@link DeleteManagedEndpointCommandInput}
|
|
36
|
+
* @returns {@link DeleteManagedEndpointCommandOutput}
|
|
30
37
|
* @see {@link DeleteManagedEndpointCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DeleteManagedEndpointCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link EMRContainersClientResolvedConfig | config} for EMRContainersClient's `config` shape.
|
|
@@ -42,11 +49,20 @@ export interface DeleteManagedEndpointCommandOutput extends DeleteManagedEndpoin
|
|
|
42
49
|
export declare class DeleteManagedEndpointCommand extends $Command<DeleteManagedEndpointCommandInput, DeleteManagedEndpointCommandOutput, EMRContainersClientResolvedConfig> {
|
|
43
50
|
readonly input: DeleteManagedEndpointCommandInput;
|
|
44
51
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
52
|
+
/**
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
45
55
|
constructor(input: DeleteManagedEndpointCommandInput);
|
|
46
56
|
/**
|
|
47
57
|
* @internal
|
|
48
58
|
*/
|
|
49
59
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRContainersClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteManagedEndpointCommandInput, DeleteManagedEndpointCommandOutput>;
|
|
60
|
+
/**
|
|
61
|
+
* @internal
|
|
62
|
+
*/
|
|
50
63
|
private serialize;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
51
67
|
private deserialize;
|
|
52
68
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient";
|
|
5
5
|
import { DeleteVirtualClusterRequest, DeleteVirtualClusterResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteVirtualClusterCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteVirtualClusterCommandInput extends DeleteVirtualClusterRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteVirtualClusterCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteVirtualClusterCommandOutput extends DeleteVirtualClusterResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a virtual cluster. Virtual cluster is a managed entity on Amazon EMR on EKS. You can create, describe, list and delete virtual clusters. They do not consume any
|
|
18
23
|
* additional resource in your system. A single virtual cluster maps to a single Kubernetes
|
|
19
24
|
* namespace. Given this relationship, you can model virtual clusters the same way you model
|
|
@@ -28,6 +33,8 @@ export interface DeleteVirtualClusterCommandOutput extends DeleteVirtualClusterR
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param DeleteVirtualClusterCommandInput - {@link DeleteVirtualClusterCommandInput}
|
|
37
|
+
* @returns {@link DeleteVirtualClusterCommandOutput}
|
|
31
38
|
* @see {@link DeleteVirtualClusterCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link DeleteVirtualClusterCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link EMRContainersClientResolvedConfig | config} for EMRContainersClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface DeleteVirtualClusterCommandOutput extends DeleteVirtualClusterR
|
|
|
43
50
|
export declare class DeleteVirtualClusterCommand extends $Command<DeleteVirtualClusterCommandInput, DeleteVirtualClusterCommandOutput, EMRContainersClientResolvedConfig> {
|
|
44
51
|
readonly input: DeleteVirtualClusterCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: DeleteVirtualClusterCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRContainersClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteVirtualClusterCommandInput, DeleteVirtualClusterCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient";
|
|
5
5
|
import { DescribeJobRunRequest, DescribeJobRunResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeJobRunCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeJobRunCommandInput extends DescribeJobRunRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeJobRunCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeJobRunCommandOutput extends DescribeJobRunResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Displays detailed information about a job run. A job run is a unit of work, such as a
|
|
18
23
|
* Spark jar, PySpark script, or SparkSQL query, that you submit to Amazon EMR on EKS.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DescribeJobRunCommandOutput extends DescribeJobRunResponse, __M
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DescribeJobRunCommandInput - {@link DescribeJobRunCommandInput}
|
|
35
|
+
* @returns {@link DescribeJobRunCommandOutput}
|
|
29
36
|
* @see {@link DescribeJobRunCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DescribeJobRunCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link EMRContainersClientResolvedConfig | config} for EMRContainersClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface DescribeJobRunCommandOutput extends DescribeJobRunResponse, __M
|
|
|
44
51
|
export declare class DescribeJobRunCommand extends $Command<DescribeJobRunCommandInput, DescribeJobRunCommandOutput, EMRContainersClientResolvedConfig> {
|
|
45
52
|
readonly input: DescribeJobRunCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: DescribeJobRunCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRContainersClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeJobRunCommandInput, DescribeJobRunCommandOutput>;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
52
65
|
private serialize;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
53
69
|
private deserialize;
|
|
54
70
|
}
|