@aws-sdk/client-emr-containers 3.686.0 → 3.691.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/models/models_0.d.ts +200 -200
- package/dist-types/ts3.4/models/models_0.d.ts +210 -200
- package/package.json +7 -7
|
@@ -6,36 +6,38 @@ export declare const CertificateProviderType: {
|
|
|
6
6
|
export type CertificateProviderType =
|
|
7
7
|
(typeof CertificateProviderType)[keyof typeof CertificateProviderType];
|
|
8
8
|
export interface TLSCertificateConfiguration {
|
|
9
|
-
certificateProviderType?: CertificateProviderType;
|
|
10
|
-
publicCertificateSecretArn?: string;
|
|
11
|
-
privateCertificateSecretArn?: string;
|
|
9
|
+
certificateProviderType?: CertificateProviderType | undefined;
|
|
10
|
+
publicCertificateSecretArn?: string | undefined;
|
|
11
|
+
privateCertificateSecretArn?: string | undefined;
|
|
12
12
|
}
|
|
13
13
|
export interface InTransitEncryptionConfiguration {
|
|
14
|
-
tlsCertificateConfiguration?: TLSCertificateConfiguration;
|
|
14
|
+
tlsCertificateConfiguration?: TLSCertificateConfiguration | undefined;
|
|
15
15
|
}
|
|
16
16
|
export interface EncryptionConfiguration {
|
|
17
|
-
inTransitEncryptionConfiguration?:
|
|
17
|
+
inTransitEncryptionConfiguration?:
|
|
18
|
+
| InTransitEncryptionConfiguration
|
|
19
|
+
| undefined;
|
|
18
20
|
}
|
|
19
21
|
export interface SecureNamespaceInfo {
|
|
20
|
-
clusterId?: string;
|
|
21
|
-
namespace?: string;
|
|
22
|
+
clusterId?: string | undefined;
|
|
23
|
+
namespace?: string | undefined;
|
|
22
24
|
}
|
|
23
25
|
export interface LakeFormationConfiguration {
|
|
24
|
-
authorizedSessionTagValue?: string;
|
|
25
|
-
secureNamespaceInfo?: SecureNamespaceInfo;
|
|
26
|
-
queryEngineRoleArn?: string;
|
|
26
|
+
authorizedSessionTagValue?: string | undefined;
|
|
27
|
+
secureNamespaceInfo?: SecureNamespaceInfo | undefined;
|
|
28
|
+
queryEngineRoleArn?: string | undefined;
|
|
27
29
|
}
|
|
28
30
|
export interface AuthorizationConfiguration {
|
|
29
|
-
lakeFormationConfiguration?: LakeFormationConfiguration;
|
|
30
|
-
encryptionConfiguration?: EncryptionConfiguration;
|
|
31
|
+
lakeFormationConfiguration?: LakeFormationConfiguration | undefined;
|
|
32
|
+
encryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
31
33
|
}
|
|
32
34
|
export interface CancelJobRunRequest {
|
|
33
35
|
id: string | undefined;
|
|
34
36
|
virtualClusterId: string | undefined;
|
|
35
37
|
}
|
|
36
38
|
export interface CancelJobRunResponse {
|
|
37
|
-
id?: string;
|
|
38
|
-
virtualClusterId?: string;
|
|
39
|
+
id?: string | undefined;
|
|
40
|
+
virtualClusterId?: string | undefined;
|
|
39
41
|
}
|
|
40
42
|
export declare class InternalServerException extends __BaseException {
|
|
41
43
|
readonly name: "InternalServerException";
|
|
@@ -52,29 +54,31 @@ export declare class ValidationException extends __BaseException {
|
|
|
52
54
|
);
|
|
53
55
|
}
|
|
54
56
|
export interface ParametricCloudWatchMonitoringConfiguration {
|
|
55
|
-
logGroupName?: string;
|
|
56
|
-
logStreamNamePrefix?: string;
|
|
57
|
+
logGroupName?: string | undefined;
|
|
58
|
+
logStreamNamePrefix?: string | undefined;
|
|
57
59
|
}
|
|
58
60
|
export interface ParametricS3MonitoringConfiguration {
|
|
59
|
-
logUri?: string;
|
|
61
|
+
logUri?: string | undefined;
|
|
60
62
|
}
|
|
61
63
|
export interface ParametricMonitoringConfiguration {
|
|
62
|
-
persistentAppUI?: string;
|
|
63
|
-
cloudWatchMonitoringConfiguration?:
|
|
64
|
-
|
|
64
|
+
persistentAppUI?: string | undefined;
|
|
65
|
+
cloudWatchMonitoringConfiguration?:
|
|
66
|
+
| ParametricCloudWatchMonitoringConfiguration
|
|
67
|
+
| undefined;
|
|
68
|
+
s3MonitoringConfiguration?: ParametricS3MonitoringConfiguration | undefined;
|
|
65
69
|
}
|
|
66
70
|
export interface SparkSqlJobDriver {
|
|
67
|
-
entryPoint?: string;
|
|
68
|
-
sparkSqlParameters?: string;
|
|
71
|
+
entryPoint?: string | undefined;
|
|
72
|
+
sparkSqlParameters?: string | undefined;
|
|
69
73
|
}
|
|
70
74
|
export interface SparkSubmitJobDriver {
|
|
71
75
|
entryPoint: string | undefined;
|
|
72
|
-
entryPointArguments?: string[];
|
|
73
|
-
sparkSubmitParameters?: string;
|
|
76
|
+
entryPointArguments?: string[] | undefined;
|
|
77
|
+
sparkSubmitParameters?: string | undefined;
|
|
74
78
|
}
|
|
75
79
|
export interface JobDriver {
|
|
76
|
-
sparkSubmitJobDriver?: SparkSubmitJobDriver;
|
|
77
|
-
sparkSqlJobDriver?: SparkSqlJobDriver;
|
|
80
|
+
sparkSubmitJobDriver?: SparkSubmitJobDriver | undefined;
|
|
81
|
+
sparkSqlJobDriver?: SparkSqlJobDriver | undefined;
|
|
78
82
|
}
|
|
79
83
|
export declare const TemplateParameterDataType: {
|
|
80
84
|
readonly NUMBER: "NUMBER";
|
|
@@ -83,14 +87,14 @@ export declare const TemplateParameterDataType: {
|
|
|
83
87
|
export type TemplateParameterDataType =
|
|
84
88
|
(typeof TemplateParameterDataType)[keyof typeof TemplateParameterDataType];
|
|
85
89
|
export interface TemplateParameterConfiguration {
|
|
86
|
-
type?: TemplateParameterDataType;
|
|
87
|
-
defaultValue?: string;
|
|
90
|
+
type?: TemplateParameterDataType | undefined;
|
|
91
|
+
defaultValue?: string | undefined;
|
|
88
92
|
}
|
|
89
93
|
export interface CreateJobTemplateResponse {
|
|
90
|
-
id?: string;
|
|
91
|
-
name?: string;
|
|
92
|
-
arn?: string;
|
|
93
|
-
createdAt?: Date;
|
|
94
|
+
id?: string | undefined;
|
|
95
|
+
name?: string | undefined;
|
|
96
|
+
arn?: string | undefined;
|
|
97
|
+
createdAt?: Date | undefined;
|
|
94
98
|
}
|
|
95
99
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
96
100
|
readonly name: "ResourceNotFoundException";
|
|
@@ -101,7 +105,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
101
105
|
}
|
|
102
106
|
export interface CloudWatchMonitoringConfiguration {
|
|
103
107
|
logGroupName: string | undefined;
|
|
104
|
-
logStreamNamePrefix?: string;
|
|
108
|
+
logStreamNamePrefix?: string | undefined;
|
|
105
109
|
}
|
|
106
110
|
export interface ContainerLogRotationConfiguration {
|
|
107
111
|
rotationSize: string | undefined;
|
|
@@ -117,33 +121,37 @@ export interface S3MonitoringConfiguration {
|
|
|
117
121
|
logUri: string | undefined;
|
|
118
122
|
}
|
|
119
123
|
export interface MonitoringConfiguration {
|
|
120
|
-
persistentAppUI?: PersistentAppUI;
|
|
121
|
-
cloudWatchMonitoringConfiguration?:
|
|
122
|
-
|
|
123
|
-
|
|
124
|
+
persistentAppUI?: PersistentAppUI | undefined;
|
|
125
|
+
cloudWatchMonitoringConfiguration?:
|
|
126
|
+
| CloudWatchMonitoringConfiguration
|
|
127
|
+
| undefined;
|
|
128
|
+
s3MonitoringConfiguration?: S3MonitoringConfiguration | undefined;
|
|
129
|
+
containerLogRotationConfiguration?:
|
|
130
|
+
| ContainerLogRotationConfiguration
|
|
131
|
+
| undefined;
|
|
124
132
|
}
|
|
125
133
|
export interface CreateManagedEndpointResponse {
|
|
126
|
-
id?: string;
|
|
127
|
-
name?: string;
|
|
128
|
-
arn?: string;
|
|
129
|
-
virtualClusterId?: string;
|
|
134
|
+
id?: string | undefined;
|
|
135
|
+
name?: string | undefined;
|
|
136
|
+
arn?: string | undefined;
|
|
137
|
+
virtualClusterId?: string | undefined;
|
|
130
138
|
}
|
|
131
139
|
export interface SecurityConfigurationData {
|
|
132
|
-
authorizationConfiguration?: AuthorizationConfiguration;
|
|
140
|
+
authorizationConfiguration?: AuthorizationConfiguration | undefined;
|
|
133
141
|
}
|
|
134
142
|
export interface CreateSecurityConfigurationRequest {
|
|
135
|
-
clientToken?: string;
|
|
143
|
+
clientToken?: string | undefined;
|
|
136
144
|
name: string | undefined;
|
|
137
145
|
securityConfigurationData: SecurityConfigurationData | undefined;
|
|
138
|
-
tags?: Record<string, string
|
|
146
|
+
tags?: Record<string, string> | undefined;
|
|
139
147
|
}
|
|
140
148
|
export interface CreateSecurityConfigurationResponse {
|
|
141
|
-
id?: string;
|
|
142
|
-
name?: string;
|
|
143
|
-
arn?: string;
|
|
149
|
+
id?: string | undefined;
|
|
150
|
+
name?: string | undefined;
|
|
151
|
+
arn?: string | undefined;
|
|
144
152
|
}
|
|
145
153
|
export interface EksInfo {
|
|
146
|
-
namespace?: string;
|
|
154
|
+
namespace?: string | undefined;
|
|
147
155
|
}
|
|
148
156
|
export type ContainerInfo =
|
|
149
157
|
| ContainerInfo.EksInfoMember
|
|
@@ -171,19 +179,19 @@ export type ContainerProviderType =
|
|
|
171
179
|
export interface ContainerProvider {
|
|
172
180
|
type: ContainerProviderType | undefined;
|
|
173
181
|
id: string | undefined;
|
|
174
|
-
info?: ContainerInfo;
|
|
182
|
+
info?: ContainerInfo | undefined;
|
|
175
183
|
}
|
|
176
184
|
export interface CreateVirtualClusterRequest {
|
|
177
185
|
name: string | undefined;
|
|
178
186
|
containerProvider: ContainerProvider | undefined;
|
|
179
|
-
clientToken?: string;
|
|
180
|
-
tags?: Record<string, string
|
|
181
|
-
securityConfigurationId?: string;
|
|
187
|
+
clientToken?: string | undefined;
|
|
188
|
+
tags?: Record<string, string> | undefined;
|
|
189
|
+
securityConfigurationId?: string | undefined;
|
|
182
190
|
}
|
|
183
191
|
export interface CreateVirtualClusterResponse {
|
|
184
|
-
id?: string;
|
|
185
|
-
name?: string;
|
|
186
|
-
arn?: string;
|
|
192
|
+
id?: string | undefined;
|
|
193
|
+
name?: string | undefined;
|
|
194
|
+
arn?: string | undefined;
|
|
187
195
|
}
|
|
188
196
|
export declare class EKSRequestThrottledException extends __BaseException {
|
|
189
197
|
readonly name: "EKSRequestThrottledException";
|
|
@@ -196,21 +204,21 @@ export interface DeleteJobTemplateRequest {
|
|
|
196
204
|
id: string | undefined;
|
|
197
205
|
}
|
|
198
206
|
export interface DeleteJobTemplateResponse {
|
|
199
|
-
id?: string;
|
|
207
|
+
id?: string | undefined;
|
|
200
208
|
}
|
|
201
209
|
export interface DeleteManagedEndpointRequest {
|
|
202
210
|
id: string | undefined;
|
|
203
211
|
virtualClusterId: string | undefined;
|
|
204
212
|
}
|
|
205
213
|
export interface DeleteManagedEndpointResponse {
|
|
206
|
-
id?: string;
|
|
207
|
-
virtualClusterId?: string;
|
|
214
|
+
id?: string | undefined;
|
|
215
|
+
virtualClusterId?: string | undefined;
|
|
208
216
|
}
|
|
209
217
|
export interface DeleteVirtualClusterRequest {
|
|
210
218
|
id: string | undefined;
|
|
211
219
|
}
|
|
212
220
|
export interface DeleteVirtualClusterResponse {
|
|
213
|
-
id?: string;
|
|
221
|
+
id?: string | undefined;
|
|
214
222
|
}
|
|
215
223
|
export interface DescribeJobRunRequest {
|
|
216
224
|
id: string | undefined;
|
|
@@ -247,8 +255,8 @@ export interface DescribeManagedEndpointRequest {
|
|
|
247
255
|
virtualClusterId: string | undefined;
|
|
248
256
|
}
|
|
249
257
|
export interface Certificate {
|
|
250
|
-
certificateArn?: string;
|
|
251
|
-
certificateData?: string;
|
|
258
|
+
certificateArn?: string | undefined;
|
|
259
|
+
certificateData?: string | undefined;
|
|
252
260
|
}
|
|
253
261
|
export declare const EndpointState: {
|
|
254
262
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -262,16 +270,16 @@ export interface DescribeSecurityConfigurationRequest {
|
|
|
262
270
|
id: string | undefined;
|
|
263
271
|
}
|
|
264
272
|
export interface SecurityConfiguration {
|
|
265
|
-
id?: string;
|
|
266
|
-
name?: string;
|
|
267
|
-
arn?: string;
|
|
268
|
-
createdAt?: Date;
|
|
269
|
-
createdBy?: string;
|
|
270
|
-
securityConfigurationData?: SecurityConfigurationData;
|
|
271
|
-
tags?: Record<string, string
|
|
273
|
+
id?: string | undefined;
|
|
274
|
+
name?: string | undefined;
|
|
275
|
+
arn?: string | undefined;
|
|
276
|
+
createdAt?: Date | undefined;
|
|
277
|
+
createdBy?: string | undefined;
|
|
278
|
+
securityConfigurationData?: SecurityConfigurationData | undefined;
|
|
279
|
+
tags?: Record<string, string> | undefined;
|
|
272
280
|
}
|
|
273
281
|
export interface DescribeSecurityConfigurationResponse {
|
|
274
|
-
securityConfiguration?: SecurityConfiguration;
|
|
282
|
+
securityConfiguration?: SecurityConfiguration | undefined;
|
|
275
283
|
}
|
|
276
284
|
export interface DescribeVirtualClusterRequest {
|
|
277
285
|
id: string | undefined;
|
|
@@ -285,26 +293,26 @@ export declare const VirtualClusterState: {
|
|
|
285
293
|
export type VirtualClusterState =
|
|
286
294
|
(typeof VirtualClusterState)[keyof typeof VirtualClusterState];
|
|
287
295
|
export interface VirtualCluster {
|
|
288
|
-
id?: string;
|
|
289
|
-
name?: string;
|
|
290
|
-
arn?: string;
|
|
291
|
-
state?: VirtualClusterState;
|
|
292
|
-
containerProvider?: ContainerProvider;
|
|
293
|
-
createdAt?: Date;
|
|
294
|
-
tags?: Record<string, string
|
|
295
|
-
securityConfigurationId?: string;
|
|
296
|
+
id?: string | undefined;
|
|
297
|
+
name?: string | undefined;
|
|
298
|
+
arn?: string | undefined;
|
|
299
|
+
state?: VirtualClusterState | undefined;
|
|
300
|
+
containerProvider?: ContainerProvider | undefined;
|
|
301
|
+
createdAt?: Date | undefined;
|
|
302
|
+
tags?: Record<string, string> | undefined;
|
|
303
|
+
securityConfigurationId?: string | undefined;
|
|
296
304
|
}
|
|
297
305
|
export interface DescribeVirtualClusterResponse {
|
|
298
|
-
virtualCluster?: VirtualCluster;
|
|
306
|
+
virtualCluster?: VirtualCluster | undefined;
|
|
299
307
|
}
|
|
300
308
|
export interface GetManagedEndpointSessionCredentialsRequest {
|
|
301
309
|
endpointIdentifier: string | undefined;
|
|
302
310
|
virtualClusterIdentifier: string | undefined;
|
|
303
311
|
executionRoleArn: string | undefined;
|
|
304
312
|
credentialType: string | undefined;
|
|
305
|
-
durationInSeconds?: number;
|
|
306
|
-
logContext?: string;
|
|
307
|
-
clientToken?: string;
|
|
313
|
+
durationInSeconds?: number | undefined;
|
|
314
|
+
logContext?: string | undefined;
|
|
315
|
+
clientToken?: string | undefined;
|
|
308
316
|
}
|
|
309
317
|
export type Credentials = Credentials.TokenMember | Credentials.$UnknownMember;
|
|
310
318
|
export declare namespace Credentials {
|
|
@@ -323,9 +331,9 @@ export declare namespace Credentials {
|
|
|
323
331
|
const visit: <T>(value: Credentials, visitor: Visitor<T>) => T;
|
|
324
332
|
}
|
|
325
333
|
export interface GetManagedEndpointSessionCredentialsResponse {
|
|
326
|
-
id?: string;
|
|
327
|
-
credentials?: Credentials;
|
|
328
|
-
expiresAt?: Date;
|
|
334
|
+
id?: string | undefined;
|
|
335
|
+
credentials?: Credentials | undefined;
|
|
336
|
+
expiresAt?: Date | undefined;
|
|
329
337
|
}
|
|
330
338
|
export declare class RequestThrottledException extends __BaseException {
|
|
331
339
|
readonly name: "RequestThrottledException";
|
|
@@ -336,63 +344,63 @@ export declare class RequestThrottledException extends __BaseException {
|
|
|
336
344
|
}
|
|
337
345
|
export interface ListJobRunsRequest {
|
|
338
346
|
virtualClusterId: string | undefined;
|
|
339
|
-
createdBefore?: Date;
|
|
340
|
-
createdAfter?: Date;
|
|
341
|
-
name?: string;
|
|
342
|
-
states?: JobRunState[];
|
|
343
|
-
maxResults?: number;
|
|
344
|
-
nextToken?: string;
|
|
347
|
+
createdBefore?: Date | undefined;
|
|
348
|
+
createdAfter?: Date | undefined;
|
|
349
|
+
name?: string | undefined;
|
|
350
|
+
states?: JobRunState[] | undefined;
|
|
351
|
+
maxResults?: number | undefined;
|
|
352
|
+
nextToken?: string | undefined;
|
|
345
353
|
}
|
|
346
354
|
export interface ListJobTemplatesRequest {
|
|
347
|
-
createdAfter?: Date;
|
|
348
|
-
createdBefore?: Date;
|
|
349
|
-
maxResults?: number;
|
|
350
|
-
nextToken?: string;
|
|
355
|
+
createdAfter?: Date | undefined;
|
|
356
|
+
createdBefore?: Date | undefined;
|
|
357
|
+
maxResults?: number | undefined;
|
|
358
|
+
nextToken?: string | undefined;
|
|
351
359
|
}
|
|
352
360
|
export interface ListManagedEndpointsRequest {
|
|
353
361
|
virtualClusterId: string | undefined;
|
|
354
|
-
createdBefore?: Date;
|
|
355
|
-
createdAfter?: Date;
|
|
356
|
-
types?: string[];
|
|
357
|
-
states?: EndpointState[];
|
|
358
|
-
maxResults?: number;
|
|
359
|
-
nextToken?: string;
|
|
362
|
+
createdBefore?: Date | undefined;
|
|
363
|
+
createdAfter?: Date | undefined;
|
|
364
|
+
types?: string[] | undefined;
|
|
365
|
+
states?: EndpointState[] | undefined;
|
|
366
|
+
maxResults?: number | undefined;
|
|
367
|
+
nextToken?: string | undefined;
|
|
360
368
|
}
|
|
361
369
|
export interface ListSecurityConfigurationsRequest {
|
|
362
|
-
createdAfter?: Date;
|
|
363
|
-
createdBefore?: Date;
|
|
364
|
-
maxResults?: number;
|
|
365
|
-
nextToken?: string;
|
|
370
|
+
createdAfter?: Date | undefined;
|
|
371
|
+
createdBefore?: Date | undefined;
|
|
372
|
+
maxResults?: number | undefined;
|
|
373
|
+
nextToken?: string | undefined;
|
|
366
374
|
}
|
|
367
375
|
export interface ListSecurityConfigurationsResponse {
|
|
368
|
-
securityConfigurations?: SecurityConfiguration[];
|
|
369
|
-
nextToken?: string;
|
|
376
|
+
securityConfigurations?: SecurityConfiguration[] | undefined;
|
|
377
|
+
nextToken?: string | undefined;
|
|
370
378
|
}
|
|
371
379
|
export interface ListTagsForResourceRequest {
|
|
372
380
|
resourceArn: string | undefined;
|
|
373
381
|
}
|
|
374
382
|
export interface ListTagsForResourceResponse {
|
|
375
|
-
tags?: Record<string, string
|
|
383
|
+
tags?: Record<string, string> | undefined;
|
|
376
384
|
}
|
|
377
385
|
export interface ListVirtualClustersRequest {
|
|
378
|
-
containerProviderId?: string;
|
|
379
|
-
containerProviderType?: ContainerProviderType;
|
|
380
|
-
createdAfter?: Date;
|
|
381
|
-
createdBefore?: Date;
|
|
382
|
-
states?: VirtualClusterState[];
|
|
383
|
-
maxResults?: number;
|
|
384
|
-
nextToken?: string;
|
|
385
|
-
eksAccessEntryIntegrated?: boolean;
|
|
386
|
+
containerProviderId?: string | undefined;
|
|
387
|
+
containerProviderType?: ContainerProviderType | undefined;
|
|
388
|
+
createdAfter?: Date | undefined;
|
|
389
|
+
createdBefore?: Date | undefined;
|
|
390
|
+
states?: VirtualClusterState[] | undefined;
|
|
391
|
+
maxResults?: number | undefined;
|
|
392
|
+
nextToken?: string | undefined;
|
|
393
|
+
eksAccessEntryIntegrated?: boolean | undefined;
|
|
386
394
|
}
|
|
387
395
|
export interface ListVirtualClustersResponse {
|
|
388
|
-
virtualClusters?: VirtualCluster[];
|
|
389
|
-
nextToken?: string;
|
|
396
|
+
virtualClusters?: VirtualCluster[] | undefined;
|
|
397
|
+
nextToken?: string | undefined;
|
|
390
398
|
}
|
|
391
399
|
export interface StartJobRunResponse {
|
|
392
|
-
id?: string;
|
|
393
|
-
name?: string;
|
|
394
|
-
arn?: string;
|
|
395
|
-
virtualClusterId?: string;
|
|
400
|
+
id?: string | undefined;
|
|
401
|
+
name?: string | undefined;
|
|
402
|
+
arn?: string | undefined;
|
|
403
|
+
virtualClusterId?: string | undefined;
|
|
396
404
|
}
|
|
397
405
|
export interface TagResourceRequest {
|
|
398
406
|
resourceArn: string | undefined;
|
|
@@ -406,16 +414,16 @@ export interface UntagResourceRequest {
|
|
|
406
414
|
export interface UntagResourceResponse {}
|
|
407
415
|
export interface Configuration {
|
|
408
416
|
classification: string | undefined;
|
|
409
|
-
properties?: Record<string, string
|
|
410
|
-
configurations?: Configuration[];
|
|
417
|
+
properties?: Record<string, string> | undefined;
|
|
418
|
+
configurations?: Configuration[] | undefined;
|
|
411
419
|
}
|
|
412
420
|
export interface ConfigurationOverrides {
|
|
413
|
-
applicationConfiguration?: Configuration[];
|
|
414
|
-
monitoringConfiguration?: MonitoringConfiguration;
|
|
421
|
+
applicationConfiguration?: Configuration[] | undefined;
|
|
422
|
+
monitoringConfiguration?: MonitoringConfiguration | undefined;
|
|
415
423
|
}
|
|
416
424
|
export interface ParametricConfigurationOverrides {
|
|
417
|
-
applicationConfiguration?: Configuration[];
|
|
418
|
-
monitoringConfiguration?: ParametricMonitoringConfiguration;
|
|
425
|
+
applicationConfiguration?: Configuration[] | undefined;
|
|
426
|
+
monitoringConfiguration?: ParametricMonitoringConfiguration | undefined;
|
|
419
427
|
}
|
|
420
428
|
export interface CreateManagedEndpointRequest {
|
|
421
429
|
name: string | undefined;
|
|
@@ -423,110 +431,112 @@ export interface CreateManagedEndpointRequest {
|
|
|
423
431
|
type: string | undefined;
|
|
424
432
|
releaseLabel: string | undefined;
|
|
425
433
|
executionRoleArn: string | undefined;
|
|
426
|
-
certificateArn?: string;
|
|
427
|
-
configurationOverrides?: ConfigurationOverrides;
|
|
428
|
-
clientToken?: string;
|
|
429
|
-
tags?: Record<string, string
|
|
434
|
+
certificateArn?: string | undefined;
|
|
435
|
+
configurationOverrides?: ConfigurationOverrides | undefined;
|
|
436
|
+
clientToken?: string | undefined;
|
|
437
|
+
tags?: Record<string, string> | undefined;
|
|
430
438
|
}
|
|
431
439
|
export interface Endpoint {
|
|
432
|
-
id?: string;
|
|
433
|
-
name?: string;
|
|
434
|
-
arn?: string;
|
|
435
|
-
virtualClusterId?: string;
|
|
436
|
-
type?: string;
|
|
437
|
-
state?: EndpointState;
|
|
438
|
-
releaseLabel?: string;
|
|
439
|
-
executionRoleArn?: string;
|
|
440
|
-
certificateArn?: string;
|
|
441
|
-
certificateAuthority?: Certificate;
|
|
442
|
-
configurationOverrides?: ConfigurationOverrides;
|
|
443
|
-
serverUrl?: string;
|
|
444
|
-
createdAt?: Date;
|
|
445
|
-
securityGroup?: string;
|
|
446
|
-
subnetIds?: string[];
|
|
447
|
-
stateDetails?: string;
|
|
448
|
-
failureReason?: FailureReason;
|
|
449
|
-
tags?: Record<string, string
|
|
440
|
+
id?: string | undefined;
|
|
441
|
+
name?: string | undefined;
|
|
442
|
+
arn?: string | undefined;
|
|
443
|
+
virtualClusterId?: string | undefined;
|
|
444
|
+
type?: string | undefined;
|
|
445
|
+
state?: EndpointState | undefined;
|
|
446
|
+
releaseLabel?: string | undefined;
|
|
447
|
+
executionRoleArn?: string | undefined;
|
|
448
|
+
certificateArn?: string | undefined;
|
|
449
|
+
certificateAuthority?: Certificate | undefined;
|
|
450
|
+
configurationOverrides?: ConfigurationOverrides | undefined;
|
|
451
|
+
serverUrl?: string | undefined;
|
|
452
|
+
createdAt?: Date | undefined;
|
|
453
|
+
securityGroup?: string | undefined;
|
|
454
|
+
subnetIds?: string[] | undefined;
|
|
455
|
+
stateDetails?: string | undefined;
|
|
456
|
+
failureReason?: FailureReason | undefined;
|
|
457
|
+
tags?: Record<string, string> | undefined;
|
|
450
458
|
}
|
|
451
459
|
export interface JobRun {
|
|
452
|
-
id?: string;
|
|
453
|
-
name?: string;
|
|
454
|
-
virtualClusterId?: string;
|
|
455
|
-
arn?: string;
|
|
456
|
-
state?: JobRunState;
|
|
457
|
-
clientToken?: string;
|
|
458
|
-
executionRoleArn?: string;
|
|
459
|
-
releaseLabel?: string;
|
|
460
|
-
configurationOverrides?: ConfigurationOverrides;
|
|
461
|
-
jobDriver?: JobDriver;
|
|
462
|
-
createdAt?: Date;
|
|
463
|
-
createdBy?: string;
|
|
464
|
-
finishedAt?: Date;
|
|
465
|
-
stateDetails?: string;
|
|
466
|
-
failureReason?: FailureReason;
|
|
467
|
-
tags?: Record<string, string
|
|
468
|
-
retryPolicyConfiguration?: RetryPolicyConfiguration;
|
|
469
|
-
retryPolicyExecution?: RetryPolicyExecution;
|
|
460
|
+
id?: string | undefined;
|
|
461
|
+
name?: string | undefined;
|
|
462
|
+
virtualClusterId?: string | undefined;
|
|
463
|
+
arn?: string | undefined;
|
|
464
|
+
state?: JobRunState | undefined;
|
|
465
|
+
clientToken?: string | undefined;
|
|
466
|
+
executionRoleArn?: string | undefined;
|
|
467
|
+
releaseLabel?: string | undefined;
|
|
468
|
+
configurationOverrides?: ConfigurationOverrides | undefined;
|
|
469
|
+
jobDriver?: JobDriver | undefined;
|
|
470
|
+
createdAt?: Date | undefined;
|
|
471
|
+
createdBy?: string | undefined;
|
|
472
|
+
finishedAt?: Date | undefined;
|
|
473
|
+
stateDetails?: string | undefined;
|
|
474
|
+
failureReason?: FailureReason | undefined;
|
|
475
|
+
tags?: Record<string, string> | undefined;
|
|
476
|
+
retryPolicyConfiguration?: RetryPolicyConfiguration | undefined;
|
|
477
|
+
retryPolicyExecution?: RetryPolicyExecution | undefined;
|
|
470
478
|
}
|
|
471
479
|
export interface JobTemplateData {
|
|
472
480
|
executionRoleArn: string | undefined;
|
|
473
481
|
releaseLabel: string | undefined;
|
|
474
|
-
configurationOverrides?: ParametricConfigurationOverrides;
|
|
482
|
+
configurationOverrides?: ParametricConfigurationOverrides | undefined;
|
|
475
483
|
jobDriver: JobDriver | undefined;
|
|
476
|
-
parameterConfiguration?:
|
|
477
|
-
|
|
484
|
+
parameterConfiguration?:
|
|
485
|
+
| Record<string, TemplateParameterConfiguration>
|
|
486
|
+
| undefined;
|
|
487
|
+
jobTags?: Record<string, string> | undefined;
|
|
478
488
|
}
|
|
479
489
|
export interface StartJobRunRequest {
|
|
480
|
-
name?: string;
|
|
490
|
+
name?: string | undefined;
|
|
481
491
|
virtualClusterId: string | undefined;
|
|
482
|
-
clientToken?: string;
|
|
483
|
-
executionRoleArn?: string;
|
|
484
|
-
releaseLabel?: string;
|
|
485
|
-
jobDriver?: JobDriver;
|
|
486
|
-
configurationOverrides?: ConfigurationOverrides;
|
|
487
|
-
tags?: Record<string, string
|
|
488
|
-
jobTemplateId?: string;
|
|
489
|
-
jobTemplateParameters?: Record<string, string
|
|
490
|
-
retryPolicyConfiguration?: RetryPolicyConfiguration;
|
|
492
|
+
clientToken?: string | undefined;
|
|
493
|
+
executionRoleArn?: string | undefined;
|
|
494
|
+
releaseLabel?: string | undefined;
|
|
495
|
+
jobDriver?: JobDriver | undefined;
|
|
496
|
+
configurationOverrides?: ConfigurationOverrides | undefined;
|
|
497
|
+
tags?: Record<string, string> | undefined;
|
|
498
|
+
jobTemplateId?: string | undefined;
|
|
499
|
+
jobTemplateParameters?: Record<string, string> | undefined;
|
|
500
|
+
retryPolicyConfiguration?: RetryPolicyConfiguration | undefined;
|
|
491
501
|
}
|
|
492
502
|
export interface CreateJobTemplateRequest {
|
|
493
503
|
name: string | undefined;
|
|
494
|
-
clientToken?: string;
|
|
504
|
+
clientToken?: string | undefined;
|
|
495
505
|
jobTemplateData: JobTemplateData | undefined;
|
|
496
|
-
tags?: Record<string, string
|
|
497
|
-
kmsKeyArn?: string;
|
|
506
|
+
tags?: Record<string, string> | undefined;
|
|
507
|
+
kmsKeyArn?: string | undefined;
|
|
498
508
|
}
|
|
499
509
|
export interface DescribeJobRunResponse {
|
|
500
|
-
jobRun?: JobRun;
|
|
510
|
+
jobRun?: JobRun | undefined;
|
|
501
511
|
}
|
|
502
512
|
export interface DescribeManagedEndpointResponse {
|
|
503
|
-
endpoint?: Endpoint;
|
|
513
|
+
endpoint?: Endpoint | undefined;
|
|
504
514
|
}
|
|
505
515
|
export interface JobTemplate {
|
|
506
|
-
name?: string;
|
|
507
|
-
id?: string;
|
|
508
|
-
arn?: string;
|
|
509
|
-
createdAt?: Date;
|
|
510
|
-
createdBy?: string;
|
|
511
|
-
tags?: Record<string, string
|
|
516
|
+
name?: string | undefined;
|
|
517
|
+
id?: string | undefined;
|
|
518
|
+
arn?: string | undefined;
|
|
519
|
+
createdAt?: Date | undefined;
|
|
520
|
+
createdBy?: string | undefined;
|
|
521
|
+
tags?: Record<string, string> | undefined;
|
|
512
522
|
jobTemplateData: JobTemplateData | undefined;
|
|
513
|
-
kmsKeyArn?: string;
|
|
514
|
-
decryptionError?: string;
|
|
523
|
+
kmsKeyArn?: string | undefined;
|
|
524
|
+
decryptionError?: string | undefined;
|
|
515
525
|
}
|
|
516
526
|
export interface DescribeJobTemplateResponse {
|
|
517
|
-
jobTemplate?: JobTemplate;
|
|
527
|
+
jobTemplate?: JobTemplate | undefined;
|
|
518
528
|
}
|
|
519
529
|
export interface ListJobRunsResponse {
|
|
520
|
-
jobRuns?: JobRun[];
|
|
521
|
-
nextToken?: string;
|
|
530
|
+
jobRuns?: JobRun[] | undefined;
|
|
531
|
+
nextToken?: string | undefined;
|
|
522
532
|
}
|
|
523
533
|
export interface ListManagedEndpointsResponse {
|
|
524
|
-
endpoints?: Endpoint[];
|
|
525
|
-
nextToken?: string;
|
|
534
|
+
endpoints?: Endpoint[] | undefined;
|
|
535
|
+
nextToken?: string | undefined;
|
|
526
536
|
}
|
|
527
537
|
export interface ListJobTemplatesResponse {
|
|
528
|
-
templates?: JobTemplate[];
|
|
529
|
-
nextToken?: string;
|
|
538
|
+
templates?: JobTemplate[] | undefined;
|
|
539
|
+
nextToken?: string | undefined;
|
|
530
540
|
}
|
|
531
541
|
export declare const SparkSqlJobDriverFilterSensitiveLog: (
|
|
532
542
|
obj: SparkSqlJobDriver
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-emr-containers",
|
|
3
3
|
"description": "AWS SDK for JavaScript Emr Containers Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.691.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-emr-containers",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.691.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.691.0",
|
|
25
|
+
"@aws-sdk/core": "3.691.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.691.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.686.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.686.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.686.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.691.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.686.0",
|
|
32
32
|
"@aws-sdk/types": "3.686.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.686.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.686.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.691.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.10",
|
|
37
37
|
"@smithy/core": "^2.5.1",
|
|
38
38
|
"@smithy/fetch-http-handler": "^4.0.0",
|