@aws-sdk/client-emr 3.451.0 → 3.458.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/README.md +54 -54
- package/dist-cjs/models/models_0.js +5 -1
- package/dist-cjs/protocols/Aws_json1_1.js +4 -0
- package/dist-es/models/models_0.js +4 -0
- package/dist-es/protocols/Aws_json1_1.js +4 -0
- package/dist-types/commands/AddInstanceFleetCommand.d.ts +1 -1
- package/dist-types/commands/CancelStepsCommand.d.ts +4 -4
- package/dist-types/commands/CreateStudioCommand.d.ts +4 -0
- package/dist-types/commands/DescribeStudioCommand.d.ts +4 -0
- package/dist-types/commands/ListInstanceFleetsCommand.d.ts +1 -1
- package/dist-types/commands/ListSupportedInstanceTypesCommand.d.ts +2 -2
- package/dist-types/commands/ModifyInstanceFleetCommand.d.ts +1 -1
- package/dist-types/commands/PutAutoTerminationPolicyCommand.d.ts +1 -1
- package/dist-types/commands/RunJobFlowCommand.d.ts +1 -1
- package/dist-types/commands/UpdateStudioCommand.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +145 -86
- package/dist-types/ts3.4/models/models_0.d.ts +15 -0
- package/package.json +3 -3
|
@@ -3002,7 +3002,10 @@ const de_Studio = (output, context) => {
|
|
|
3002
3002
|
CreationTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
3003
3003
|
DefaultS3Location: __expectString,
|
|
3004
3004
|
Description: __expectString,
|
|
3005
|
+
EncryptionKeyArn: __expectString,
|
|
3005
3006
|
EngineSecurityGroupId: __expectString,
|
|
3007
|
+
IdcInstanceArn: __expectString,
|
|
3008
|
+
IdcUserAssignment: __expectString,
|
|
3006
3009
|
IdpAuthUrl: __expectString,
|
|
3007
3010
|
IdpRelayStateParameterName: __expectString,
|
|
3008
3011
|
Name: __expectString,
|
|
@@ -3011,6 +3014,7 @@ const de_Studio = (output, context) => {
|
|
|
3011
3014
|
StudioId: __expectString,
|
|
3012
3015
|
SubnetIds: _json,
|
|
3013
3016
|
Tags: _json,
|
|
3017
|
+
TrustedIdentityPropagationEnabled: __expectBoolean,
|
|
3014
3018
|
Url: __expectString,
|
|
3015
3019
|
UserRole: __expectString,
|
|
3016
3020
|
VpcId: __expectString,
|
|
@@ -26,7 +26,7 @@ export interface AddInstanceFleetCommandOutput extends AddInstanceFleetOutput, _
|
|
|
26
26
|
* <p>Adds an instance fleet to a running cluster.</p>
|
|
27
27
|
* <note>
|
|
28
28
|
* <p>The instance fleet configuration is available only in Amazon EMR releases
|
|
29
|
-
* 4.8.0 and
|
|
29
|
+
* 4.8.0 and later, excluding 5.0.x.</p>
|
|
30
30
|
* </note>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -23,10 +23,10 @@ export interface CancelStepsCommandOutput extends CancelStepsOutput, __MetadataB
|
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
|
-
* <p>Cancels a pending step or steps in a running cluster. Available only in Amazon EMR versions 4.8.0 and
|
|
27
|
-
*
|
|
28
|
-
*
|
|
29
|
-
*
|
|
26
|
+
* <p>Cancels a pending step or steps in a running cluster. Available only in Amazon EMR versions 4.8.0 and later, excluding version 5.0.0. A maximum of 256 steps are allowed in
|
|
27
|
+
* each CancelSteps request. CancelSteps is idempotent but asynchronous; it does not guarantee
|
|
28
|
+
* that a step will be canceled, even if the request is successfully submitted. When you use
|
|
29
|
+
* Amazon EMR releases 5.28.0 and later, you can cancel steps that are in a
|
|
30
30
|
* <code>PENDING</code> or <code>RUNNING</code> state. In earlier versions of Amazon EMR, you can only cancel steps that are in a <code>PENDING</code> state. </p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -51,6 +51,10 @@ export interface CreateStudioCommandOutput extends CreateStudioOutput, __Metadat
|
|
|
51
51
|
* Value: "STRING_VALUE",
|
|
52
52
|
* },
|
|
53
53
|
* ],
|
|
54
|
+
* TrustedIdentityPropagationEnabled: true || false,
|
|
55
|
+
* IdcUserAssignment: "REQUIRED" || "OPTIONAL",
|
|
56
|
+
* IdcInstanceArn: "STRING_VALUE",
|
|
57
|
+
* EncryptionKeyArn: "STRING_VALUE",
|
|
54
58
|
* };
|
|
55
59
|
* const command = new CreateStudioCommand(input);
|
|
56
60
|
* const response = await client.send(command);
|
|
@@ -62,6 +62,10 @@ export interface DescribeStudioCommandOutput extends DescribeStudioOutput, __Met
|
|
|
62
62
|
* // Value: "STRING_VALUE",
|
|
63
63
|
* // },
|
|
64
64
|
* // ],
|
|
65
|
+
* // IdcInstanceArn: "STRING_VALUE",
|
|
66
|
+
* // TrustedIdentityPropagationEnabled: true || false,
|
|
67
|
+
* // IdcUserAssignment: "REQUIRED" || "OPTIONAL",
|
|
68
|
+
* // EncryptionKeyArn: "STRING_VALUE",
|
|
65
69
|
* // },
|
|
66
70
|
* // };
|
|
67
71
|
*
|
|
@@ -26,7 +26,7 @@ export interface ListInstanceFleetsCommandOutput extends ListInstanceFleetsOutpu
|
|
|
26
26
|
* <p>Lists all available details about the instance fleets in a cluster.</p>
|
|
27
27
|
* <note>
|
|
28
28
|
* <p>The instance fleet configuration is available only in Amazon EMR releases
|
|
29
|
-
* 4.8.0 and
|
|
29
|
+
* 4.8.0 and later, excluding 5.0.x versions.</p>
|
|
30
30
|
* </note>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -23,8 +23,8 @@ export interface ListSupportedInstanceTypesCommandOutput extends ListSupportedIn
|
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
|
-
* <p>A list of the instance types that Amazon EMR supports. You can filter the
|
|
27
|
-
* by Amazon Web Services Region and Amazon EMR release. </p>
|
|
26
|
+
* <p>A list of the instance types that Amazon EMR supports. You can filter the
|
|
27
|
+
* list by Amazon Web Services Region and Amazon EMR release. </p>
|
|
28
28
|
* @example
|
|
29
29
|
* Use a bare-bones client and the command you need to make an API call.
|
|
30
30
|
* ```javascript
|
|
@@ -28,7 +28,7 @@ export interface ModifyInstanceFleetCommandOutput extends __MetadataBearer {
|
|
|
28
28
|
* succeeds or fails atomically.</p>
|
|
29
29
|
* <note>
|
|
30
30
|
* <p>The instance fleet configuration is available only in Amazon EMR releases
|
|
31
|
-
* 4.8.0 and
|
|
31
|
+
* 4.8.0 and later, excluding 5.0.x versions.</p>
|
|
32
32
|
* </note>
|
|
33
33
|
* @example
|
|
34
34
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,7 +25,7 @@ export interface PutAutoTerminationPolicyCommandOutput extends PutAutoTerminatio
|
|
|
25
25
|
* @public
|
|
26
26
|
* <note>
|
|
27
27
|
* <p>Auto-termination is supported in Amazon EMR releases 5.30.0 and 6.1.0 and
|
|
28
|
-
*
|
|
28
|
+
* later. For more information, see <a href="https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-auto-termination-policy.html">Using an
|
|
29
29
|
* auto-termination policy</a>.</p>
|
|
30
30
|
* </note>
|
|
31
31
|
* <p>Creates or updates an auto-termination policy for an Amazon EMR cluster. An
|
|
@@ -42,7 +42,7 @@ export interface RunJobFlowCommandOutput extends RunJobFlowOutput, __MetadataBea
|
|
|
42
42
|
* <p>For long-running clusters, we recommend that you periodically store your results.</p>
|
|
43
43
|
* <note>
|
|
44
44
|
* <p>The instance fleets configuration is available only in Amazon EMR releases
|
|
45
|
-
* 4.8.0 and
|
|
45
|
+
* 4.8.0 and later, excluding 5.0.x versions. The RunJobFlow request can contain
|
|
46
46
|
* InstanceFleets parameters or InstanceGroups parameters, but not both.</p>
|
|
47
47
|
* </note>
|
|
48
48
|
* @example
|
|
@@ -39,6 +39,7 @@ export interface UpdateStudioCommandOutput extends __MetadataBearer {
|
|
|
39
39
|
* "STRING_VALUE",
|
|
40
40
|
* ],
|
|
41
41
|
* DefaultS3Location: "STRING_VALUE",
|
|
42
|
+
* EncryptionKeyArn: "STRING_VALUE",
|
|
42
43
|
* };
|
|
43
44
|
* const command = new UpdateStudioCommand(input);
|
|
44
45
|
* const response = await client.send(command);
|