@aws-sdk/client-emr-serverless 3.428.0 → 3.429.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.
@@ -307,7 +307,7 @@ export interface ApplicationSummary {
307
307
  * @public
308
308
  * <p>The state of the application.</p>
309
309
  */
310
- state: ApplicationState | string | undefined;
310
+ state: ApplicationState | undefined;
311
311
  /**
312
312
  * @public
313
313
  * <p>The state details of the application.</p>
@@ -327,7 +327,7 @@ export interface ApplicationSummary {
327
327
  * @public
328
328
  * <p>The CPU architecture of an application.</p>
329
329
  */
330
- architecture?: Architecture | string;
330
+ architecture?: Architecture;
331
331
  }
332
332
  /**
333
333
  * @public
@@ -467,7 +467,7 @@ export interface ListApplicationsRequest {
467
467
  * <p>An optional filter for application states. Note that if this filter contains multiple
468
468
  * states, the resulting list will be grouped by the state.</p>
469
469
  */
470
- states?: (ApplicationState | string)[];
470
+ states?: ApplicationState[];
471
471
  }
472
472
  /**
473
473
  * @public
@@ -782,7 +782,7 @@ export interface ListJobRunsRequest {
782
782
  * <p>An optional filter for job run states. Note that if this filter contains multiple
783
783
  * states, the resulting list will be grouped by the state.</p>
784
784
  */
785
- states?: (JobRunState | string)[];
785
+ states?: JobRunState[];
786
786
  }
787
787
  /**
788
788
  * @public
@@ -833,7 +833,7 @@ export interface JobRunSummary {
833
833
  * @public
834
834
  * <p>The state of the job run.</p>
835
835
  */
836
- state: JobRunState | string | undefined;
836
+ state: JobRunState | undefined;
837
837
  /**
838
838
  * @public
839
839
  * <p>The state details of the job run.</p>
@@ -1012,7 +1012,7 @@ export interface Application {
1012
1012
  * @public
1013
1013
  * <p>The state of the application.</p>
1014
1014
  */
1015
- state: ApplicationState | string | undefined;
1015
+ state: ApplicationState | undefined;
1016
1016
  /**
1017
1017
  * @public
1018
1018
  * <p>The state details of the application.</p>
@@ -1065,7 +1065,7 @@ export interface Application {
1065
1065
  * @public
1066
1066
  * <p>The CPU architecture of an application.</p>
1067
1067
  */
1068
- architecture?: Architecture | string;
1068
+ architecture?: Architecture;
1069
1069
  /**
1070
1070
  * @public
1071
1071
  * <p>The image configuration applied to all worker types.</p>
@@ -1168,7 +1168,7 @@ export interface CreateApplicationRequest {
1168
1168
  * @public
1169
1169
  * <p>The CPU architecture of an application.</p>
1170
1170
  */
1171
- architecture?: Architecture | string;
1171
+ architecture?: Architecture;
1172
1172
  /**
1173
1173
  * @public
1174
1174
  * <p>The image configuration for all worker types. You can either set this parameter or
@@ -1247,7 +1247,7 @@ export interface UpdateApplicationRequest {
1247
1247
  * @public
1248
1248
  * <p>The CPU architecture of an application.</p>
1249
1249
  */
1250
- architecture?: Architecture | string;
1250
+ architecture?: Architecture;
1251
1251
  /**
1252
1252
  * @public
1253
1253
  * <p>The image configuration to be used for all worker types. You can either set this
@@ -1346,7 +1346,7 @@ export interface JobRun {
1346
1346
  * @public
1347
1347
  * <p>The state of the job run.</p>
1348
1348
  */
