@aws-sdk/client-emr 3.449.0 → 3.450.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
CHANGED
|
@@ -164,7 +164,7 @@ try {
|
|
|
164
164
|
const data = await client.send(command);
|
|
165
165
|
// process data.
|
|
166
166
|
} catch (error) {
|
|
167
|
-
const { requestId, cfId, extendedRequestId } = error
|
|
167
|
+
const { requestId, cfId, extendedRequestId } = error.$metadata;
|
|
168
168
|
console.log({ requestId, cfId, extendedRequestId });
|
|
169
169
|
/**
|
|
170
170
|
* The keys within exceptions are also parsed.
|
|
@@ -35,7 +35,7 @@ export interface GetClusterSessionCredentialsCommandOutput extends GetClusterSes
|
|
|
35
35
|
* const client = new EMRClient(config);
|
|
36
36
|
* const input = { // GetClusterSessionCredentialsInput
|
|
37
37
|
* ClusterId: "STRING_VALUE", // required
|
|
38
|
-
* ExecutionRoleArn: "STRING_VALUE",
|
|
38
|
+
* ExecutionRoleArn: "STRING_VALUE",
|
|
39
39
|
* };
|
|
40
40
|
* const command = new GetClusterSessionCredentialsCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
@@ -3340,7 +3340,7 @@ export interface GetClusterSessionCredentialsInput {
|
|
|
3340
3340
|
* runtime role ARN is a combination of account ID, role name, and role type using the
|
|
3341
3341
|
* following format: <code>arn:partition:service:region:account:resource</code>.</p>
|
|
3342
3342
|
*/
|
|
3343
|
-
ExecutionRoleArn
|
|
3343
|
+
ExecutionRoleArn?: string;
|
|
3344
3344
|
}
|
|
3345
3345
|
/**
|
|
3346
3346
|
* @public
|
|
@@ -852,7 +852,7 @@ export interface GetAutoTerminationPolicyOutput {
|
|
|
852
852
|
export interface GetBlockPublicAccessConfigurationInput {}
|
|
853
853
|
export interface GetClusterSessionCredentialsInput {
|
|
854
854
|
ClusterId: string | undefined;
|
|
855
|
-
ExecutionRoleArn
|
|
855
|
+
ExecutionRoleArn?: string;
|
|
856
856
|
}
|
|
857
857
|
export interface GetClusterSessionCredentialsOutput {
|
|
858
858
|
Credentials?: Credentials;
|
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.450.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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.450.0",
|
|
25
25
|
"@aws-sdk/core": "3.445.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.450.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.449.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.449.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.449.0",
|