@aws-sdk/client-emr-serverless 3.296.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/EMRServerless.d.ts +16 -0
- package/dist-types/EMRServerlessClient.d.ts +24 -4
- package/dist-types/commands/CancelJobRunCommand.d.ts +16 -0
- package/dist-types/commands/CreateApplicationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +16 -0
- package/dist-types/commands/GetApplicationCommand.d.ts +16 -0
- package/dist-types/commands/GetDashboardForJobRunCommand.d.ts +16 -0
- package/dist-types/commands/GetJobRunCommand.d.ts +16 -0
- package/dist-types/commands/ListApplicationsCommand.d.ts +16 -0
- package/dist-types/commands/ListJobRunsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/StartApplicationCommand.d.ts +16 -0
- package/dist-types/commands/StartJobRunCommand.d.ts +16 -0
- package/dist-types/commands/StopApplicationCommand.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/commands/UpdateApplicationCommand.d.ts +16 -0
- package/dist-types/models/EMRServerlessServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +130 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListApplicationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListJobRunsPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { EMRServerlessServiceException as __BaseException } from "./EMRServerlessServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
3
6
|
export declare enum Architecture {
|
|
4
7
|
ARM64 = "ARM64",
|
|
5
8
|
X86_64 = "X86_64"
|
|
6
9
|
}
|
|
7
10
|
/**
|
|
11
|
+
* @public
|
|
8
12
|
* <p>The configuration for an application to automatically start on job submission.</p>
|
|
9
13
|
*/
|
|
10
14
|
export interface AutoStartConfig {
|
|
@@ -15,6 +19,7 @@ export interface AutoStartConfig {
|
|
|
15
19
|
enabled?: boolean;
|
|
16
20
|
}
|
|
17
21
|
/**
|
|
22
|
+
* @public
|
|
18
23
|
* <p>The configuration for an application to automatically stop after a certain amount of
|
|
19
24
|
* time being idle.</p>
|
|
20
25
|
*/
|
|
@@ -31,6 +36,7 @@ export interface AutoStopConfig {
|
|
|
31
36
|
idleTimeoutMinutes?: number;
|
|
32
37
|
}
|
|
33
38
|
/**
|
|
39
|
+
* @public
|
|
34
40
|
* <p>The applied image configuration.</p>
|
|
35
41
|
*/
|
|
36
42
|
export interface ImageConfiguration {
|
|
@@ -45,6 +51,7 @@ export interface ImageConfiguration {
|
|
|
45
51
|
resolvedImageDigest?: string;
|
|
46
52
|
}
|
|
47
53
|
/**
|
|
54
|
+
* @public
|
|
48
55
|
* <p>The cumulative configuration requirements for every worker instance of the worker
|
|
49
56
|
* type.</p>
|
|
50
57
|
*/
|
|
@@ -63,6 +70,7 @@ export interface WorkerResourceConfig {
|
|
|
63
70
|
disk?: string;
|
|
64
71
|
}
|
|
65
72
|
/**
|
|
73
|
+
* @public
|
|
66
74
|
* <p>The initial capacity configuration per worker.</p>
|
|
67
75
|
*/
|
|
68
76
|
export interface InitialCapacityConfig {
|
|
@@ -76,6 +84,7 @@ export interface InitialCapacityConfig {
|
|
|
76
84
|
workerConfiguration?: WorkerResourceConfig;
|
|
77
85
|
}
|
|
78
86
|
/**
|
|
87
|
+
* @public
|
|
79
88
|
* <p>The maximum allowed cumulative resources for an application. No new resources will be
|
|
80
89
|
* created once the limit is hit.</p>
|
|
81
90
|
*/
|
|
@@ -94,6 +103,7 @@ export interface MaximumAllowedResources {
|
|
|
94
103
|
disk?: string;
|
|
95
104
|
}
|
|
96
105
|
/**
|
|
106
|
+
* @public
|
|
97
107
|
* <p>The network configuration for customer VPC connectivity.</p>
|
|
98
108
|
*/
|
|
99
109
|
export interface NetworkConfiguration {
|
|
@@ -106,6 +116,9 @@ export interface NetworkConfiguration {
|
|
|
106
116
|
*/
|
|
107
117
|
securityGroupIds?: string[];
|
|
108
118
|
}
|
|
119
|
+
/**
|
|
120
|
+
* @public
|
|
121
|
+
*/
|
|
109
122
|
export declare enum ApplicationState {
|
|
110
123
|
CREATED = "CREATED",
|
|
111
124
|
CREATING = "CREATING",
|
|
@@ -116,6 +129,7 @@ export declare enum ApplicationState {
|
|
|
116
129
|
TERMINATED = "TERMINATED"
|
|
117
130
|
}
|
|
118
131
|
/**
|
|
132
|
+
* @public
|
|
119
133
|
* <p>The specifications for a worker type.</p>
|
|
120
134
|
*/
|
|
121
135
|
export interface WorkerTypeSpecification {
|
|
@@ -125,6 +139,7 @@ export interface WorkerTypeSpecification {
|
|
|
125
139
|
imageConfiguration?: ImageConfiguration;
|
|
126
140
|
}
|
|
127
141
|
/**
|
|
142
|
+
* @public
|
|
128
143
|
* <p>Information about an application. EMR Serverless uses applications to run jobs.</p>
|
|
129
144
|
*/
|
|
130
145
|
export interface Application {
|
|
@@ -205,6 +220,7 @@ export interface Application {
|
|
|
205
220
|
workerTypeSpecifications?: Record<string, WorkerTypeSpecification>;
|
|
206
221
|
}
|
|
207
222
|
/**
|
|
223
|
+
* @public
|
|
208
224
|
* <p>The summary of attributes associated with an application.</p>
|
|
209
225
|
*/
|
|
210
226
|
export interface ApplicationSummary {
|
|
@@ -250,6 +266,7 @@ export interface ApplicationSummary {
|
|
|
250
266
|
architecture?: Architecture | string;
|
|
251
267
|
}
|
|
252
268
|
/**
|
|
269
|
+
* @public
|
|
253
270
|
* <p>The request could not be processed because of conflict in the current state of the
|
|
254
271
|
* resource.</p>
|
|
255
272
|
*/
|
|
@@ -262,6 +279,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
262
279
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
263
280
|
}
|
|
264
281
|
/**
|
|
282
|
+
* @public
|
|
265
283
|
* <p>The image configuration.</p>
|
|
266
284
|
*/
|
|
267
285
|
export interface ImageConfigurationInput {
|
|
@@ -272,6 +290,7 @@ export interface ImageConfigurationInput {
|
|
|
272
290
|
imageUri?: string;
|
|
273
291
|
}
|
|
274
292
|
/**
|
|
293
|
+
* @public
|
|
275
294
|
* <p>The specifications for a worker type.</p>
|
|
276
295
|
*/
|
|
277
296
|
export interface WorkerTypeSpecificationInput {
|
|
@@ -280,6 +299,9 @@ export interface WorkerTypeSpecificationInput {
|
|
|
280
299
|
*/
|
|
281
300
|
imageConfiguration?: ImageConfigurationInput;
|
|
282
301
|
}
|
|
302
|
+
/**
|
|
303
|
+
* @public
|
|
304
|
+
*/
|
|
283
305
|
export interface CreateApplicationRequest {
|
|
284
306
|
/**
|
|
285
307
|
* <p>The name of the application.</p>
|
|
@@ -342,6 +364,9 @@ export interface CreateApplicationRequest {
|
|
|
342
364
|
*/
|
|
343
365
|
workerTypeSpecifications?: Record<string, WorkerTypeSpecificationInput>;
|
|
344
366
|
}
|
|
367
|
+
/**
|
|
368
|
+
* @public
|
|
369
|
+
*/
|
|
345
370
|
export interface CreateApplicationResponse {
|
|
346
371
|
/**
|
|
347
372
|
* <p>The output contains the application ID.</p>
|
|
@@ -357,6 +382,7 @@ export interface CreateApplicationResponse {
|
|
|
357
382
|
arn: string | undefined;
|
|
358
383
|
}
|
|
359
384
|
/**
|
|
385
|
+
* @public
|
|
360
386
|
* <p>Request processing failed because of an error or failure with the service.</p>
|
|
361
387
|
*/
|
|
362
388
|
export declare class InternalServerException extends __BaseException {
|
|
@@ -368,6 +394,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
368
394
|
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
369
395
|
}
|
|
370
396
|
/**
|
|
397
|
+
* @public
|
|
371
398
|
* <p>The specified resource was not found.</p>
|
|
372
399
|
*/
|
|
373
400
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
@@ -379,6 +406,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
379
406
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
380
407
|
}
|
|
381
408
|
/**
|
|
409
|
+
* @public
|
|
382
410
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
383
411
|
*/
|
|
384
412
|
export declare class ValidationException extends __BaseException {
|
|
@@ -389,26 +417,41 @@ export declare class ValidationException extends __BaseException {
|
|
|
389
417
|
*/
|
|
390
418
|
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
391
419
|
}
|
|
420
|
+
/**
|
|
421
|
+
* @public
|
|
422
|
+
*/
|
|
392
423
|
export interface DeleteApplicationRequest {
|
|
393
424
|
/**
|
|
394
425
|
* <p>The ID of the application that will be deleted.</p>
|
|
395
426
|
*/
|
|
396
427
|
applicationId: string | undefined;
|
|
397
428
|
}
|
|
429
|
+
/**
|
|
430
|
+
* @public
|
|
431
|
+
*/
|
|
398
432
|
export interface DeleteApplicationResponse {
|
|
399
433
|
}
|
|
434
|
+
/**
|
|
435
|
+
* @public
|
|
436
|
+
*/
|
|
400
437
|
export interface GetApplicationRequest {
|
|
401
438
|
/**
|
|
402
439
|
* <p>The ID of the application that will be described.</p>
|
|
403
440
|
*/
|
|
404
441
|
applicationId: string | undefined;
|
|
405
442
|
}
|
|
443
|
+
/**
|
|
444
|
+
* @public
|
|
445
|
+
*/
|
|
406
446
|
export interface GetApplicationResponse {
|
|
407
447
|
/**
|
|
408
448
|
* <p>The output displays information about the specified application.</p>
|
|
409
449
|
*/
|
|
410
450
|
application: Application | undefined;
|
|
411
451
|
}
|
|
452
|
+
/**
|
|
453
|
+
* @public
|
|
454
|
+
*/
|
|
412
455
|
export interface ListApplicationsRequest {
|
|
413
456
|
/**
|
|
414
457
|
* <p>The token for the next set of application results.</p>
|
|
@@ -424,6 +467,9 @@ export interface ListApplicationsRequest {
|
|
|
424
467
|
*/
|
|
425
468
|
states?: (ApplicationState | string)[];
|
|
426
469
|
}
|
|
470
|
+
/**
|
|
471
|
+
* @public
|
|
472
|
+
*/
|
|
427
473
|
export interface ListApplicationsResponse {
|
|
428
474
|
/**
|
|
429
475
|
* <p>The output lists the specified applications.</p>
|
|
@@ -436,6 +482,7 @@ export interface ListApplicationsResponse {
|
|
|
436
482
|
nextToken?: string;
|
|
437
483
|
}
|
|
438
484
|
/**
|
|
485
|
+
* @public
|
|
439
486
|
* <p>The maximum number of resources per account has been reached.</p>
|
|
440
487
|
*/
|
|
441
488
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
@@ -446,22 +493,37 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
446
493
|
*/
|
|
447
494
|
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
448
495
|
}
|
|
496
|
+
/**
|
|
497
|
+
* @public
|
|
498
|
+
*/
|
|
449
499
|
export interface StartApplicationRequest {
|
|
450
500
|
/**
|
|
451
501
|
* <p>The ID of the application to start.</p>
|
|
452
502
|
*/
|
|
453
503
|
applicationId: string | undefined;
|
|
454
504
|
}
|
|
505
|
+
/**
|
|
506
|
+
* @public
|
|
507
|
+
*/
|
|
455
508
|
export interface StartApplicationResponse {
|
|
456
509
|
}
|
|
510
|
+
/**
|
|
511
|
+
* @public
|
|
512
|
+
*/
|
|
457
513
|
export interface StopApplicationRequest {
|
|
458
514
|
/**
|
|
459
515
|
* <p>The ID of the application to stop.</p>
|
|
460
516
|
*/
|
|
461
517
|
applicationId: string | undefined;
|
|
462
518
|
}
|
|
519
|
+
/**
|
|
520
|
+
* @public
|
|
521
|
+
*/
|
|
463
522
|
export interface StopApplicationResponse {
|
|
464
523
|
}
|
|
524
|
+
/**
|
|
525
|
+
* @public
|
|
526
|
+
*/
|
|
465
527
|
export interface UpdateApplicationRequest {
|
|
466
528
|
/**
|
|
467
529
|
* <p>The ID of the application to update.</p>
|
|
@@ -512,12 +574,18 @@ export interface UpdateApplicationRequest {
|
|
|
512
574
|
*/
|
|
513
575
|
workerTypeSpecifications?: Record<string, WorkerTypeSpecificationInput>;
|
|
514
576
|
}
|
|
577
|
+
/**
|
|
578
|
+
* @public
|
|
579
|
+
*/
|
|
515
580
|
export interface UpdateApplicationResponse {
|
|
516
581
|
/**
|
|
517
582
|
* <p>Information about the updated application.</p>
|
|
518
583
|
*/
|
|
519
584
|
application: Application | undefined;
|
|
520
585
|
}
|
|
586
|
+
/**
|
|
587
|
+
* @public
|
|
588
|
+
*/
|
|
521
589
|
export interface CancelJobRunRequest {
|
|
522
590
|
/**
|
|
523
591
|
* <p>The ID of the application on which the job run will be canceled.</p>
|
|
@@ -528,6 +596,9 @@ export interface CancelJobRunRequest {
|
|
|
528
596
|
*/
|
|
529
597
|
jobRunId: string | undefined;
|
|
530
598
|
}
|
|
599
|
+
/**
|
|
600
|
+
* @public
|
|
601
|
+
*/
|
|
531
602
|
export interface CancelJobRunResponse {
|
|
532
603
|
/**
|
|
533
604
|
* <p>The output contains the application ID on which the job run is cancelled.</p>
|
|
@@ -538,6 +609,9 @@ export interface CancelJobRunResponse {
|
|
|
538
609
|
*/
|
|
539
610
|
jobRunId: string | undefined;
|
|
540
611
|
}
|
|
612
|
+
/**
|
|
613
|
+
* @public
|
|
614
|
+
*/
|
|
541
615
|
export interface GetDashboardForJobRunRequest {
|
|
542
616
|
/**
|
|
543
617
|
* <p>The ID of the application.</p>
|
|
@@ -548,12 +622,18 @@ export interface GetDashboardForJobRunRequest {
|
|
|
548
622
|
*/
|
|
549
623
|
jobRunId: string | undefined;
|
|
550
624
|
}
|
|
625
|
+
/**
|
|
626
|
+
* @public
|
|
627
|
+
*/
|
|
551
628
|
export interface GetDashboardForJobRunResponse {
|
|
552
629
|
/**
|
|
553
630
|
* <p>The URL to view job run's dashboard.</p>
|
|
554
631
|
*/
|
|
555
632
|
url?: string;
|
|
556
633
|
}
|
|
634
|
+
/**
|
|
635
|
+
* @public
|
|
636
|
+
*/
|
|
557
637
|
export interface GetJobRunRequest {
|
|
558
638
|
/**
|
|
559
639
|
* <p>The ID of the application on which the job run is submitted.</p>
|
|
@@ -565,6 +645,7 @@ export interface GetJobRunRequest {
|
|
|
565
645
|
jobRunId: string | undefined;
|
|
566
646
|
}
|
|
567
647
|
/**
|
|
648
|
+
* @public
|
|
568
649
|
* <p>The managed log persistence configuration for a job run.</p>
|
|
569
650
|
*/
|
|
570
651
|
export interface ManagedPersistenceMonitoringConfiguration {
|
|
@@ -579,6 +660,7 @@ export interface ManagedPersistenceMonitoringConfiguration {
|
|
|
579
660
|
encryptionKeyArn?: string;
|
|
580
661
|
}
|
|
581
662
|
/**
|
|
663
|
+
* @public
|
|
582
664
|
* <p>The Amazon S3 configuration for monitoring log publishing. You can configure your jobs
|
|
583
665
|
* to send log information to Amazon S3.</p>
|
|
584
666
|
*/
|
|
@@ -593,6 +675,7 @@ export interface S3MonitoringConfiguration {
|
|
|
593
675
|
encryptionKeyArn?: string;
|
|
594
676
|
}
|
|
595
677
|
/**
|
|
678
|
+
* @public
|
|
596
679
|
* <p>The configuration setting for monitoring.</p>
|
|
597
680
|
*/
|
|
598
681
|
export interface MonitoringConfiguration {
|
|
@@ -606,6 +689,7 @@ export interface MonitoringConfiguration {
|
|
|
606
689
|
managedPersistenceMonitoringConfiguration?: ManagedPersistenceMonitoringConfiguration;
|
|
607
690
|
}
|
|
608
691
|
/**
|
|
692
|
+
* @public
|
|
609
693
|
* <p>The configurations for the Hive job driver.</p>
|
|
610
694
|
*/
|
|
611
695
|
export interface Hive {
|
|
@@ -623,6 +707,7 @@ export interface Hive {
|
|
|
623
707
|
parameters?: string;
|
|
624
708
|
}
|
|
625
709
|
/**
|
|
710
|
+
* @public
|
|
626
711
|
* <p>The configurations for the Spark submit job driver.</p>
|
|
627
712
|
*/
|
|
628
713
|
export interface SparkSubmit {
|
|
@@ -640,9 +725,13 @@ export interface SparkSubmit {
|
|
|
640
725
|
sparkSubmitParameters?: string;
|
|
641
726
|
}
|
|
642
727
|
/**
|
|
728
|
+
* @public
|
|
643
729
|
* <p>The driver that the job runs on.</p>
|
|
644
730
|
*/
|
|
645
731
|
export type JobDriver = JobDriver.HiveMember | JobDriver.SparkSubmitMember | JobDriver.$UnknownMember;
|
|
732
|
+
/**
|
|
733
|
+
* @public
|
|
734
|
+
*/
|
|
646
735
|
export declare namespace JobDriver {
|
|
647
736
|
/**
|
|
648
737
|
* <p>The job driver parameters specified for Spark.</p>
|
|
@@ -672,6 +761,9 @@ export declare namespace JobDriver {
|
|
|
672
761
|
}
|
|
673
762
|
const visit: <T>(value: JobDriver, visitor: Visitor<T>) => T;
|
|
674
763
|
}
|
|
764
|
+
/**
|
|
765
|
+
* @public
|
|
766
|
+
*/
|
|
675
767
|
export declare enum JobRunState {
|
|
676
768
|
CANCELLED = "CANCELLED",
|
|
677
769
|
CANCELLING = "CANCELLING",
|
|
@@ -683,6 +775,7 @@ export declare enum JobRunState {
|
|
|
683
775
|
SUCCESS = "SUCCESS"
|
|
684
776
|
}
|
|
685
777
|
/**
|
|
778
|
+
* @public
|
|
686
779
|
* <p>The aggregate vCPU, memory, and storage resources used from the time job start executing
|
|
687
780
|
* till the time job is terminated, rounded up to the nearest second.</p>
|
|
688
781
|
*/
|
|
@@ -703,6 +796,9 @@ export interface TotalResourceUtilization {
|
|
|
703
796
|
*/
|
|
704
797
|
storageGBHour?: number;
|
|
705
798
|
}
|
|
799
|
+
/**
|
|
800
|
+
* @public
|
|
801
|
+
*/
|
|
706
802
|
export interface ListJobRunsRequest {
|
|
707
803
|
/**
|
|
708
804
|
* <p>The ID of the application for which to list the job run.</p>
|
|
@@ -731,6 +827,7 @@ export interface ListJobRunsRequest {
|
|
|
731
827
|
states?: (JobRunState | string)[];
|
|
732
828
|
}
|
|
733
829
|
/**
|
|
830
|
+
* @public
|
|
734
831
|
* <p>The summary of attributes associated with a job run.</p>
|
|
735
832
|
*/
|
|
736
833
|
export interface JobRunSummary {
|
|
@@ -783,6 +880,9 @@ export interface JobRunSummary {
|
|
|
783
880
|
*/
|
|
784
881
|
type?: string;
|
|
785
882
|
}
|
|
883
|
+
/**
|
|
884
|
+
* @public
|
|
885
|
+
*/
|
|
786
886
|
export interface ListJobRunsResponse {
|
|
787
887
|
/**
|
|
788
888
|
* <p>The output lists information about the specified job runs.</p>
|
|
@@ -794,6 +894,9 @@ export interface ListJobRunsResponse {
|
|
|
794
894
|
*/
|
|
795
895
|
nextToken?: string;
|
|
796
896
|
}
|
|
897
|
+
/**
|
|
898
|
+
* @public
|
|
899
|
+
*/
|
|
797
900
|
export interface StartJobRunResponse {
|
|
798
901
|
/**
|
|
799
902
|
* <p>This output displays the application ID on which the job run was submitted.</p>
|
|
@@ -808,6 +911,9 @@ export interface StartJobRunResponse {
|
|
|
808
911
|
*/
|
|
809
912
|
arn: string | undefined;
|
|
810
913
|
}
|
|
914
|
+
/**
|
|
915
|
+
* @public
|
|
916
|
+
*/
|
|
811
917
|
export interface ListTagsForResourceRequest {
|
|
812
918
|
/**
|
|
813
919
|
* <p>The Amazon Resource Name (ARN) that identifies the resource to list the tags for.
|
|
@@ -816,12 +922,18 @@ export interface ListTagsForResourceRequest {
|
|
|
816
922
|
*/
|
|
817
923
|
resourceArn: string | undefined;
|
|
818
924
|
}
|
|
925
|
+
/**
|
|
926
|
+
* @public
|
|
927
|
+
*/
|
|
819
928
|
export interface ListTagsForResourceResponse {
|
|
820
929
|
/**
|
|
821
930
|
* <p>The tags for the resource.</p>
|
|
822
931
|
*/
|
|
823
932
|
tags?: Record<string, string>;
|
|
824
933
|
}
|
|
934
|
+
/**
|
|
935
|
+
* @public
|
|
936
|
+
*/
|
|
825
937
|
export interface TagResourceRequest {
|
|
826
938
|
/**
|
|
827
939
|
* <p>The Amazon Resource Name (ARN) that identifies the resource to list the tags for.
|
|
@@ -834,8 +946,14 @@ export interface TagResourceRequest {
|
|
|
834
946
|
*/
|
|
835
947
|
tags: Record<string, string> | undefined;
|
|
836
948
|
}
|
|
949
|
+
/**
|
|
950
|
+
* @public
|
|
951
|
+
*/
|
|
837
952
|
export interface TagResourceResponse {
|
|
838
953
|
}
|
|
954
|
+
/**
|
|
955
|
+
* @public
|
|
956
|
+
*/
|
|
839
957
|
export interface UntagResourceRequest {
|
|
840
958
|
/**
|
|
841
959
|
* <p>The Amazon Resource Name (ARN) that identifies the resource to list the tags for.
|
|
@@ -848,9 +966,13 @@ export interface UntagResourceRequest {
|
|
|
848
966
|
*/
|
|
849
967
|
tagKeys: string[] | undefined;
|
|
850
968
|
}
|
|
969
|
+
/**
|
|
970
|
+
* @public
|
|
971
|
+
*/
|
|
851
972
|
export interface UntagResourceResponse {
|
|
852
973
|
}
|
|
853
974
|
/**
|
|
975
|
+
* @public
|
|
854
976
|
* <p>A configuration specification to be used when provisioning an application. A
|
|
855
977
|
* configuration consists of a classification, properties, and optional nested configurations.
|
|
856
978
|
* A classification refers to an application-specific configuration file. Properties are the
|
|
@@ -871,6 +993,7 @@ export interface Configuration {
|
|
|
871
993
|
configurations?: Configuration[];
|
|
872
994
|
}
|
|
873
995
|
/**
|
|
996
|
+
* @public
|
|
874
997
|
* <p>A configuration specification to be used to override existing configurations.</p>
|
|
875
998
|
*/
|
|
876
999
|
export interface ConfigurationOverrides {
|
|
@@ -884,6 +1007,7 @@ export interface ConfigurationOverrides {
|
|
|
884
1007
|
monitoringConfiguration?: MonitoringConfiguration;
|
|
885
1008
|
}
|
|
886
1009
|
/**
|
|
1010
|
+
* @public
|
|
887
1011
|
* <p>Information about a job run. A job run is a unit of work, such as a Spark JAR, Hive
|
|
888
1012
|
* query, or SparkSQL query, that you submit to an EMR Serverless application.</p>
|
|
889
1013
|
*/
|
|
@@ -960,6 +1084,9 @@ export interface JobRun {
|
|
|
960
1084
|
*/
|
|
961
1085
|
totalExecutionDurationSeconds?: number;
|
|
962
1086
|
}
|
|
1087
|
+
/**
|
|
1088
|
+
* @public
|
|
1089
|
+
*/
|
|
963
1090
|
export interface StartJobRunRequest {
|
|
964
1091
|
/**
|
|
965
1092
|
* <p>The ID of the application on which to run the job.</p>
|
|
@@ -996,6 +1123,9 @@ export interface StartJobRunRequest {
|
|
|
996
1123
|
*/
|
|
997
1124
|
name?: string;
|
|
998
1125
|
}
|
|
1126
|
+
/**
|
|
1127
|
+
* @public
|
|
1128
|
+
*/
|
|
999
1129
|
export interface GetJobRunResponse {
|
|
1000
1130
|
/**
|
|
1001
1131
|
* <p>The output displays information about the job run.</p>
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
2
|
import { EMRServerlessClient } from "../EMRServerlessClient";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
3
6
|
export interface EMRServerlessPaginationConfiguration extends PaginationConfiguration {
|
|
4
7
|
client: EMRServerlessClient;
|
|
5
8
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "../commands/ListApplicationsCommand";
|
|
3
3
|
import { EMRServerlessPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListApplications(config: EMRServerlessPaginationConfiguration, input: ListApplicationsCommandInput, ...additionalArguments: any): Paginator<ListApplicationsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListJobRunsCommandInput, ListJobRunsCommandOutput } from "../commands/ListJobRunsCommand";
|
|
3
3
|
import { EMRServerlessPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListJobRuns(config: EMRServerlessPaginationConfiguration, input: ListJobRunsCommandInput, ...additionalArguments: any): Paginator<ListJobRunsCommandOutput>;
|
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.
|
|
4
|
+
"version": "3.297.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",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.297.0",
|
|
24
24
|
"@aws-sdk/config-resolver": "3.296.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.297.0",
|
|
26
26
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
27
27
|
"@aws-sdk/hash-node": "3.296.0",
|
|
28
28
|
"@aws-sdk/invalid-dependency": "3.296.0",
|