@aws-sdk/client-emr-serverless 3.687.0 → 3.692.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 +146 -146
- package/dist-types/ts3.4/models/models_0.d.ts +156 -146
- package/package.json +35 -35
|
@@ -22,7 +22,7 @@ export interface AutoStartConfig {
|
|
|
22
22
|
* true.</p>
|
|
23
23
|
* @public
|
|
24
24
|
*/
|
|
25
|
-
enabled?: boolean;
|
|
25
|
+
enabled?: boolean | undefined;
|
|
26
26
|
}
|
|
27
27
|
/**
|
|
28
28
|
* <p>The configuration for an application to automatically stop after a certain amount of
|
|
@@ -35,13 +35,13 @@ export interface AutoStopConfig {
|
|
|
35
35
|
* Defaults to true.</p>
|
|
36
36
|
* @public
|
|
37
37
|
*/
|
|
38
|
-
enabled?: boolean;
|
|
38
|
+
enabled?: boolean | undefined;
|
|
39
39
|
/**
|
|
40
40
|
* <p>The amount of idle time in minutes after which your application will automatically stop.
|
|
41
41
|
* Defaults to 15 minutes.</p>
|
|
42
42
|
* @public
|
|
43
43
|
*/
|
|
44
|
-
idleTimeoutMinutes?: number;
|
|
44
|
+
idleTimeoutMinutes?: number | undefined;
|
|
45
45
|
}
|
|
46
46
|
/**
|
|
47
47
|
* <p>The applied image configuration.</p>
|
|
@@ -58,7 +58,7 @@ export interface ImageConfiguration {
|
|
|
58
58
|
* is configured for. The image digest doesn't exist until an application has started.</p>
|
|
59
59
|
* @public
|
|
60
60
|
*/
|
|
61
|
-
resolvedImageDigest?: string;
|
|
61
|
+
resolvedImageDigest?: string | undefined;
|
|
62
62
|
}
|
|
63
63
|
/**
|
|
64
64
|
* <p>The cumulative configuration requirements for every worker instance of the worker
|
|
@@ -80,13 +80,13 @@ export interface WorkerResourceConfig {
|
|
|
80
80
|
* <p>The disk requirements for every worker instance of the worker type.</p>
|
|
81
81
|
* @public
|
|
82
82
|
*/
|
|
83
|
-
disk?: string;
|
|
83
|
+
disk?: string | undefined;
|
|
84
84
|
/**
|
|
85
85
|
* <p>The disk type for every worker instance of the work type. Shuffle optimized disks have higher performance
|
|
86
86
|
* characteristics and are better for shuffle heavy workloads. Default is <code>STANDARD</code>.</p>
|
|
87
87
|
* @public
|
|
88
88
|
*/
|
|
89
|
-
diskType?: string;
|
|
89
|
+
diskType?: string | undefined;
|
|
90
90
|
}
|
|
91
91
|
/**
|
|
92
92
|
* <p>The initial capacity configuration per worker.</p>
|
|
@@ -102,7 +102,7 @@ export interface InitialCapacityConfig {
|
|
|
102
102
|
* <p>The resource configuration of the initial capacity configuration.</p>
|
|
103
103
|
* @public
|
|
104
104
|
*/
|
|
105
|
-
workerConfiguration?: WorkerResourceConfig;
|
|
105
|
+
workerConfiguration?: WorkerResourceConfig | undefined;
|
|
106
106
|
}
|
|
107
107
|
/**
|
|
108
108
|
* <p>The configuration to use to enable the different types of interactive use cases in an application.</p>
|
|
@@ -113,12 +113,12 @@ export interface InteractiveConfiguration {
|
|
|
113
113
|
* <p>Enables you to connect an application to Amazon EMR Studio to run interactive workloads in a notebook.</p>
|
|
114
114
|
* @public
|
|
115
115
|
*/
|
|
116
|
-
studioEnabled?: boolean;
|
|
116
|
+
studioEnabled?: boolean | undefined;
|
|
117
117
|
/**
|
|
118
118
|
* <p>Enables an Apache Livy endpoint that you can connect to and run interactive jobs.</p>
|
|
119
119
|
* @public
|
|
120
120
|
*/
|
|
121
|
-
livyEndpointEnabled?: boolean;
|
|
121
|
+
livyEndpointEnabled?: boolean | undefined;
|
|
122
122
|
}
|
|
123
123
|
/**
|
|
124
124
|
* <p>The maximum allowed cumulative resources for an application. No new resources will be created once the limit is hit.</p>
|
|
@@ -139,7 +139,7 @@ export interface MaximumAllowedResources {
|
|
|
139
139
|
* <p>The maximum allowed disk for an application.</p>
|
|
140
140
|
* @public
|
|
141
141
|
*/
|
|
142
|
-
disk?: string;
|
|
142
|
+
disk?: string | undefined;
|
|
143
143
|
}
|
|
144
144
|
/**
|
|
145
145
|
* <p>The Amazon CloudWatch configuration for monitoring logs. You can configure your jobs
|
|
@@ -157,17 +157,17 @@ export interface CloudWatchLoggingConfiguration {
|
|
|
157
157
|
* logs.</p>
|
|
158
158
|
* @public
|
|
159
159
|
*/
|
|
160
|
-
logGroupName?: string;
|
|
160
|
+
logGroupName?: string | undefined;
|
|
161
161
|
/**
|
|
162
162
|
* <p>Prefix for the CloudWatch log stream name.</p>
|
|
163
163
|
* @public
|
|
164
164
|
*/
|
|
165
|
-
logStreamNamePrefix?: string;
|
|
165
|
+
logStreamNamePrefix?: string | undefined;
|
|
166
166
|
/**
|
|
167
167
|
* <p>The Key Management Service (KMS) key ARN to encrypt the logs that you store in CloudWatch Logs.</p>
|
|
168
168
|
* @public
|
|
169
169
|
*/
|
|
170
|
-
encryptionKeyArn?: string;
|
|
170
|
+
encryptionKeyArn?: string | undefined;
|
|
171
171
|
/**
|
|
172
172
|
* <p>The types of logs that you want to publish to CloudWatch. If you don't specify
|
|
173
173
|
* any log types, driver STDOUT and STDERR logs will be published to CloudWatch Logs by
|
|
@@ -192,7 +192,7 @@ export interface CloudWatchLoggingConfiguration {
|
|
|
192
192
|
* </ul>
|
|
193
193
|
* @public
|
|
194
194
|
*/
|
|
195
|
-
logTypes?: Record<string, string[]
|
|
195
|
+
logTypes?: Record<string, string[]> | undefined;
|
|
196
196
|
}
|
|
197
197
|
/**
|
|
198
198
|
* <p>The managed log persistence configuration for a job run.</p>
|
|
@@ -204,12 +204,12 @@ export interface ManagedPersistenceMonitoringConfiguration {
|
|
|
204
204
|
* turned off.</p>
|
|
205
205
|
* @public
|
|
206
206
|
*/
|
|
207
|
-
enabled?: boolean;
|
|
207
|
+
enabled?: boolean | undefined;
|
|
208
208
|
/**
|
|
209
209
|
* <p>The KMS key ARN to encrypt the logs stored in managed log persistence.</p>
|
|
210
210
|
* @public
|
|
211
211
|
*/
|
|
212
|
-
encryptionKeyArn?: string;
|
|
212
|
+
encryptionKeyArn?: string | undefined;
|
|
213
213
|
}
|
|
214
214
|
/**
|
|
215
215
|
* <p>The monitoring configuration object you can configure to send metrics to Amazon Managed Service for Prometheus for a job run.</p>
|
|
@@ -220,7 +220,7 @@ export interface PrometheusMonitoringConfiguration {
|
|
|
220
220
|
* <p>The remote write URL in the Amazon Managed Service for Prometheus workspace to send metrics to.</p>
|
|
221
221
|
* @public
|
|
222
222
|
*/
|
|
223
|
-
remoteWriteUrl?: string;
|
|
223
|
+
remoteWriteUrl?: string | undefined;
|
|
224
224
|
}
|
|
225
225
|
/**
|
|
226
226
|
* <p>The Amazon S3 configuration for monitoring log publishing. You can configure your jobs
|
|
@@ -232,12 +232,12 @@ export interface S3MonitoringConfiguration {
|
|
|
232
232
|
* <p>The Amazon S3 destination URI for log publishing.</p>
|
|
233
233
|
* @public
|
|
234
234
|
*/
|
|
235
|
-
logUri?: string;
|
|
235
|
+
logUri?: string | undefined;
|
|
236
236
|
/**
|
|
237
237
|
* <p>The KMS key ARN to encrypt the logs published to the given Amazon S3 destination.</p>
|
|
238
238
|
* @public
|
|
239
239
|
*/
|
|
240
|
-
encryptionKeyArn?: string;
|
|
240
|
+
encryptionKeyArn?: string | undefined;
|
|
241
241
|
}
|
|
242
242
|
/**
|
|
243
243
|
* <p>The configuration setting for monitoring.</p>
|
|
@@ -248,23 +248,23 @@ export interface MonitoringConfiguration {
|
|
|
248
248
|
* <p>The Amazon S3 configuration for monitoring log publishing.</p>
|
|
249
249
|
* @public
|
|
250
250
|
*/
|
|
251
|
-
s3MonitoringConfiguration?: S3MonitoringConfiguration;
|
|
251
|
+
s3MonitoringConfiguration?: S3MonitoringConfiguration | undefined;
|
|
252
252
|
/**
|
|
253
253
|
* <p>The managed log persistence configuration for a job run.</p>
|
|
254
254
|
* @public
|
|
255
255
|
*/
|
|
256
|
-
managedPersistenceMonitoringConfiguration?: ManagedPersistenceMonitoringConfiguration;
|
|
256
|
+
managedPersistenceMonitoringConfiguration?: ManagedPersistenceMonitoringConfiguration | undefined;
|
|
257
257
|
/**
|
|
258
258
|
* <p>The Amazon CloudWatch configuration for monitoring logs. You can configure your jobs
|
|
259
259
|
* to send log information to CloudWatch.</p>
|
|
260
260
|
* @public
|
|
261
261
|
*/
|
|
262
|
-
cloudWatchLoggingConfiguration?: CloudWatchLoggingConfiguration;
|
|
262
|
+
cloudWatchLoggingConfiguration?: CloudWatchLoggingConfiguration | undefined;
|
|
263
263
|
/**
|
|
264
264
|
* <p>The monitoring configuration object you can configure to send metrics to Amazon Managed Service for Prometheus for a job run.</p>
|
|
265
265
|
* @public
|
|
266
266
|
*/
|
|
267
|
-
prometheusMonitoringConfiguration?: PrometheusMonitoringConfiguration;
|
|
267
|
+
prometheusMonitoringConfiguration?: PrometheusMonitoringConfiguration | undefined;
|
|
268
268
|
}
|
|
269
269
|
/**
|
|
270
270
|
* <p>The network configuration for customer VPC connectivity.</p>
|
|
@@ -275,12 +275,12 @@ export interface NetworkConfiguration {
|
|
|
275
275
|
* <p>The array of subnet Ids for customer VPC connectivity.</p>
|
|
276
276
|
* @public
|
|
277
277
|
*/
|
|
278
|
-
subnetIds?: string[];
|
|
278
|
+
subnetIds?: string[] | undefined;
|
|
279
279
|
/**
|
|
280
280
|
* <p>The array of security group Ids for customer VPC connectivity.</p>
|
|
281
281
|
* @public
|
|
282
282
|
*/
|
|
283
|
-
securityGroupIds?: string[];
|
|
283
|
+
securityGroupIds?: string[] | undefined;
|
|
284
284
|
}
|
|
285
285
|
/**
|
|
286
286
|
* <p>The scheduler configuration for batch and streaming jobs running on this application. Supported with release labels emr-7.0.0 and above.</p>
|
|
@@ -291,12 +291,12 @@ export interface SchedulerConfiguration {
|
|
|
291
291
|
* <p>The maximum duration in minutes for the job in QUEUED state. If scheduler configuration is enabled on your application, the default value is 360 minutes (6 hours). The valid range is from 15 to 720.</p>
|
|
292
292
|
* @public
|
|
293
293
|
*/
|
|
294
|
-
queueTimeoutMinutes?: number;
|
|
294
|
+
queueTimeoutMinutes?: number | undefined;
|
|
295
295
|
/**
|
|
296
296
|
* <p>The maximum concurrent job runs on this application. If scheduler configuration is enabled on your application, the default value is 15. The valid range is 1 to 1000.</p>
|
|
297
297
|
* @public
|
|
298
298
|
*/
|
|
299
|
-
maxConcurrentRuns?: number;
|
|
299
|
+
maxConcurrentRuns?: number | undefined;
|
|
300
300
|
}
|
|
301
301
|
/**
|
|
302
302
|
* @public
|
|
@@ -324,7 +324,7 @@ export interface WorkerTypeSpecification {
|
|
|
324
324
|
* <p>The image configuration for a worker type.</p>
|
|
325
325
|
* @public
|
|
326
326
|
*/
|
|
327
|
-
imageConfiguration?: ImageConfiguration;
|
|
327
|
+
imageConfiguration?: ImageConfiguration | undefined;
|
|
328
328
|
}
|
|
329
329
|
/**
|
|
330
330
|
* <p>The summary of attributes associated with an application.</p>
|
|
@@ -340,7 +340,7 @@ export interface ApplicationSummary {
|
|
|
340
340
|
* <p>The name of the application.</p>
|
|
341
341
|
* @public
|
|
342
342
|
*/
|
|
343
|
-
name?: string;
|
|
343
|
+
name?: string | undefined;
|
|
344
344
|
/**
|
|
345
345
|
* <p>The ARN of the application.</p>
|
|
346
346
|
* @public
|
|
@@ -365,7 +365,7 @@ export interface ApplicationSummary {
|
|
|
365
365
|
* <p>The state details of the application.</p>
|
|
366
366
|
* @public
|
|
367
367
|
*/
|
|
368
|
-
stateDetails?: string;
|
|
368
|
+
stateDetails?: string | undefined;
|
|
369
369
|
/**
|
|
370
370
|
* <p>The date and time when the application was created.</p>
|
|
371
371
|
* @public
|
|
@@ -380,7 +380,7 @@ export interface ApplicationSummary {
|
|
|
380
380
|
* <p>The CPU architecture of an application.</p>
|
|
381
381
|
* @public
|
|
382
382
|
*/
|
|
383
|
-
architecture?: Architecture;
|
|
383
|
+
architecture?: Architecture | undefined;
|
|
384
384
|
}
|
|
385
385
|
/**
|
|
386
386
|
* <p>The request could not be processed because of conflict in the current state of the
|
|
@@ -406,7 +406,7 @@ export interface ImageConfigurationInput {
|
|
|
406
406
|
* the image configuration.</p>
|
|
407
407
|
* @public
|
|
408
408
|
*/
|
|
409
|
-
imageUri?: string;
|
|
409
|
+
imageUri?: string | undefined;
|
|
410
410
|
}
|
|
411
411
|
/**
|
|
412
412
|
* <p>The specifications for a worker type.</p>
|
|
@@ -417,7 +417,7 @@ export interface WorkerTypeSpecificationInput {
|
|
|
417
417
|
* <p>The image configuration for a worker type.</p>
|
|
418
418
|
* @public
|
|
419
419
|
*/
|
|
420
|
-
imageConfiguration?: ImageConfigurationInput;
|
|
420
|
+
imageConfiguration?: ImageConfigurationInput | undefined;
|
|
421
421
|
}
|
|
422
422
|
/**
|
|
423
423
|
* @public
|
|
@@ -432,7 +432,7 @@ export interface CreateApplicationResponse {
|
|
|
432
432
|
* <p>The output contains the name of the application.</p>
|
|
433
433
|
* @public
|
|
434
434
|
*/
|
|
435
|
-
name?: string;
|
|
435
|
+
name?: string | undefined;
|
|
436
436
|
/**
|
|
437
437
|
* <p>The output contains the ARN of the application.</p>
|
|
438
438
|
* @public
|
|
@@ -509,18 +509,18 @@ export interface ListApplicationsRequest {
|
|
|
509
509
|
* <p>The token for the next set of application results.</p>
|
|
510
510
|
* @public
|
|
511
511
|
*/
|
|
512
|
-
nextToken?: string;
|
|
512
|
+
nextToken?: string | undefined;
|
|
513
513
|
/**
|
|
514
514
|
* <p>The maximum number of applications that can be listed.</p>
|
|
515
515
|
* @public
|
|
516
516
|
*/
|
|
517
|
-
maxResults?: number;
|
|
517
|
+
maxResults?: number | undefined;
|
|
518
518
|
/**
|
|
519
519
|
* <p>An optional filter for application states. Note that if this filter contains multiple
|
|
520
520
|
* states, the resulting list will be grouped by the state.</p>
|
|
521
521
|
* @public
|
|
522
522
|
*/
|
|
523
|
-
states?: ApplicationState[];
|
|
523
|
+
states?: ApplicationState[] | undefined;
|
|
524
524
|
}
|
|
525
525
|
/**
|
|
526
526
|
* @public
|
|
@@ -536,7 +536,7 @@ export interface ListApplicationsResponse {
|
|
|
536
536
|
* for pagination and is available as a response of the previous request.</p>
|
|
537
537
|
* @public
|
|
538
538
|
*/
|
|
539
|
-
nextToken?: string;
|
|
539
|
+
nextToken?: string | undefined;
|
|
540
540
|
}
|
|
541
541
|
/**
|
|
542
542
|
* <p>The maximum number of resources per account has been reached.</p>
|
|
@@ -629,7 +629,7 @@ export interface GetDashboardForJobRunRequest {
|
|
|
629
629
|
* this value defaults to the attempt of the latest job.</p>
|
|
630
630
|
* @public
|
|
631
631
|
*/
|
|
632
|
-
attempt?: number;
|
|
632
|
+
attempt?: number | undefined;
|
|
633
633
|
}
|
|
634
634
|
/**
|
|
635
635
|
* @public
|
|
@@ -639,7 +639,7 @@ export interface GetDashboardForJobRunResponse {
|
|
|
639
639
|
* <p>The URL to view job run's dashboard.</p>
|
|
640
640
|
* @public
|
|
641
641
|
*/
|
|
642
|
-
url?: string;
|
|
642
|
+
url?: string | undefined;
|
|
643
643
|
}
|
|
644
644
|
/**
|
|
645
645
|
* @public
|
|
@@ -660,7 +660,7 @@ export interface GetJobRunRequest {
|
|
|
660
660
|
* this value defaults to the attempt of the latest job.</p>
|
|
661
661
|
* @public
|
|
662
662
|
*/
|
|
663
|
-
attempt?: number;
|
|
663
|
+
attempt?: number | undefined;
|
|
664
664
|
}
|
|
665
665
|
/**
|
|
666
666
|
* <p>The resource utilization for memory, storage, and vCPU for jobs.</p>
|
|
@@ -672,19 +672,19 @@ export interface ResourceUtilization {
|
|
|
672
672
|
* is terminated.</p>
|
|
673
673
|
* @public
|
|
674
674
|
*/
|
|
675
|
-
vCPUHour?: number;
|
|
675
|
+
vCPUHour?: number | undefined;
|
|
676
676
|
/**
|
|
677
677
|
* <p>The aggregated memory used per hour from the time the job starts executing until the job
|
|
678
678
|
* is terminated.</p>
|
|
679
679
|
* @public
|
|
680
680
|
*/
|
|
681
|
-
memoryGBHour?: number;
|
|
681
|
+
memoryGBHour?: number | undefined;
|
|
682
682
|
/**
|
|
683
683
|
* <p>The aggregated storage used per hour from the time the job starts executing until the
|
|
684
684
|
* job is terminated.</p>
|
|
685
685
|
* @public
|
|
686
686
|
*/
|
|
687
|
-
storageGBHour?: number;
|
|
687
|
+
storageGBHour?: number | undefined;
|
|
688
688
|
}
|
|
689
689
|
/**
|
|
690
690
|
* <p>The configurations for the Hive job driver.</p>
|
|
@@ -700,12 +700,12 @@ export interface Hive {
|
|
|
700
700
|
* <p>The query file for the Hive job run.</p>
|
|
701
701
|
* @public
|
|
702
702
|
*/
|
|
703
|
-
initQueryFile?: string;
|
|
703
|
+
initQueryFile?: string | undefined;
|
|
704
704
|
/**
|
|
705
705
|
* <p>The parameters for the Hive job run.</p>
|
|
706
706
|
* @public
|
|
707
707
|
*/
|
|
708
|
-
parameters?: string;
|
|
708
|
+
parameters?: string | undefined;
|
|
709
709
|
}
|
|
710
710
|
/**
|
|
711
711
|
* <p>The configurations for the Spark submit job driver.</p>
|
|
@@ -721,12 +721,12 @@ export interface SparkSubmit {
|
|
|
721
721
|
* <p>The arguments for the Spark submit job run.</p>
|
|
722
722
|
* @public
|
|
723
723
|
*/
|
|
724
|
-
entryPointArguments?: string[];
|
|
724
|
+
entryPointArguments?: string[] | undefined;
|
|
725
725
|
/**
|
|
726
726
|
* <p>The parameters for the Spark submit job run.</p>
|
|
727
727
|
* @public
|
|
728
728
|
*/
|
|
729
|
-
sparkSubmitParameters?: string;
|
|
729
|
+
sparkSubmitParameters?: string | undefined;
|
|
730
730
|
}
|
|
731
731
|
/**
|
|
732
732
|
* <p>The driver that the job runs on.</p>
|
|
@@ -791,12 +791,12 @@ export interface RetryPolicy {
|
|
|
791
791
|
* <p>Maximum number of attempts for the job run. This parameter is only applicable for <code>BATCH</code> mode.</p>
|
|
792
792
|
* @public
|
|
793
793
|
*/
|
|
794
|
-
maxAttempts?: number;
|
|
794
|
+
maxAttempts?: number | undefined;
|
|
795
795
|
/**
|
|
796
796
|
* <p>Maximum number of failed attempts per hour. This [arameter is only applicable for <code>STREAMING</code> mode.</p>
|
|
797
797
|
* @public
|
|
798
798
|
*/
|
|
799
|
-
maxFailedAttemptsPerHour?: number;
|
|
799
|
+
maxFailedAttemptsPerHour?: number | undefined;
|
|
800
800
|
}
|
|
801
801
|
/**
|
|
802
802
|
* @public
|
|
@@ -828,19 +828,19 @@ export interface TotalResourceUtilization {
|
|
|
828
828
|
* terminated.</p>
|
|
829
829
|
* @public
|
|
830
830
|
*/
|
|
831
|
-
vCPUHour?: number;
|
|
831
|
+
vCPUHour?: number | undefined;
|
|
832
832
|
/**
|
|
833
833
|
* <p>The aggregated memory used per hour from the time job start executing till the time job
|
|
834
834
|
* is terminated.</p>
|
|
835
835
|
* @public
|
|
836
836
|
*/
|
|
837
|
-
memoryGBHour?: number;
|
|
837
|
+
memoryGBHour?: number | undefined;
|
|
838
838
|
/**
|
|
839
839
|
* <p>The aggregated storage used per hour from the time job start executing till the time job
|
|
840
840
|
* is terminated.</p>
|
|
841
841
|
* @public
|
|
842
842
|
*/
|
|
843
|
-
storageGBHour?: number;
|
|
843
|
+
storageGBHour?: number | undefined;
|
|
844
844
|
}
|
|
845
845
|
/**
|
|
846
846
|
* @public
|
|
@@ -860,12 +860,12 @@ export interface ListJobRunAttemptsRequest {
|
|
|
860
860
|
* <p>The token for the next set of job run attempt results.</p>
|
|
861
861
|
* @public
|
|
862
862
|
*/
|
|
863
|
-
nextToken?: string;
|
|
863
|
+
nextToken?: string | undefined;
|
|
864
864
|
/**
|
|
865
865
|
* <p>The maximum number of job run attempts to list.</p>
|
|
866
866
|
* @public
|
|
867
867
|
*/
|
|
868
|
-
maxResults?: number;
|
|
868
|
+
maxResults?: number | undefined;
|
|
869
869
|
}
|
|
870
870
|
/**
|
|
871
871
|
* <p>The summary of attributes associated with a job run attempt.</p>
|
|
@@ -886,12 +886,12 @@ export interface JobRunAttemptSummary {
|
|
|
886
886
|
* <p>The name of the job run attempt.</p>
|
|
887
887
|
* @public
|
|
888
888
|
*/
|
|
889
|
-
name?: string;
|
|
889
|
+
name?: string | undefined;
|
|
890
890
|
/**
|
|
891
891
|
* <p>The mode of the job run attempt.</p>
|
|
892
892
|
* @public
|
|
893
893
|
*/
|
|
894
|
-
mode?: JobRunMode;
|
|
894
|
+
mode?: JobRunMode | undefined;
|
|
895
895
|
/**
|
|
896
896
|
* <p>The Amazon Resource Name (ARN) of the job run.</p>
|
|
897
897
|
* @public
|
|
@@ -941,12 +941,12 @@ export interface JobRunAttemptSummary {
|
|
|
941
941
|
* <p>The type of the job run, such as Spark or Hive.</p>
|
|
942
942
|
* @public
|
|
943
943
|
*/
|
|
944
|
-
type?: string;
|
|
944
|
+
type?: string | undefined;
|
|
945
945
|
/**
|
|
946
946
|
* <p>The attempt number of the job run execution.</p>
|
|
947
947
|
* @public
|
|
948
948
|
*/
|
|
949
|
-
attempt?: number;
|
|
949
|
+
attempt?: number | undefined;
|
|
950
950
|
}
|
|
951
951
|
/**
|
|
952
952
|
* @public
|
|
@@ -962,7 +962,7 @@ export interface ListJobRunAttemptsResponse {
|
|
|
962
962
|
* This is required for pagination and is available as a response of the previous request.</p>
|
|
963
963
|
* @public
|
|
964
964
|
*/
|
|
965
|
-
nextToken?: string;
|
|
965
|
+
nextToken?: string | undefined;
|
|
966
966
|
}
|
|
967
967
|
/**
|
|
968
968
|
* @public
|
|
@@ -977,33 +977,33 @@ export interface ListJobRunsRequest {
|
|
|
977
977
|
* <p>The token for the next set of job run results.</p>
|
|
978
978
|
* @public
|
|
979
979
|
*/
|
|
980
|
-
nextToken?: string;
|
|
980
|
+
nextToken?: string | undefined;
|
|
981
981
|
/**
|
|
982
982
|
* <p>The maximum number of job runs that can be listed.</p>
|
|
983
983
|
* @public
|
|
984
984
|
*/
|
|
985
|
-
maxResults?: number;
|
|
985
|
+
maxResults?: number | undefined;
|
|
986
986
|
/**
|
|
987
987
|
* <p>The lower bound of the option to filter by creation date and time.</p>
|
|
988
988
|
* @public
|
|
989
989
|
*/
|
|
990
|
-
createdAtAfter?: Date;
|
|
990
|
+
createdAtAfter?: Date | undefined;
|
|
991
991
|
/**
|
|
992
992
|
* <p>The upper bound of the option to filter by creation date and time.</p>
|
|
993
993
|
* @public
|
|
994
994
|
*/
|
|
995
|
-
createdAtBefore?: Date;
|
|
995
|
+
createdAtBefore?: Date | undefined;
|
|
996
996
|
/**
|
|
997
997
|
* <p>An optional filter for job run states. Note that if this filter contains multiple
|
|
998
998
|
* states, the resulting list will be grouped by the state.</p>
|
|
999
999
|
* @public
|
|
1000
1000
|
*/
|
|
1001
|
-
states?: JobRunState[];
|
|
1001
|
+
states?: JobRunState[] | undefined;
|
|
1002
1002
|
/**
|
|
1003
1003
|
* <p>The mode of the job runs to list.</p>
|
|
1004
1004
|
* @public
|
|
1005
1005
|
*/
|
|
1006
|
-
mode?: JobRunMode;
|
|
1006
|
+
mode?: JobRunMode | undefined;
|
|
1007
1007
|
}
|
|
1008
1008
|
/**
|
|
1009
1009
|
* <p>The summary of attributes associated with a job run.</p>
|
|
@@ -1024,12 +1024,12 @@ export interface JobRunSummary {
|
|
|
1024
1024
|
* <p>The optional job run name. This doesn't have to be unique.</p>
|
|
1025
1025
|
* @public
|
|
1026
1026
|
*/
|
|
1027
|
-
name?: string;
|
|
1027
|
+
name?: string | undefined;
|
|
1028
1028
|
/**
|
|
1029
1029
|
* <p>The mode of the job run.</p>
|
|
1030
1030
|
* @public
|
|
1031
1031
|
*/
|
|
1032
|
-
mode?: JobRunMode;
|
|
1032
|
+
mode?: JobRunMode | undefined;
|
|
1033
1033
|
/**
|
|
1034
1034
|
* <p>The ARN of the job run.</p>
|
|
1035
1035
|
* @public
|
|
@@ -1075,22 +1075,22 @@ export interface JobRunSummary {
|
|
|
1075
1075
|
* <p>The type of job run, such as Spark or Hive.</p>
|
|
1076
1076
|
* @public
|
|
1077
1077
|
*/
|
|
1078
|
-
type?: string;
|
|
1078
|
+
type?: string | undefined;
|
|
1079
1079
|
/**
|
|
1080
1080
|
* <p>The attempt number of the job run execution.</p>
|
|
1081
1081
|
* @public
|
|
1082
1082
|
*/
|
|
1083
|
-
attempt?: number;
|
|
1083
|
+
attempt?: number | undefined;
|
|
1084
1084
|
/**
|
|
1085
1085
|
* <p>The date and time of when the job run attempt was created.</p>
|
|
1086
1086
|
* @public
|
|
1087
1087
|
*/
|
|
1088
|
-
attemptCreatedAt?: Date;
|
|
1088
|
+
attemptCreatedAt?: Date | undefined;
|
|
1089
1089
|
/**
|
|
1090
1090
|
* <p>The date and time of when the job run attempt was last updated.</p>
|
|
1091
1091
|
* @public
|
|
1092
1092
|
*/
|
|
1093
|
-
attemptUpdatedAt?: Date;
|
|
1093
|
+
attemptUpdatedAt?: Date | undefined;
|
|
1094
1094
|
}
|
|
1095
1095
|
/**
|
|
1096
1096
|
* @public
|
|
@@ -1106,7 +1106,7 @@ export interface ListJobRunsResponse {
|
|
|
1106
1106
|
* pagination and is available as a response of the previous request.</p>
|
|
1107
1107
|
* @public
|
|
1108
1108
|
*/
|
|
1109
|
-
nextToken?: string;
|
|
1109
|
+
nextToken?: string | undefined;
|
|
1110
1110
|
}
|
|
1111
1111
|
/**
|
|
1112
1112
|
* @public
|
|
@@ -1148,7 +1148,7 @@ export interface ListTagsForResourceResponse {
|
|
|
1148
1148
|
* <p>The tags for the resource.</p>
|
|
1149
1149
|
* @public
|
|
1150
1150
|
*/
|
|
1151
|
-
tags?: Record<string, string
|
|
1151
|
+
tags?: Record<string, string> | undefined;
|
|
1152
1152
|
}
|
|
1153
1153
|
/**
|
|
1154
1154
|
* @public
|
|
@@ -1211,12 +1211,12 @@ export interface Configuration {
|
|
|
1211
1211
|
* <p>A set of properties specified within a configuration classification.</p>
|
|
1212
1212
|
* @public
|
|
1213
1213
|
*/
|
|
1214
|
-
properties?: Record<string, string
|
|
1214
|
+
properties?: Record<string, string> | undefined;
|
|
1215
1215
|
/**
|
|
1216
1216
|
* <p>A list of additional configurations to apply within a configuration object.</p>
|
|
1217
1217
|
* @public
|
|
1218
1218
|
*/
|
|
1219
|
-
configurations?: Configuration[];
|
|
1219
|
+
configurations?: Configuration[] | undefined;
|
|
1220
1220
|
}
|
|
1221
1221
|
/**
|
|
1222
1222
|
* <p>Information about an application. Amazon EMR Serverless uses applications to run
|
|
@@ -1233,7 +1233,7 @@ export interface Application {
|
|
|
1233
1233
|
* <p>The name of the application.</p>
|
|
1234
1234
|
* @public
|
|
1235
1235
|
*/
|
|
1236
|
-
name?: string;
|
|
1236
|
+
name?: string | undefined;
|
|
1237
1237
|
/**
|
|
1238
1238
|
* <p>The ARN of the application.</p>
|
|
1239
1239
|
* @public
|
|
@@ -1258,19 +1258,19 @@ export interface Application {
|
|
|
1258
1258
|
* <p>The state details of the application.</p>
|
|
1259
1259
|
* @public
|
|
1260
1260
|
*/
|
|
1261
|
-
stateDetails?: string;
|
|
1261
|
+
stateDetails?: string | undefined;
|
|
1262
1262
|
/**
|
|
1263
1263
|
* <p>The initial capacity of the application.</p>
|
|
1264
1264
|
* @public
|
|
1265
1265
|
*/
|
|
1266
|
-
initialCapacity?: Record<string, InitialCapacityConfig
|
|
1266
|
+
initialCapacity?: Record<string, InitialCapacityConfig> | undefined;
|
|
1267
1267
|
/**
|
|
1268
1268
|
* <p>The maximum capacity of the application. This is cumulative across all workers at any
|
|
1269
1269
|
* given point in time during the lifespan of the application is created. No new resources
|
|
1270
1270
|
* will be created once any one of the defined limits is hit.</p>
|
|
1271
1271
|
* @public
|
|
1272
1272
|
*/
|
|
1273
|
-
maximumCapacity?: MaximumAllowedResources;
|
|
1273
|
+
maximumCapacity?: MaximumAllowedResources | undefined;
|
|
1274
1274
|
/**
|
|
1275
1275
|
* <p>The date and time when the application run was created.</p>
|
|
1276
1276
|
* @public
|
|
@@ -1285,38 +1285,38 @@ export interface Application {
|
|
|
1285
1285
|
* <p>The tags assigned to the application.</p>
|
|
1286
1286
|
* @public
|
|
1287
1287
|
*/
|
|
1288
|
-
tags?: Record<string, string
|
|
1288
|
+
tags?: Record<string, string> | undefined;
|
|
1289
1289
|
/**
|
|
1290
1290
|
* <p>The configuration for an application to automatically start on job submission.</p>
|
|
1291
1291
|
* @public
|
|
1292
1292
|
*/
|
|
1293
|
-
autoStartConfiguration?: AutoStartConfig;
|
|
1293
|
+
autoStartConfiguration?: AutoStartConfig | undefined;
|
|
1294
1294
|
/**
|
|
1295
1295
|
* <p>The configuration for an application to automatically stop after a certain amount of
|
|
1296
1296
|
* time being idle.</p>
|
|
1297
1297
|
* @public
|
|
1298
1298
|
*/
|
|
1299
|
-
autoStopConfiguration?: AutoStopConfig;
|
|
1299
|
+
autoStopConfiguration?: AutoStopConfig | undefined;
|
|
1300
1300
|
/**
|
|
1301
1301
|
* <p>The network configuration for customer VPC connectivity for the application.</p>
|
|
1302
1302
|
* @public
|
|
1303
1303
|
*/
|
|
1304
|
-
networkConfiguration?: NetworkConfiguration;
|
|
1304
|
+
networkConfiguration?: NetworkConfiguration | undefined;
|
|
1305
1305
|
/**
|
|
1306
1306
|
* <p>The CPU architecture of an application.</p>
|
|
1307
1307
|
* @public
|
|
1308
1308
|
*/
|
|
1309
|
-
architecture?: Architecture;
|
|
1309
|
+
architecture?: Architecture | undefined;
|
|
1310
1310
|
/**
|
|
1311
1311
|
* <p>The image configuration applied to all worker types.</p>
|
|
1312
1312
|
* @public
|
|
1313
1313
|
*/
|
|
1314
|
-
imageConfiguration?: ImageConfiguration;
|
|
1314
|
+
imageConfiguration?: ImageConfiguration | undefined;
|
|
1315
1315
|
/**
|
|
1316
1316
|
* <p>The specification applied to each worker type.</p>
|
|
1317
1317
|
* @public
|
|
1318
1318
|
*/
|
|
1319
|
-
workerTypeSpecifications?: Record<string, WorkerTypeSpecification
|
|
1319
|
+
workerTypeSpecifications?: Record<string, WorkerTypeSpecification> | undefined;
|
|
1320
1320
|
/**
|
|
1321
1321
|
* <p>The <a href="https://docs.aws.amazon.com/emr-serverless/latest/APIReference/API_Configuration.html">Configuration</a>
|
|
1322
1322
|
* specifications of an application. Each configuration consists of a classification and properties. You use this
|
|
@@ -1324,22 +1324,22 @@ export interface Application {
|
|
|
1324
1324
|
* run the <a href="https://docs.aws.amazon.com/emr-serverless/latest/APIReference/API_GetApplication.html">GetApplication</a> API operation.</p>
|
|
1325
1325
|
* @public
|
|
1326
1326
|
*/
|
|
1327
|
-
runtimeConfiguration?: Configuration[];
|
|
1327
|
+
runtimeConfiguration?: Configuration[] | undefined;
|
|
1328
1328
|
/**
|
|
1329
1329
|
* <p>The configuration setting for monitoring.</p>
|
|
1330
1330
|
* @public
|
|
1331
1331
|
*/
|
|
1332
|
-
monitoringConfiguration?: MonitoringConfiguration;
|
|
1332
|
+
monitoringConfiguration?: MonitoringConfiguration | undefined;
|
|
1333
1333
|
/**
|
|
1334
1334
|
* <p>The interactive configuration object that enables the interactive use cases for an application.</p>
|
|
1335
1335
|
* @public
|
|
1336
1336
|
*/
|
|
1337
|
-
interactiveConfiguration?: InteractiveConfiguration;
|
|
1337
|
+
interactiveConfiguration?: InteractiveConfiguration | undefined;
|
|
1338
1338
|
/**
|
|
1339
1339
|
* <p>The scheduler configuration for batch and streaming jobs running on this application. Supported with release labels emr-7.0.0 and above.</p>
|
|
1340
1340
|
* @public
|
|
1341
1341
|
*/
|
|
1342
|
-
schedulerConfiguration?: SchedulerConfiguration;
|
|
1342
|
+
schedulerConfiguration?: SchedulerConfiguration | undefined;
|
|
1343
1343
|
}
|
|
1344
1344
|
/**
|
|
1345
1345
|
* <p>A configuration specification to be used to override existing configurations.</p>
|
|
@@ -1350,12 +1350,12 @@ export interface ConfigurationOverrides {
|
|
|
1350
1350
|
* <p>The override configurations for the application.</p>
|
|
1351
1351
|
* @public
|
|
1352
1352
|
*/
|
|
1353
|
-
applicationConfiguration?: Configuration[];
|
|
1353
|
+
applicationConfiguration?: Configuration[] | undefined;
|
|
1354
1354
|
/**
|
|
1355
1355
|
* <p>The override configurations for monitoring.</p>
|
|
1356
1356
|
* @public
|
|
1357
1357
|
*/
|
|
1358
|
-
monitoringConfiguration?: MonitoringConfiguration;
|
|
1358
|
+
monitoringConfiguration?: MonitoringConfiguration | undefined;
|
|
1359
1359
|
}
|
|
1360
1360
|
/**
|
|
1361
1361
|
* @public
|
|
@@ -1365,7 +1365,7 @@ export interface CreateApplicationRequest {
|
|
|
1365
1365
|
* <p>The name of the application.</p>
|
|
1366
1366
|
* @public
|
|
1367
1367
|
*/
|
|
1368
|
-
name?: string;
|
|
1368
|
+
name?: string | undefined;
|
|
1369
1369
|
/**
|
|
1370
1370
|
* <p>The Amazon EMR release associated with the application.</p>
|
|
1371
1371
|
* @public
|
|
@@ -1381,52 +1381,52 @@ export interface CreateApplicationRequest {
|
|
|
1381
1381
|
* each request.</p>
|
|
1382
1382
|
* @public
|
|
1383
1383
|
*/
|
|
1384
|
-
clientToken?: string;
|
|
1384
|
+
clientToken?: string | undefined;
|
|
1385
1385
|
/**
|
|
1386
1386
|
* <p>The capacity to initialize when the application is created.</p>
|
|
1387
1387
|
* @public
|
|
1388
1388
|
*/
|
|
1389
|
-
initialCapacity?: Record<string, InitialCapacityConfig
|
|
1389
|
+
initialCapacity?: Record<string, InitialCapacityConfig> | undefined;
|
|
1390
1390
|
/**
|
|
1391
1391
|
* <p>The maximum capacity to allocate when the application is created. This is cumulative
|
|
1392
1392
|
* across all workers at any given point in time, not just when an application is created. No
|
|
1393
1393
|
* new resources will be created once any one of the defined limits is hit.</p>
|
|
1394
1394
|
* @public
|
|
1395
1395
|
*/
|
|
1396
|
-
maximumCapacity?: MaximumAllowedResources;
|
|
1396
|
+
maximumCapacity?: MaximumAllowedResources | undefined;
|
|
1397
1397
|
/**
|
|
1398
1398
|
* <p>The tags assigned to the application.</p>
|
|
1399
1399
|
* @public
|
|
1400
1400
|
*/
|
|
1401
|
-
tags?: Record<string, string
|
|
1401
|
+
tags?: Record<string, string> | undefined;
|
|
1402
1402
|
/**
|
|
1403
1403
|
* <p>The configuration for an application to automatically start on job submission.</p>
|
|
1404
1404
|
* @public
|
|
1405
1405
|
*/
|
|
1406
|
-
autoStartConfiguration?: AutoStartConfig;
|
|
1406
|
+
autoStartConfiguration?: AutoStartConfig | undefined;
|
|
1407
1407
|
/**
|
|
1408
1408
|
* <p>The configuration for an application to automatically stop after a certain amount of
|
|
1409
1409
|
* time being idle.</p>
|
|
1410
1410
|
* @public
|
|
1411
1411
|
*/
|
|
1412
|
-
autoStopConfiguration?: AutoStopConfig;
|
|
1412
|
+
autoStopConfiguration?: AutoStopConfig | undefined;
|
|
1413
1413
|
/**
|
|
1414
1414
|
* <p>The network configuration for customer VPC connectivity.</p>
|
|
1415
1415
|
* @public
|
|
1416
1416
|
*/
|
|
1417
|
-
networkConfiguration?: NetworkConfiguration;
|
|
1417
|
+
networkConfiguration?: NetworkConfiguration | undefined;
|
|
1418
1418
|
/**
|
|
1419
1419
|
* <p>The CPU architecture of an application.</p>
|
|
1420
1420
|
* @public
|
|
1421
1421
|
*/
|
|
1422
|
-
architecture?: Architecture;
|
|
1422
|
+
architecture?: Architecture | undefined;
|
|
1423
1423
|
/**
|
|
1424
1424
|
* <p>The image configuration for all worker types. You can either set this parameter or
|
|
1425
1425
|
* <code>imageConfiguration</code> for each worker type in
|
|
1426
1426
|
* <code>workerTypeSpecifications</code>.</p>
|
|
1427
1427
|
* @public
|
|
1428
1428
|
*/
|
|
1429
|
-
imageConfiguration?: ImageConfigurationInput;
|
|
1429
|
+
imageConfiguration?: ImageConfigurationInput | undefined;
|
|
1430
1430
|
/**
|
|
1431
1431
|
* <p>The key-value pairs that specify worker type to
|
|
1432
1432
|
* <code>WorkerTypeSpecificationInput</code>. This parameter must contain all valid worker
|
|
@@ -1437,30 +1437,30 @@ export interface CreateApplicationRequest {
|
|
|
1437
1437
|
* types.</p>
|
|
1438
1438
|
* @public
|
|
1439
1439
|
*/
|
|
1440
|
-
workerTypeSpecifications?: Record<string, WorkerTypeSpecificationInput
|
|
1440
|
+
workerTypeSpecifications?: Record<string, WorkerTypeSpecificationInput> | undefined;
|
|
1441
1441
|
/**
|
|
1442
1442
|
* <p>The <a href="https://docs.aws.amazon.com/emr-serverless/latest/APIReference/API_Configuration.html">Configuration</a>
|
|
1443
1443
|
* specifications to use when creating an application. Each configuration consists of a classification and properties.
|
|
1444
1444
|
* This configuration is applied to all the job runs submitted under the application.</p>
|
|
1445
1445
|
* @public
|
|
1446
1446
|
*/
|
|
1447
|
-
runtimeConfiguration?: Configuration[];
|
|
1447
|
+
runtimeConfiguration?: Configuration[] | undefined;
|
|
1448
1448
|
/**
|
|
1449
1449
|
* <p>The configuration setting for monitoring.</p>
|
|
1450
1450
|
* @public
|
|
1451
1451
|
*/
|
|
1452
|
-
monitoringConfiguration?: MonitoringConfiguration;
|
|
1452
|
+
monitoringConfiguration?: MonitoringConfiguration | undefined;
|
|
1453
1453
|
/**
|
|
1454
1454
|
* <p>The interactive configuration object that enables the interactive use cases
|
|
1455
1455
|
* to use when running an application.</p>
|
|
1456
1456
|
* @public
|
|
1457
1457
|
*/
|
|
1458
|
-
interactiveConfiguration?: InteractiveConfiguration;
|
|
1458
|
+
interactiveConfiguration?: InteractiveConfiguration | undefined;
|
|
1459
1459
|
/**
|
|
1460
1460
|
* <p>The scheduler configuration for batch and streaming jobs running on this application. Supported with release labels emr-7.0.0 and above.</p>
|
|
1461
1461
|
* @public
|
|
1462
1462
|
*/
|
|
1463
|
-
schedulerConfiguration?: SchedulerConfiguration;
|
|
1463
|
+
schedulerConfiguration?: SchedulerConfiguration | undefined;
|
|
1464
1464
|
}
|
|
1465
1465
|
/**
|
|
1466
1466
|
* @public
|
|
@@ -1476,47 +1476,47 @@ export interface UpdateApplicationRequest {
|
|
|
1476
1476
|
* each request.</p>
|
|
1477
1477
|
* @public
|
|
1478
1478
|
*/
|
|
1479
|
-
clientToken?: string;
|
|
1479
|
+
clientToken?: string | undefined;
|
|
1480
1480
|
/**
|
|
1481
1481
|
* <p>The capacity to initialize when the application is updated.</p>
|
|
1482
1482
|
* @public
|
|
1483
1483
|
*/
|
|
1484
|
-
initialCapacity?: Record<string, InitialCapacityConfig
|
|
1484
|
+
initialCapacity?: Record<string, InitialCapacityConfig> | undefined;
|
|
1485
1485
|
/**
|
|
1486
1486
|
* <p>The maximum capacity to allocate when the application is updated. This is cumulative
|
|
1487
1487
|
* across all workers at any given point in time during the lifespan of the application. No
|
|
1488
1488
|
* new resources will be created once any one of the defined limits is hit.</p>
|
|
1489
1489
|
* @public
|
|
1490
1490
|
*/
|
|
1491
|
-
maximumCapacity?: MaximumAllowedResources;
|
|
1491
|
+
maximumCapacity?: MaximumAllowedResources | undefined;
|
|
1492
1492
|
/**
|
|
1493
1493
|
* <p>The configuration for an application to automatically start on job submission.</p>
|
|
1494
1494
|
* @public
|
|
1495
1495
|
*/
|
|
1496
|
-
autoStartConfiguration?: AutoStartConfig;
|
|
1496
|
+
autoStartConfiguration?: AutoStartConfig | undefined;
|
|
1497
1497
|
/**
|
|
1498
1498
|
* <p>The configuration for an application to automatically stop after a certain amount of
|
|
1499
1499
|
* time being idle.</p>
|
|
1500
1500
|
* @public
|
|
1501
1501
|
*/
|
|
1502
|
-
autoStopConfiguration?: AutoStopConfig;
|
|
1502
|
+
autoStopConfiguration?: AutoStopConfig | undefined;
|
|
1503
1503
|
/**
|
|
1504
1504
|
* <p>The network configuration for customer VPC connectivity.</p>
|
|
1505
1505
|
* @public
|
|
1506
1506
|
*/
|
|
1507
|
-
networkConfiguration?: NetworkConfiguration;
|
|
1507
|
+
networkConfiguration?: NetworkConfiguration | undefined;
|
|
1508
1508
|
/**
|
|
1509
1509
|
* <p>The CPU architecture of an application.</p>
|
|
1510
1510
|
* @public
|
|
1511
1511
|
*/
|
|
1512
|
-
architecture?: Architecture;
|
|
1512
|
+
architecture?: Architecture | undefined;
|
|
1513
1513
|
/**
|
|
1514
1514
|
* <p>The image configuration to be used for all worker types. You can either set this
|
|
1515
1515
|
* parameter or <code>imageConfiguration</code> for each worker type in
|
|
1516
1516
|
* <code>WorkerTypeSpecificationInput</code>.</p>
|
|
1517
1517
|
* @public
|
|
1518
1518
|
*/
|
|
1519
|
-
imageConfiguration?: ImageConfigurationInput;
|
|
1519
|
+
imageConfiguration?: ImageConfigurationInput | undefined;
|
|
1520
1520
|
/**
|
|
1521
1521
|
* <p>The key-value pairs that specify worker type to
|
|
1522
1522
|
* <code>WorkerTypeSpecificationInput</code>. This parameter must contain all valid worker
|
|
@@ -1527,36 +1527,36 @@ export interface UpdateApplicationRequest {
|
|
|
1527
1527
|
* types.</p>
|
|
1528
1528
|
* @public
|
|
1529
1529
|
*/
|
|
1530
|
-
workerTypeSpecifications?: Record<string, WorkerTypeSpecificationInput
|
|
1530
|
+
workerTypeSpecifications?: Record<string, WorkerTypeSpecificationInput> | undefined;
|
|
1531
1531
|
/**
|
|
1532
1532
|
* <p>The interactive configuration object that contains new interactive use cases
|
|
1533
1533
|
* when the application is updated.</p>
|
|
1534
1534
|
* @public
|
|
1535
1535
|
*/
|
|
1536
|
-
interactiveConfiguration?: InteractiveConfiguration;
|
|
1536
|
+
interactiveConfiguration?: InteractiveConfiguration | undefined;
|
|
1537
1537
|
/**
|
|
1538
1538
|
* <p>The Amazon EMR release label for the application. You can change the release
|
|
1539
1539
|
* label to use a different release of Amazon EMR.</p>
|
|
1540
1540
|
* @public
|
|
1541
1541
|
*/
|
|
1542
|
-
releaseLabel?: string;
|
|
1542
|
+
releaseLabel?: string | undefined;
|
|
1543
1543
|
/**
|
|
1544
1544
|
* <p>The <a href="https://docs.aws.amazon.com/emr-serverless/latest/APIReference/API_Configuration.html">Configuration</a>
|
|
1545
1545
|
* specifications to use when updating an application. Each configuration consists of a classification and properties.
|
|
1546
1546
|
* This configuration is applied across all the job runs submitted under the application.</p>
|
|
1547
1547
|
* @public
|
|
1548
1548
|
*/
|
|
1549
|
-
runtimeConfiguration?: Configuration[];
|
|
1549
|
+
runtimeConfiguration?: Configuration[] | undefined;
|
|
1550
1550
|
/**
|
|
1551
1551
|
* <p>The configuration setting for monitoring.</p>
|
|
1552
1552
|
* @public
|
|
1553
1553
|
*/
|
|
1554
|
-
monitoringConfiguration?: MonitoringConfiguration;
|
|
1554
|
+
monitoringConfiguration?: MonitoringConfiguration | undefined;
|
|
1555
1555
|
/**
|
|
1556
1556
|
* <p>The scheduler configuration for batch and streaming jobs running on this application. Supported with release labels emr-7.0.0 and above.</p>
|
|
1557
1557
|
* @public
|
|
1558
1558
|
*/
|
|
1559
|
-
schedulerConfiguration?: SchedulerConfiguration;
|
|
1559
|
+
schedulerConfiguration?: SchedulerConfiguration | undefined;
|
|
1560
1560
|
}
|
|
1561
1561
|
/**
|
|
1562
1562
|
* @public
|
|
@@ -1589,7 +1589,7 @@ export interface JobRun {
|
|
|
1589
1589
|
* <p>The optional job run name. This doesn't have to be unique.</p>
|
|
1590
1590
|
* @public
|
|
1591
1591
|
*/
|
|
1592
|
-
name?: string;
|
|
1592
|
+
name?: string | undefined;
|
|
1593
1593
|
/**
|
|
1594
1594
|
* <p>The execution role ARN of the job run.</p>
|
|
1595
1595
|
* @public
|
|
@@ -1635,7 +1635,7 @@ export interface JobRun {
|
|
|
1635
1635
|
* <p>The configuration settings that are used to override default configuration.</p>
|
|
1636
1636
|
* @public
|
|
1637
1637
|
*/
|
|
1638
|
-
configurationOverrides?: ConfigurationOverrides;
|
|
1638
|
+
configurationOverrides?: ConfigurationOverrides | undefined;
|
|
1639
1639
|
/**
|
|
1640
1640
|
* <p>The job driver for the job run.</p>
|
|
1641
1641
|
* @public
|
|
@@ -1645,31 +1645,31 @@ export interface JobRun {
|
|
|
1645
1645
|
* <p>The tags assigned to the job run.</p>
|
|
1646
1646
|
* @public
|
|
1647
1647
|
*/
|
|
1648
|
-
tags?: Record<string, string
|
|
1648
|
+
tags?: Record<string, string> | undefined;
|
|
1649
1649
|
/**
|
|
1650
1650
|
* <p>The aggregate vCPU, memory, and storage resources used from the time the job starts to
|
|
1651
1651
|
* execute, until the time the job terminates, rounded up to the nearest second.</p>
|
|
1652
1652
|
* @public
|
|
1653
1653
|
*/
|
|
1654
|
-
totalResourceUtilization?: TotalResourceUtilization;
|
|
1654
|
+
totalResourceUtilization?: TotalResourceUtilization | undefined;
|
|
1655
1655
|
/**
|
|
1656
1656
|
* <p>The network configuration for customer VPC connectivity.</p>
|
|
1657
1657
|
* @public
|
|
1658
1658
|
*/
|
|
1659
|
-
networkConfiguration?: NetworkConfiguration;
|
|
1659
|
+
networkConfiguration?: NetworkConfiguration | undefined;
|
|
1660
1660
|
/**
|
|
1661
1661
|
* <p>The job run total execution duration in seconds. This field is only available for job
|
|
1662
1662
|
* runs in a <code>COMPLETED</code>, <code>FAILED</code>, or <code>CANCELLED</code>
|
|
1663
1663
|
* state.</p>
|
|
1664
1664
|
* @public
|
|
1665
1665
|
*/
|
|
1666
|
-
totalExecutionDurationSeconds?: number;
|
|
1666
|
+
totalExecutionDurationSeconds?: number | undefined;
|
|
1667
1667
|
/**
|
|
1668
1668
|
* <p>Returns the job run timeout value from the <code>StartJobRun</code> call. If no timeout
|
|
1669
1669
|
* was specified, then it returns the default timeout of 720 minutes.</p>
|
|
1670
1670
|
* @public
|
|
1671
1671
|
*/
|
|
1672
|
-
executionTimeoutMinutes?: number;
|
|
1672
|
+
executionTimeoutMinutes?: number | undefined;
|
|
1673
1673
|
/**
|
|
1674
1674
|
* <p>The aggregate vCPU, memory, and storage that Amazon Web Services has billed for the job
|
|
1675
1675
|
* run. The billed resources include a 1-minute minimum usage for workers, plus additional
|
|
@@ -1677,47 +1677,47 @@ export interface JobRun {
|
|
|
1677
1677
|
* pre-initialized workers.</p>
|
|
1678
1678
|
* @public
|
|
1679
1679
|
*/
|
|
1680
|
-
billedResourceUtilization?: ResourceUtilization;
|
|
1680
|
+
billedResourceUtilization?: ResourceUtilization | undefined;
|
|
1681
1681
|
/**
|
|
1682
1682
|
* <p>The mode of the job run.</p>
|
|
1683
1683
|
* @public
|
|
1684
1684
|
*/
|
|
1685
|
-
mode?: JobRunMode;
|
|
1685
|
+
mode?: JobRunMode | undefined;
|
|
1686
1686
|
/**
|
|
1687
1687
|
* <p>The retry policy of the job run.</p>
|
|
1688
1688
|
* @public
|
|
1689
1689
|
*/
|
|
1690
|
-
retryPolicy?: RetryPolicy;
|
|
1690
|
+
retryPolicy?: RetryPolicy | undefined;
|
|
1691
1691
|
/**
|
|
1692
1692
|
* <p>The attempt of the job run.</p>
|
|
1693
1693
|
* @public
|
|
1694
1694
|
*/
|
|
1695
|
-
attempt?: number;
|
|
1695
|
+
attempt?: number | undefined;
|
|
1696
1696
|
/**
|
|
1697
1697
|
* <p>The date and time of when the job run attempt was created.</p>
|
|
1698
1698
|
* @public
|
|
1699
1699
|
*/
|
|
1700
|
-
attemptCreatedAt?: Date;
|
|
1700
|
+
attemptCreatedAt?: Date | undefined;
|
|
1701
1701
|
/**
|
|
1702
1702
|
* <p>The date and time of when the job run attempt was last updated.</p>
|
|
1703
1703
|
* @public
|
|
1704
1704
|
*/
|
|
1705
|
-
attemptUpdatedAt?: Date;
|
|
1705
|
+
attemptUpdatedAt?: Date | undefined;
|
|
1706
1706
|
/**
|
|
1707
1707
|
* <p>The date and time when the job moved to the RUNNING state.</p>
|
|
1708
1708
|
* @public
|
|
1709
1709
|
*/
|
|
1710
|
-
startedAt?: Date;
|
|
1710
|
+
startedAt?: Date | undefined;
|
|
1711
1711
|
/**
|
|
1712
1712
|
* <p>The date and time when the job was terminated.</p>
|
|
1713
1713
|
* @public
|
|
1714
1714
|
*/
|
|
1715
|
-
endedAt?: Date;
|
|
1715
|
+
endedAt?: Date | undefined;
|
|
1716
1716
|
/**
|
|
1717
1717
|
* <p>The total time for a job in the QUEUED state in milliseconds.</p>
|
|
1718
1718
|
* @public
|
|
1719
1719
|
*/
|
|
1720
|
-
queuedDurationMilliseconds?: number;
|
|
1720
|
+
queuedDurationMilliseconds?: number | undefined;
|
|
1721
1721
|
}
|
|
1722
1722
|
/**
|
|
1723
1723
|
* @public
|
|
@@ -1733,7 +1733,7 @@ export interface StartJobRunRequest {
|
|
|
1733
1733
|
* request.</p>
|
|
1734
1734
|
* @public
|
|
1735
1735
|
*/
|
|
1736
|
-
clientToken?: string;
|
|
1736
|
+
clientToken?: string | undefined;
|
|
1737
1737
|
/**
|
|
1738
1738
|
* <p>The execution role ARN for the job run.</p>
|
|
1739
1739
|
* @public
|
|
@@ -1743,38 +1743,38 @@ export interface StartJobRunRequest {
|
|
|
1743
1743
|
* <p>The job driver for the job run.</p>
|
|
1744
1744
|
* @public
|
|
1745
1745
|
*/
|
|
1746
|
-
jobDriver?: JobDriver;
|
|
1746
|
+
jobDriver?: JobDriver | undefined;
|
|
1747
1747
|
/**
|
|
1748
1748
|
* <p>The configuration overrides for the job run.</p>
|
|
1749
1749
|
* @public
|
|
1750
1750
|
*/
|
|
1751
|
-
configurationOverrides?: ConfigurationOverrides;
|
|
1751
|
+
configurationOverrides?: ConfigurationOverrides | undefined;
|
|
1752
1752
|
/**
|
|
1753
1753
|
* <p>The tags assigned to the job run.</p>
|
|
1754
1754
|
* @public
|
|
1755
1755
|
*/
|
|
1756
|
-
tags?: Record<string, string
|
|
1756
|
+
tags?: Record<string, string> | undefined;
|
|
1757
1757
|
/**
|
|
1758
1758
|
* <p>The maximum duration for the job run to run. If the job run runs beyond this duration,
|
|
1759
1759
|
* it will be automatically cancelled.</p>
|
|
1760
1760
|
* @public
|
|
1761
1761
|
*/
|
|
1762
|
-
executionTimeoutMinutes?: number;
|
|
1762
|
+
executionTimeoutMinutes?: number | undefined;
|
|
1763
1763
|
/**
|
|
1764
1764
|
* <p>The optional job run name. This doesn't have to be unique.</p>
|
|
1765
1765
|
* @public
|
|
1766
1766
|
*/
|
|
1767
|
-
name?: string;
|
|
1767
|
+
name?: string | undefined;
|
|
1768
1768
|
/**
|
|
1769
1769
|
* <p>The mode of the job run when it starts.</p>
|
|
1770
1770
|
* @public
|
|
1771
1771
|
*/
|
|
1772
|
-
mode?: JobRunMode;
|
|
1772
|
+
mode?: JobRunMode | undefined;
|
|
1773
1773
|
/**
|
|
1774
1774
|
* <p>The retry policy when job run starts.</p>
|
|
1775
1775
|
* @public
|
|
1776
1776
|
*/
|
|
1777
|
-
retryPolicy?: RetryPolicy;
|
|
1777
|
+
retryPolicy?: RetryPolicy | undefined;
|
|
1778
1778
|
}
|
|
1779
1779
|
/**
|
|
1780
1780
|
* @public
|