@aws-sdk/client-emr 3.118.0 → 3.121.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.
|
@@ -12,7 +12,7 @@ export declare enum InstanceFleetType {
|
|
|
12
12
|
TASK = "TASK"
|
|
13
13
|
}
|
|
14
14
|
/**
|
|
15
|
-
* <p>EBS volume specifications such as volume type, IOPS,
|
|
15
|
+
* <p>EBS volume specifications such as volume type, IOPS, size (GiB) and throughput (MiB/s) that are
|
|
16
16
|
* requested for the EBS volume attached to an EC2 instance in the cluster.</p>
|
|
17
17
|
*/
|
|
18
18
|
export interface VolumeSpecification {
|
|
@@ -29,6 +29,10 @@ export interface VolumeSpecification {
|
|
|
29
29
|
* type is EBS-optimized, the minimum value is 10.</p>
|
|
30
30
|
*/
|
|
31
31
|
SizeInGB: number | undefined;
|
|
32
|
+
/**
|
|
33
|
+
* <p>The throughput, in mebibyte per second (MiB/s). This optional parameter can be a number from 125 - 1000 and is valid only for gp3 volumes.</p>
|
|
34
|
+
*/
|
|
35
|
+
Throughput?: number;
|
|
32
36
|
}
|
|
33
37
|
export declare namespace VolumeSpecification {
|
|
34
38
|
/**
|
|
@@ -38,16 +42,16 @@ export declare namespace VolumeSpecification {
|
|
|
38
42
|
}
|
|
39
43
|
/**
|
|
40
44
|
* <p>Configuration of requested EBS block device associated with the instance group with
|
|
41
|
-
* count of volumes that
|
|
45
|
+
* count of volumes that are associated to every instance.</p>
|
|
42
46
|
*/
|
|
43
47
|
export interface EbsBlockDeviceConfig {
|
|
44
48
|
/**
|
|
45
|
-
* <p>EBS volume specifications such as volume type, IOPS,
|
|
49
|
+
* <p>EBS volume specifications such as volume type, IOPS, size (GiB) and throughput (MiB/s) that are
|
|
46
50
|
* requested for the EBS volume attached to an EC2 instance in the cluster.</p>
|
|
47
51
|
*/
|
|
48
52
|
VolumeSpecification: VolumeSpecification | undefined;
|
|
49
53
|
/**
|
|
50
|
-
* <p>Number of EBS volumes with a specific volume configuration that
|
|
54
|
+
* <p>Number of EBS volumes with a specific volume configuration that are associated with
|
|
51
55
|
* every instance in the instance group</p>
|
|
52
56
|
*/
|
|
53
57
|
VolumesPerInstance?: number;
|
|
@@ -764,6 +768,15 @@ export interface AddJobFlowStepsInput {
|
|
|
764
768
|
* <p> A list of <a>StepConfig</a> to be executed by the job flow. </p>
|
|
765
769
|
*/
|
|
766
770
|
Steps: StepConfig[] | undefined;
|
|
771
|
+
/**
|
|
772
|
+
* <p>The Amazon Resource Name (ARN) of the runtime role for a step on the cluster. The
|
|
773
|
+
* runtime role can be a cross-account IAM role. The runtime role ARN is a combination of
|
|
774
|
+
* account ID, role name, and role type using the following format:
|
|
775
|
+
* <code>arn:partition:service:region:account:resource</code>. </p>
|
|
776
|
+
* <p>For example, <code>arn:aws:iam::1234567890:role/ReadOnly</code> is a correctly formatted
|
|
777
|
+
* runtime role ARN.</p>
|
|
778
|
+
*/
|
|
779
|
+
ExecutionRoleArn?: string;
|
|
767
780
|
}
|
|
768
781
|
export declare namespace AddJobFlowStepsInput {
|
|
769
782
|
/**
|
|
@@ -2691,6 +2704,15 @@ export interface Step {
|
|
|
2691
2704
|
* <p>The current execution status details of the cluster step.</p>
|
|
2692
2705
|
*/
|
|
2693
2706
|
Status?: StepStatus;
|
|
2707
|
+
/**
|
|
2708
|
+
* <p>The Amazon Resource Name (ARN) of the runtime role for a step on the cluster. The
|
|
2709
|
+
* runtime role can be a cross-account IAM role. The runtime role ARN is a combination of
|
|
2710
|
+
* account ID, role name, and role type using the following format:
|
|
2711
|
+
* <code>arn:partition:service:region:account:resource</code>. </p>
|
|
2712
|
+
* <p>For example, <code>arn:aws:iam::1234567890:role/ReadOnly</code> is a correctly formatted
|
|
2713
|
+
* runtime role ARN.</p>
|
|
2714
|
+
*/
|
|
2715
|
+
ExecutionRoleArn?: string;
|
|
2694
2716
|
}
|
|
2695
2717
|
export declare namespace Step {
|
|
2696
2718
|
/**
|
|
@@ -2831,7 +2853,7 @@ export declare namespace DescribeStudioOutput {
|
|
|
2831
2853
|
*/
|
|
2832
2854
|
export interface EbsBlockDevice {
|
|
2833
2855
|
/**
|
|
2834
|
-
* <p>EBS volume specifications such as volume type, IOPS,
|
|
2856
|
+
* <p>EBS volume specifications such as volume type, IOPS, size (GiB) and throughput (MiB/s) that are
|
|
2835
2857
|
* requested for the EBS volume attached to an EC2 instance in the cluster.</p>
|
|
2836
2858
|
*/
|
|
2837
2859
|
VolumeSpecification?: VolumeSpecification;
|
|
@@ -19,6 +19,8 @@ export interface VolumeSpecification {
|
|
|
19
19
|
Iops?: number;
|
|
20
20
|
|
|
21
21
|
SizeInGB: number | undefined;
|
|
22
|
+
|
|
23
|
+
Throughput?: number;
|
|
22
24
|
}
|
|
23
25
|
export declare namespace VolumeSpecification {
|
|
24
26
|
|
|
@@ -365,6 +367,8 @@ export interface AddJobFlowStepsInput {
|
|
|
365
367
|
JobFlowId: string | undefined;
|
|
366
368
|
|
|
367
369
|
Steps: StepConfig[] | undefined;
|
|
370
|
+
|
|
371
|
+
ExecutionRoleArn?: string;
|
|
368
372
|
}
|
|
369
373
|
export declare namespace AddJobFlowStepsInput {
|
|
370
374
|
|
|
@@ -1345,6 +1349,8 @@ export interface Step {
|
|
|
1345
1349
|
ActionOnFailure?: ActionOnFailure | string;
|
|
1346
1350
|
|
|
1347
1351
|
Status?: StepStatus;
|
|
1352
|
+
|
|
1353
|
+
ExecutionRoleArn?: string;
|
|
1348
1354
|
}
|
|
1349
1355
|
export declare namespace Step {
|
|
1350
1356
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-emr",
|
|
3
3
|
"description": "AWS SDK for JavaScript Emr Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.121.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",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.121.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.110.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.121.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.110.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.110.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.110.0",
|
|
@@ -28,13 +28,13 @@
|
|
|
28
28
|
"@aws-sdk/middleware-host-header": "3.110.0",
|
|
29
29
|
"@aws-sdk/middleware-logger": "3.110.0",
|
|
30
30
|
"@aws-sdk/middleware-recursion-detection": "3.110.0",
|
|
31
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
+
"@aws-sdk/middleware-retry": "3.118.1",
|
|
32
32
|
"@aws-sdk/middleware-serde": "3.110.0",
|
|
33
33
|
"@aws-sdk/middleware-signing": "3.110.0",
|
|
34
34
|
"@aws-sdk/middleware-stack": "3.110.0",
|
|
35
35
|
"@aws-sdk/middleware-user-agent": "3.110.0",
|
|
36
36
|
"@aws-sdk/node-config-provider": "3.110.0",
|
|
37
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
+
"@aws-sdk/node-http-handler": "3.118.1",
|
|
38
38
|
"@aws-sdk/protocol-http": "3.110.0",
|
|
39
39
|
"@aws-sdk/smithy-client": "3.110.0",
|
|
40
40
|
"@aws-sdk/types": "3.110.0",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"@aws-sdk/util-user-agent-node": "3.118.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|
|
51
51
|
"@aws-sdk/util-utf8-node": "3.109.0",
|
|
52
|
-
"@aws-sdk/util-waiter": "3.
|
|
52
|
+
"@aws-sdk/util-waiter": "3.118.1",
|
|
53
53
|
"tslib": "^2.3.1"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|