@aws-sdk/client-emr-containers 3.299.0 → 3.301.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.
@@ -27,6 +27,10 @@ export interface CancelJobRunCommandOutput extends CancelJobRunResponse, __Metad
27
27
  * import { EMRContainersClient, CancelJobRunCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
28
28
  * // const { EMRContainersClient, CancelJobRunCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
29
29
  * const client = new EMRContainersClient(config);
30
+ * const input = { // CancelJobRunRequest
31
+ * id: "STRING_VALUE", // required
32
+ * virtualClusterId: "STRING_VALUE", // required
33
+ * };
30
34
  * const command = new CancelJobRunCommand(input);
31
35
  * const response = await client.send(command);
32
36
  * ```
@@ -29,6 +29,69 @@ export interface CreateJobTemplateCommandOutput extends CreateJobTemplateRespons
29
29
  * import { EMRContainersClient, CreateJobTemplateCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
30
30
  * // const { EMRContainersClient, CreateJobTemplateCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
31
31
  * const client = new EMRContainersClient(config);
32
+ * const input = { // CreateJobTemplateRequest
33
+ * name: "STRING_VALUE", // required
34
+ * clientToken: "STRING_VALUE", // required
35
+ * jobTemplateData: { // JobTemplateData
36
+ * executionRoleArn: "STRING_VALUE", // required
37
+ * releaseLabel: "STRING_VALUE", // required
38
+ * configurationOverrides: { // ParametricConfigurationOverrides
39
+ * applicationConfiguration: [ // ConfigurationList
40
+ * { // Configuration
41
+ * classification: "STRING_VALUE", // required
42
+ * properties: { // SensitivePropertiesMap
43
+ * "<keys>": "STRING_VALUE",
44
+ * },
45
+ * configurations: [
46
+ * {
47
+ * classification: "STRING_VALUE", // required
48
+ * properties: {
49
+ * "<keys>": "STRING_VALUE",
50
+ * },
51
+ * configurations: "<ConfigurationList>",
52
+ * },
53
+ * ],
54
+ * },
55
+ * ],
56
+ * monitoringConfiguration: { // ParametricMonitoringConfiguration
57
+ * persistentAppUI: "STRING_VALUE",
58
+ * cloudWatchMonitoringConfiguration: { // ParametricCloudWatchMonitoringConfiguration
59
+ * logGroupName: "STRING_VALUE",
60
+ * logStreamNamePrefix: "STRING_VALUE",
61
+ * },
62
+ * s3MonitoringConfiguration: { // ParametricS3MonitoringConfiguration
63
+ * logUri: "STRING_VALUE",
64
+ * },
65
+ * },
66
+ * },
67
+ * jobDriver: { // JobDriver
68
+ * sparkSubmitJobDriver: { // SparkSubmitJobDriver
69
+ * entryPoint: "STRING_VALUE", // required
70
+ * entryPointArguments: [ // EntryPointArguments
71
+ * "STRING_VALUE",
72
+ * ],
73
+ * sparkSubmitParameters: "STRING_VALUE",
74
+ * },
75
+ * sparkSqlJobDriver: { // SparkSqlJobDriver
76
+ * entryPoint: "STRING_VALUE",
77
+ * sparkSqlParameters: "STRING_VALUE",
78
+ * },
79
+ * },
80
+ * parameterConfiguration: { // TemplateParameterConfigurationMap
81
+ * "<keys>": { // TemplateParameterConfiguration
82
+ * type: "NUMBER" || "STRING",
83
+ * defaultValue: "STRING_VALUE",
84
+ * },
85
+ * },
86
+ * jobTags: { // TagMap
87
+ * "<keys>": "STRING_VALUE",
88
+ * },
89
+ * },
90
+ * tags: {
91
+ * "<keys>": "STRING_VALUE",
92
+ * },
93
+ * kmsKeyArn: "STRING_VALUE",
94
+ * };
32
95
  * const command = new CreateJobTemplateCommand(input);
33
96
  * const response = await client.send(command);
34
97
  * ```
@@ -28,6 +28,47 @@ export interface CreateManagedEndpointCommandOutput extends CreateManagedEndpoin
28
28
  * import { EMRContainersClient, CreateManagedEndpointCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
29
29
  * // const { EMRContainersClient, CreateManagedEndpointCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
30
30
  * const client = new EMRContainersClient(config);
31
+ * const input = { // CreateManagedEndpointRequest
32
+ * name: "STRING_VALUE", // required
33
+ * virtualClusterId: "STRING_VALUE", // required
34
+ * type: "STRING_VALUE", // required
35
+ * releaseLabel: "STRING_VALUE", // required
36
+ * executionRoleArn: "STRING_VALUE", // required
37
+ * certificateArn: "STRING_VALUE",
38
+ * configurationOverrides: { // ConfigurationOverrides
39
+ * applicationConfiguration: [ // ConfigurationList
40
+ * { // Configuration
41
+ * classification: "STRING_VALUE", // required
42
+ * properties: { // SensitivePropertiesMap
43
+ * "<keys>": "STRING_VALUE",
44
+ * },
45
+ * configurations: [
46
+ * {
47
+ * classification: "STRING_VALUE", // required
48
+ * properties: {
49
+ * "<keys>": "STRING_VALUE",
50
+ * },
51
+ * configurations: "<ConfigurationList>",
52
+ * },
53
+ * ],
54
+ * },
55
+ * ],
56
+ * monitoringConfiguration: { // MonitoringConfiguration
57
+ * persistentAppUI: "ENABLED" || "DISABLED",
58
+ * cloudWatchMonitoringConfiguration: { // CloudWatchMonitoringConfiguration
59
+ * logGroupName: "STRING_VALUE", // required
60
+ * logStreamNamePrefix: "STRING_VALUE",
61
+ * },
62
+ * s3MonitoringConfiguration: { // S3MonitoringConfiguration
63
+ * logUri: "STRING_VALUE", // required
64
+ * },
65
+ * },
66
+ * },
67
+ * clientToken: "STRING_VALUE", // required
68
+ * tags: { // TagMap
69
+ * "<keys>": "STRING_VALUE",
70
+ * },
71
+ * };
31
72
  * const command = new CreateManagedEndpointCommand(input);
32
73
  * const response = await client.send(command);
33
74
  * ```
@@ -29,6 +29,22 @@ export interface CreateVirtualClusterCommandOutput extends CreateVirtualClusterR
29
29
  * import { EMRContainersClient, CreateVirtualClusterCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
30
30
  * // const { EMRContainersClient, CreateVirtualClusterCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
31
31
  * const client = new EMRContainersClient(config);
32
+ * const input = { // CreateVirtualClusterRequest
33
+ * name: "STRING_VALUE", // required
34
+ * containerProvider: { // ContainerProvider
35
+ * type: "EKS", // required
36
+ * id: "STRING_VALUE", // required
37
+ * info: { // ContainerInfo Union: only one key present
38
+ * eksInfo: { // EksInfo
39
+ * namespace: "STRING_VALUE",
40
+ * },
41
+ * },
42
+ * },
43
+ * clientToken: "STRING_VALUE", // required
44
+ * tags: { // TagMap
45
+ * "<keys>": "STRING_VALUE",
46
+ * },
47
+ * };
32
48
  * const command = new CreateVirtualClusterCommand(input);
33
49
  * const response = await client.send(command);
34
50
  * ```
@@ -29,6 +29,9 @@ export interface DeleteJobTemplateCommandOutput extends DeleteJobTemplateRespons
29
29
  * import { EMRContainersClient, DeleteJobTemplateCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
30
30
  * // const { EMRContainersClient, DeleteJobTemplateCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
31
31
  * const client = new EMRContainersClient(config);
32
+ * const input = { // DeleteJobTemplateRequest
33
+ * id: "STRING_VALUE", // required
34
+ * };
32
35
  * const command = new DeleteJobTemplateCommand(input);
33
36
  * const response = await client.send(command);
34
37
  * ```
@@ -28,6 +28,10 @@ export interface DeleteManagedEndpointCommandOutput extends DeleteManagedEndpoin
28
28
  * import { EMRContainersClient, DeleteManagedEndpointCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
29
29
  * // const { EMRContainersClient, DeleteManagedEndpointCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
30
30
  * const client = new EMRContainersClient(config);
31
+ * const input = { // DeleteManagedEndpointRequest
32
+ * id: "STRING_VALUE", // required
33
+ * virtualClusterId: "STRING_VALUE", // required
34
+ * };
31
35
  * const command = new DeleteManagedEndpointCommand(input);
32
36
  * const response = await client.send(command);
33
37
  * ```
@@ -29,6 +29,9 @@ export interface DeleteVirtualClusterCommandOutput extends DeleteVirtualClusterR
29
29
  * import { EMRContainersClient, DeleteVirtualClusterCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
30
30
  * // const { EMRContainersClient, DeleteVirtualClusterCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
31
31
  * const client = new EMRContainersClient(config);
32
+ * const input = { // DeleteVirtualClusterRequest
33
+ * id: "STRING_VALUE", // required
34
+ * };
32
35
  * const command = new DeleteVirtualClusterCommand(input);
33
36
  * const response = await client.send(command);
34
37
  * ```
@@ -27,6 +27,10 @@ export interface DescribeJobRunCommandOutput extends DescribeJobRunResponse, __M
27
27
  * import { EMRContainersClient, DescribeJobRunCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
28
28
  * // const { EMRContainersClient, DescribeJobRunCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
29
29
  * const client = new EMRContainersClient(config);
30
+ * const input = { // DescribeJobRunRequest
31
+ * id: "STRING_VALUE", // required
32
+ * virtualClusterId: "STRING_VALUE", // required
33
+ * };
30
34
  * const command = new DescribeJobRunCommand(input);
31
35
  * const response = await client.send(command);
32
36
  * ```
@@ -29,6 +29,9 @@ export interface DescribeJobTemplateCommandOutput extends DescribeJobTemplateRes
29
29
  * import { EMRContainersClient, DescribeJobTemplateCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
30
30
  * // const { EMRContainersClient, DescribeJobTemplateCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
31
31
  * const client = new EMRContainersClient(config);
32
+ * const input = { // DescribeJobTemplateRequest
33
+ * id: "STRING_VALUE", // required
34
+ * };
32
35
  * const command = new DescribeJobTemplateCommand(input);
33
36
  * const response = await client.send(command);
34
37
  * ```
@@ -28,6 +28,10 @@ export interface DescribeManagedEndpointCommandOutput extends DescribeManagedEnd
28
28
  * import { EMRContainersClient, DescribeManagedEndpointCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
29
29
  * // const { EMRContainersClient, DescribeManagedEndpointCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
30
30
  * const client = new EMRContainersClient(config);
31
+ * const input = { // DescribeManagedEndpointRequest
32
+ * id: "STRING_VALUE", // required
33
+ * virtualClusterId: "STRING_VALUE", // required
34
+ * };
31
35
  * const command = new DescribeManagedEndpointCommand(input);
32
36
  * const response = await client.send(command);
33
37
  * ```
@@ -31,6 +31,9 @@ export interface DescribeVirtualClusterCommandOutput extends DescribeVirtualClus
31
31
  * import { EMRContainersClient, DescribeVirtualClusterCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
32
32
  * // const { EMRContainersClient, DescribeVirtualClusterCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
33
33
  * const client = new EMRContainersClient(config);
34
+ * const input = { // DescribeVirtualClusterRequest
35
+ * id: "STRING_VALUE", // required
36
+ * };
34
37
  * const command = new DescribeVirtualClusterCommand(input);
35
38
  * const response = await client.send(command);
36
39
  * ```
@@ -27,6 +27,17 @@ export interface ListJobRunsCommandOutput extends ListJobRunsResponse, __Metadat
27
27
  * import { EMRContainersClient, ListJobRunsCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
28
28
  * // const { EMRContainersClient, ListJobRunsCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
29
29
  * const client = new EMRContainersClient(config);
30
+ * const input = { // ListJobRunsRequest
31
+ * virtualClusterId: "STRING_VALUE", // required
32
+ * createdBefore: new Date("TIMESTAMP"),
33
+ * createdAfter: new Date("TIMESTAMP"),
34
+ * name: "STRING_VALUE",
35
+ * states: [ // JobRunStates
36
+ * "PENDING" || "SUBMITTED" || "RUNNING" || "FAILED" || "CANCELLED" || "CANCEL_PENDING" || "COMPLETED",
37
+ * ],
38
+ * maxResults: Number("int"),
39
+ * nextToken: "STRING_VALUE",
40
+ * };
30
41
  * const command = new ListJobRunsCommand(input);
31
42
  * const response = await client.send(command);
32
43
  * ```
@@ -29,6 +29,12 @@ export interface ListJobTemplatesCommandOutput extends ListJobTemplatesResponse,
29
29
  * import { EMRContainersClient, ListJobTemplatesCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
30
30
  * // const { EMRContainersClient, ListJobTemplatesCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
31
31
  * const client = new EMRContainersClient(config);
32
+ * const input = { // ListJobTemplatesRequest
33
+ * createdAfter: new Date("TIMESTAMP"),
34
+ * createdBefore: new Date("TIMESTAMP"),
35
+ * maxResults: Number("int"),
36
+ * nextToken: "STRING_VALUE",
37
+ * };
32
38
  * const command = new ListJobTemplatesCommand(input);
33
39
  * const response = await client.send(command);
34
40
  * ```
@@ -28,6 +28,19 @@ export interface ListManagedEndpointsCommandOutput extends ListManagedEndpointsR
28
28
  * import { EMRContainersClient, ListManagedEndpointsCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
29
29
  * // const { EMRContainersClient, ListManagedEndpointsCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
30
30
  * const client = new EMRContainersClient(config);
31
+ * const input = { // ListManagedEndpointsRequest
32
+ * virtualClusterId: "STRING_VALUE", // required
33
+ * createdBefore: new Date("TIMESTAMP"),
34
+ * createdAfter: new Date("TIMESTAMP"),
35
+ * types: [ // EndpointTypes
36
+ * "STRING_VALUE",
37
+ * ],
38
+ * states: [ // EndpointStates
39
+ * "CREATING" || "ACTIVE" || "TERMINATING" || "TERMINATED" || "TERMINATED_WITH_ERRORS",
40
+ * ],
41
+ * maxResults: Number("int"),
42
+ * nextToken: "STRING_VALUE",
43
+ * };
31
44
  * const command = new ListManagedEndpointsCommand(input);
32
45
  * const response = await client.send(command);
33
46
  * ```
@@ -26,6 +26,9 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
26
26
  * import { EMRContainersClient, ListTagsForResourceCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
27
27
  * // const { EMRContainersClient, ListTagsForResourceCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
28
28
  * const client = new EMRContainersClient(config);
29
+ * const input = { // ListTagsForResourceRequest
30
+ * resourceArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new ListTagsForResourceCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -31,6 +31,17 @@ export interface ListVirtualClustersCommandOutput extends ListVirtualClustersRes
31
31
  * import { EMRContainersClient, ListVirtualClustersCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
32
32
  * // const { EMRContainersClient, ListVirtualClustersCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
33
33
  * const client = new EMRContainersClient(config);
34
+ * const input = { // ListVirtualClustersRequest
35
+ * containerProviderId: "STRING_VALUE",
36
+ * containerProviderType: "EKS",
37
+ * createdAfter: new Date("TIMESTAMP"),
38
+ * createdBefore: new Date("TIMESTAMP"),
39
+ * states: [ // VirtualClusterStates
40
+ * "RUNNING" || "TERMINATING" || "TERMINATED" || "ARRESTED",
41
+ * ],
42
+ * maxResults: Number("int"),
43
+ * nextToken: "STRING_VALUE",
44
+ * };
34
45
  * const command = new ListVirtualClustersCommand(input);
35
46
  * const response = await client.send(command);
36
47
  * ```
@@ -27,6 +27,65 @@ export interface StartJobRunCommandOutput extends StartJobRunResponse, __Metadat
27
27
  * import { EMRContainersClient, StartJobRunCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
28
28
  * // const { EMRContainersClient, StartJobRunCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
29
29
  * const client = new EMRContainersClient(config);
30
+ * const input = { // StartJobRunRequest
31
+ * name: "STRING_VALUE",
32
+ * virtualClusterId: "STRING_VALUE", // required
33
+ * clientToken: "STRING_VALUE", // required
34
+ * executionRoleArn: "STRING_VALUE",
35
+ * releaseLabel: "STRING_VALUE",
36
+ * jobDriver: { // JobDriver
37
+ * sparkSubmitJobDriver: { // SparkSubmitJobDriver
38
+ * entryPoint: "STRING_VALUE", // required
39
+ * entryPointArguments: [ // EntryPointArguments
40
+ * "STRING_VALUE",
41
+ * ],
42
+ * sparkSubmitParameters: "STRING_VALUE",
43
+ * },
44
+ * sparkSqlJobDriver: { // SparkSqlJobDriver
45
+ * entryPoint: "STRING_VALUE",
46
+ * sparkSqlParameters: "STRING_VALUE",
47
+ * },
48
+ * },
49
+ * configurationOverrides: { // ConfigurationOverrides
50
+ * applicationConfiguration: [ // ConfigurationList
51
+ * { // Configuration
52
+ * classification: "STRING_VALUE", // required
53
+ * properties: { // SensitivePropertiesMap
54
+ * "<keys>": "STRING_VALUE",
55
+ * },
56
+ * configurations: [
57
+ * {
58
+ * classification: "STRING_VALUE", // required
59
+ * properties: {
60
+ * "<keys>": "STRING_VALUE",
61
+ * },
62
+ * configurations: "<ConfigurationList>",
63
+ * },
64
+ * ],
65
+ * },
66
+ * ],
67
+ * monitoringConfiguration: { // MonitoringConfiguration
68
+ * persistentAppUI: "ENABLED" || "DISABLED",
69
+ * cloudWatchMonitoringConfiguration: { // CloudWatchMonitoringConfiguration
70
+ * logGroupName: "STRING_VALUE", // required
71
+ * logStreamNamePrefix: "STRING_VALUE",
72
+ * },
73
+ * s3MonitoringConfiguration: { // S3MonitoringConfiguration
74
+ * logUri: "STRING_VALUE", // required
75
+ * },
76
+ * },
77
+ * },
78
+ * tags: { // TagMap
79
+ * "<keys>": "STRING_VALUE",
80
+ * },
81
+ * jobTemplateId: "STRING_VALUE",
82
+ * jobTemplateParameters: { // TemplateParameterInputMap
83
+ * "<keys>": "STRING_VALUE",
84
+ * },
85
+ * retryPolicyConfiguration: { // RetryPolicyConfiguration
86
+ * maxAttempts: Number("int"), // required
87
+ * },
88
+ * };
30
89
  * const command = new StartJobRunCommand(input);
31
90
  * const response = await client.send(command);
32
91
  * ```
@@ -33,6 +33,12 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
33
33
  * import { EMRContainersClient, TagResourceCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
34
34
  * // const { EMRContainersClient, TagResourceCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
35
35
  * const client = new EMRContainersClient(config);
36
+ * const input = { // TagResourceRequest
37
+ * resourceArn: "STRING_VALUE", // required
38
+ * tags: { // TagMap // required
39
+ * "<keys>": "STRING_VALUE",
40
+ * },
41
+ * };
36
42
  * const command = new TagResourceCommand(input);
37
43
  * const response = await client.send(command);
38
44
  * ```
@@ -26,6 +26,12 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
26
26
  * import { EMRContainersClient, UntagResourceCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
27
27
  * // const { EMRContainersClient, UntagResourceCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
28
28
  * const client = new EMRContainersClient(config);
29
+ * const input = { // UntagResourceRequest
30
+ * resourceArn: "STRING_VALUE", // required
31
+ * tagKeys: [ // TagKeyList // required
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * };
29
35
  * const command = new UntagResourceCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-emr-containers",
3
3
  "description": "AWS SDK for JavaScript Emr Containers Client for Node.js, Browser and React Native",
4
- "version": "3.299.0",
4
+ "version": "3.301.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.299.0",
25
- "@aws-sdk/config-resolver": "3.299.0",
26
- "@aws-sdk/credential-provider-node": "3.299.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
+ "@aws-sdk/config-resolver": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",
@@ -32,12 +32,12 @@
32
32
  "@aws-sdk/middleware-host-header": "3.296.0",
33
33
  "@aws-sdk/middleware-logger": "3.296.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.296.0",
35
+ "@aws-sdk/middleware-retry": "3.300.0",
36
36
  "@aws-sdk/middleware-serde": "3.296.0",
37
37
  "@aws-sdk/middleware-signing": "3.299.0",
38
38
  "@aws-sdk/middleware-stack": "3.296.0",
39
39
  "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.296.0",
40
+ "@aws-sdk/node-config-provider": "3.300.0",
41
41
  "@aws-sdk/node-http-handler": "3.296.0",
42
42
  "@aws-sdk/protocol-http": "3.296.0",
43
43
  "@aws-sdk/smithy-client": "3.296.0",
@@ -47,11 +47,11 @@
47
47
  "@aws-sdk/util-body-length-browser": "3.295.0",
48
48
  "@aws-sdk/util-body-length-node": "3.295.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.299.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
51
  "@aws-sdk/util-endpoints": "3.296.0",
52
52
  "@aws-sdk/util-retry": "3.296.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.299.0",
54
+ "@aws-sdk/util-user-agent-node": "3.300.0",
55
55
  "@aws-sdk/util-utf8": "3.295.0",
56
56
  "tslib": "^2.5.0",
57
57
  "uuid": "^8.3.2"