@aws-sdk/client-emr 3.445.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.$$metadata;
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", // required
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: string | undefined;
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: string | undefined;
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.445.0",
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,19 +21,19 @@
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.445.0",
24
+ "@aws-sdk/client-sts": "3.450.0",
25
25
  "@aws-sdk/core": "3.445.0",
26
- "@aws-sdk/credential-provider-node": "3.445.0",
27
- "@aws-sdk/middleware-host-header": "3.433.0",
28
- "@aws-sdk/middleware-logger": "3.433.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.433.0",
30
- "@aws-sdk/middleware-signing": "3.433.0",
31
- "@aws-sdk/middleware-user-agent": "3.438.0",
26
+ "@aws-sdk/credential-provider-node": "3.450.0",
27
+ "@aws-sdk/middleware-host-header": "3.449.0",
28
+ "@aws-sdk/middleware-logger": "3.449.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.449.0",
30
+ "@aws-sdk/middleware-signing": "3.449.0",
31
+ "@aws-sdk/middleware-user-agent": "3.449.0",
32
32
  "@aws-sdk/region-config-resolver": "3.433.0",
33
- "@aws-sdk/types": "3.433.0",
34
- "@aws-sdk/util-endpoints": "3.438.0",
35
- "@aws-sdk/util-user-agent-browser": "3.433.0",
36
- "@aws-sdk/util-user-agent-node": "3.437.0",
33
+ "@aws-sdk/types": "3.449.0",
34
+ "@aws-sdk/util-endpoints": "3.449.0",
35
+ "@aws-sdk/util-user-agent-browser": "3.449.0",
36
+ "@aws-sdk/util-user-agent-node": "3.449.0",
37
37
  "@smithy/config-resolver": "^2.0.16",
38
38
  "@smithy/fetch-http-handler": "^2.2.4",
39
39
  "@smithy/hash-node": "^2.0.12",