1349
- state: JobRunState | string | undefined;
1349
+ state: JobRunState | undefined;
1350
1350
  /**
1351
1351
  * @public
1352
1352
  * <p>The state details of the job run.</p>
@@ -74,11 +74,11 @@ export interface ApplicationSummary {
74
74
  arn: string | undefined;
75
75
  releaseLabel: string | undefined;
76
76
  type: string | undefined;
77
- state: ApplicationState | string | undefined;
77
+ state: ApplicationState | undefined;
78
78
  stateDetails?: string;
79
79
  createdAt: Date | undefined;
80
80
  updatedAt: Date | undefined;
81
- architecture?: Architecture | string;
81
+ architecture?: Architecture;
82
82
  }
83
83
  export declare class ConflictException extends __BaseException {
84
84
  readonly name: "ConflictException";
@@ -127,7 +127,7 @@ export interface GetApplicationRequest {
127
127
  export interface ListApplicationsRequest {
128
128
  nextToken?: string;
129
129
  maxResults?: number;
130
- states?: (ApplicationState | string)[];
130
+ states?: ApplicationState[];
131
131
  }
132
132
  export interface ListApplicationsResponse {
133
133
  applications: ApplicationSummary[] | undefined;
@@ -231,7 +231,7 @@ export interface ListJobRunsRequest {
231
231
  maxResults?: number;
232
232
  createdAtAfter?: Date;
233
233
  createdAtBefore?: Date;
234
- states?: (JobRunState | string)[];
234
+ states?: JobRunState[];
235
235
  }
236
236
  export interface JobRunSummary {
237
237
  applicationId: string | undefined;
@@ -242,7 +242,7 @@ export interface JobRunSummary {
242
242
  createdAt: Date | undefined;
243
243
  updatedAt: Date | undefined;
244
244
  executionRole: string | undefined;
245
- state: JobRunState | string | undefined;
245
+ state: JobRunState | undefined;
246
246
  stateDetails: string | undefined;
247
247
  releaseLabel: string | undefined;
248
248
  type?: string;
@@ -283,7 +283,7 @@ export interface Application {
283
283
  arn: string | undefined;
284
284
  releaseLabel: string | undefined;
285
285
  type: string | undefined;
286
- state: ApplicationState | string | undefined;
286
+ state: ApplicationState | undefined;
287
287
  stateDetails?: string;
288
288
  initialCapacity?: Record<string, InitialCapacityConfig>;
289
289
  maximumCapacity?: MaximumAllowedResources;
@@ -293,7 +293,7 @@ export interface Application {
293
293
  autoStartConfiguration?: AutoStartConfig;
294
294
  autoStopConfiguration?: AutoStopConfig;
295
295
  networkConfiguration?: NetworkConfiguration;
296
- architecture?: Architecture | string;
296
+ architecture?: Architecture;
297
297
  imageConfiguration?: ImageConfiguration;
298
298
  workerTypeSpecifications?: Record<string, WorkerTypeSpecification>;
299
299
  runtimeConfiguration?: Configuration[];
@@ -314,7 +314,7 @@ export interface CreateApplicationRequest {
314
314
  autoStartConfiguration?: AutoStartConfig;
315
315
  autoStopConfiguration?: AutoStopConfig;
316
316
  networkConfiguration?: NetworkConfiguration;
317
- architecture?: Architecture | string;
317
+ architecture?: Architecture;
318
318
  imageConfiguration?: ImageConfigurationInput;
319
319
  workerTypeSpecifications?: Record<string, WorkerTypeSpecificationInput>;
320
320
  runtimeConfiguration?: Configuration[];
@@ -328,7 +328,7 @@ export interface UpdateApplicationRequest {
328
328
  autoStartConfiguration?: AutoStartConfig;
329
329
  autoStopConfiguration?: AutoStopConfig;
330
330
  networkConfiguration?: NetworkConfiguration;
331
- architecture?: Architecture | string;
331
+ architecture?: Architecture;
332
332
  imageConfiguration?: ImageConfigurationInput;
333
333
  workerTypeSpecifications?: Record<string, WorkerTypeSpecificationInput>;
334
334
  releaseLabel?: string;
@@ -347,7 +347,7 @@ export interface JobRun {
347
347
  createdAt: Date | undefined;
348
348
  updatedAt: Date | undefined;
349
349
  executionRole: string | undefined;
350
- state: JobRunState | string | undefined;
350
+ state: JobRunState | undefined;
351
351
  stateDetails: string | undefined;
352
352
  releaseLabel: string | undefined;
353
353
  configurationOverrides?: ConfigurationOverrides;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-emr-serverless",
3
3
  "description": "AWS SDK for JavaScript Emr Serverless Client for Node.js, Browser and React Native",
4
- "version": "3.428.0",
4
+ "version": "3.429.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.428.0",
25
- "@aws-sdk/credential-provider-node": "3.428.0",
26
- "@aws-sdk/middleware-host-header": "3.428.0",
24
+ "@aws-sdk/client-sts": "3.429.0",
25
+ "@aws-sdk/credential-provider-node": "3.429.0",
26
+ "@aws-sdk/middleware-host-header": "3.429.0",
27
27
  "@aws-sdk/middleware-logger": "3.428.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.428.0",
29
29
  "@aws-sdk/middleware-signing": "3.428.0",
@@ -38,7 +38,7 @@
38
38
  "@smithy/hash-node": "^2.0.11",
39
39
  "@smithy/invalid-dependency": "^2.0.11",
40
40
  "@smithy/middleware-content-length": "^2.0.13",
41
- "@smithy/middleware-endpoint": "^2.1.0",
41
+ "@smithy/middleware-endpoint": "^2.1.1",
42
42
  "@smithy/middleware-retry": "^2.0.16",
43
43
  "@smithy/middleware-serde": "^2.0.11",
44
44
  "@smithy/middleware-stack": "^2.0.5",