@aws-sdk/client-emr-serverless 3.300.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.
- package/dist-types/commands/CancelJobRunCommand.d.ts +1 -1
- package/dist-types/commands/CreateApplicationCommand.d.ts +14 -14
- package/dist-types/commands/DeleteApplicationCommand.d.ts +1 -1
- package/dist-types/commands/GetApplicationCommand.d.ts +1 -1
- package/dist-types/commands/GetDashboardForJobRunCommand.d.ts +1 -1
- package/dist-types/commands/GetJobRunCommand.d.ts +1 -1
- package/dist-types/commands/ListApplicationsCommand.d.ts +2 -2
- package/dist-types/commands/ListJobRunsCommand.d.ts +2 -2
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/StartApplicationCommand.d.ts +1 -1
- package/dist-types/commands/StartJobRunCommand.d.ts +14 -16
- package/dist-types/commands/StopApplicationCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateApplicationCommand.d.ts +13 -13
- package/package.json +3 -3
|
@@ -26,7 +26,7 @@ export interface CancelJobRunCommandOutput extends CancelJobRunResponse, __Metad
|
|
|
26
26
|
* import { EMRServerlessClient, CancelJobRunCommand } from "@aws-sdk/client-emr-serverless"; // ES Modules import
|
|
27
27
|
* // const { EMRServerlessClient, CancelJobRunCommand } = require("@aws-sdk/client-emr-serverless"); // CommonJS import
|
|
28
28
|
* const client = new EMRServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CancelJobRunRequest
|
|
30
30
|
* applicationId: "STRING_VALUE", // required
|
|
31
31
|
* jobRunId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,50 +26,50 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
|
|
|
26
26
|
* import { EMRServerlessClient, CreateApplicationCommand } from "@aws-sdk/client-emr-serverless"; // ES Modules import
|
|
27
27
|
* // const { EMRServerlessClient, CreateApplicationCommand } = require("@aws-sdk/client-emr-serverless"); // CommonJS import
|
|
28
28
|
* const client = new EMRServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreateApplicationRequest
|
|
30
30
|
* name: "STRING_VALUE",
|
|
31
31
|
* releaseLabel: "STRING_VALUE", // required
|
|
32
32
|
* type: "STRING_VALUE", // required
|
|
33
33
|
* clientToken: "STRING_VALUE", // required
|
|
34
|
-
* initialCapacity: {
|
|
35
|
-
* "<keys>": {
|
|
34
|
+
* initialCapacity: { // InitialCapacityConfigMap
|
|
35
|
+
* "<keys>": { // InitialCapacityConfig
|
|
36
36
|
* workerCount: Number("long"), // required
|
|
37
|
-
* workerConfiguration: {
|
|
37
|
+
* workerConfiguration: { // WorkerResourceConfig
|
|
38
38
|
* cpu: "STRING_VALUE", // required
|
|
39
39
|
* memory: "STRING_VALUE", // required
|
|
40
40
|
* disk: "STRING_VALUE",
|
|
41
41
|
* },
|
|
42
42
|
* },
|
|
43
43
|
* },
|
|
44
|
-
* maximumCapacity: {
|
|
44
|
+
* maximumCapacity: { // MaximumAllowedResources
|
|
45
45
|
* cpu: "STRING_VALUE", // required
|
|
46
46
|
* memory: "STRING_VALUE", // required
|
|
47
47
|
* disk: "STRING_VALUE",
|
|
48
48
|
* },
|
|
49
|
-
* tags: {
|
|
49
|
+
* tags: { // TagMap
|
|
50
50
|
* "<keys>": "STRING_VALUE",
|
|
51
51
|
* },
|
|
52
|
-
* autoStartConfiguration: {
|
|
52
|
+
* autoStartConfiguration: { // AutoStartConfig
|
|
53
53
|
* enabled: true || false,
|
|
54
54
|
* },
|
|
55
|
-
* autoStopConfiguration: {
|
|
55
|
+
* autoStopConfiguration: { // AutoStopConfig
|
|
56
56
|
* enabled: true || false,
|
|
57
57
|
* idleTimeoutMinutes: Number("int"),
|
|
58
58
|
* },
|
|
59
|
-
* networkConfiguration: {
|
|
60
|
-
* subnetIds: [
|
|
59
|
+
* networkConfiguration: { // NetworkConfiguration
|
|
60
|
+
* subnetIds: [ // SubnetIds
|
|
61
61
|
* "STRING_VALUE",
|
|
62
62
|
* ],
|
|
63
|
-
* securityGroupIds: [
|
|
63
|
+
* securityGroupIds: [ // SecurityGroupIds
|
|
64
64
|
* "STRING_VALUE",
|
|
65
65
|
* ],
|
|
66
66
|
* },
|
|
67
67
|
* architecture: "STRING_VALUE",
|
|
68
|
-
* imageConfiguration: {
|
|
68
|
+
* imageConfiguration: { // ImageConfigurationInput
|
|
69
69
|
* imageUri: "STRING_VALUE",
|
|
70
70
|
* },
|
|
71
|
-
* workerTypeSpecifications: {
|
|
72
|
-
* "<keys>": {
|
|
71
|
+
* workerTypeSpecifications: { // WorkerTypeSpecificationInputMap
|
|
72
|
+
* "<keys>": { // WorkerTypeSpecificationInput
|
|
73
73
|
* imageConfiguration: {
|
|
74
74
|
* imageUri: "STRING_VALUE",
|
|
75
75
|
* },
|
|
@@ -27,7 +27,7 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons
|
|
|
27
27
|
* import { EMRServerlessClient, DeleteApplicationCommand } from "@aws-sdk/client-emr-serverless"; // ES Modules import
|
|
28
28
|
* // const { EMRServerlessClient, DeleteApplicationCommand } = require("@aws-sdk/client-emr-serverless"); // CommonJS import
|
|
29
29
|
* const client = new EMRServerlessClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DeleteApplicationRequest
|
|
31
31
|
* applicationId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteApplicationCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface GetApplicationCommandOutput extends GetApplicationResponse, __M
|
|
|
26
26
|
* import { EMRServerlessClient, GetApplicationCommand } from "@aws-sdk/client-emr-serverless"; // ES Modules import
|
|
27
27
|
* // const { EMRServerlessClient, GetApplicationCommand } = require("@aws-sdk/client-emr-serverless"); // CommonJS import
|
|
28
28
|
* const client = new EMRServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetApplicationRequest
|
|
30
30
|
* applicationId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetApplicationCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface GetDashboardForJobRunCommandOutput extends GetDashboardForJobRu
|
|
|
26
26
|
* import { EMRServerlessClient, GetDashboardForJobRunCommand } from "@aws-sdk/client-emr-serverless"; // ES Modules import
|
|
27
27
|
* // const { EMRServerlessClient, GetDashboardForJobRunCommand } = require("@aws-sdk/client-emr-serverless"); // CommonJS import
|
|
28
28
|
* const client = new EMRServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetDashboardForJobRunRequest
|
|
30
30
|
* applicationId: "STRING_VALUE", // required
|
|
31
31
|
* jobRunId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface GetJobRunCommandOutput extends GetJobRunResponse, __MetadataBea
|
|
|
26
26
|
* import { EMRServerlessClient, GetJobRunCommand } from "@aws-sdk/client-emr-serverless"; // ES Modules import
|
|
27
27
|
* // const { EMRServerlessClient, GetJobRunCommand } = require("@aws-sdk/client-emr-serverless"); // CommonJS import
|
|
28
28
|
* const client = new EMRServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetJobRunRequest
|
|
30
30
|
* applicationId: "STRING_VALUE", // required
|
|
31
31
|
* jobRunId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,10 +26,10 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse,
|
|
|
26
26
|
* import { EMRServerlessClient, ListApplicationsCommand } from "@aws-sdk/client-emr-serverless"; // ES Modules import
|
|
27
27
|
* // const { EMRServerlessClient, ListApplicationsCommand } = require("@aws-sdk/client-emr-serverless"); // CommonJS import
|
|
28
28
|
* const client = new EMRServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListApplicationsRequest
|
|
30
30
|
* nextToken: "STRING_VALUE",
|
|
31
31
|
* maxResults: Number("int"),
|
|
32
|
-
* states: [
|
|
32
|
+
* states: [ // ApplicationStateSet
|
|
33
33
|
* "STRING_VALUE",
|
|
34
34
|
* ],
|
|
35
35
|
* };
|
|
@@ -26,13 +26,13 @@ export interface ListJobRunsCommandOutput extends ListJobRunsResponse, __Metadat
|
|
|
26
26
|
* import { EMRServerlessClient, ListJobRunsCommand } from "@aws-sdk/client-emr-serverless"; // ES Modules import
|
|
27
27
|
* // const { EMRServerlessClient, ListJobRunsCommand } = require("@aws-sdk/client-emr-serverless"); // CommonJS import
|
|
28
28
|
* const client = new EMRServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListJobRunsRequest
|
|
30
30
|
* applicationId: "STRING_VALUE", // required
|
|
31
31
|
* nextToken: "STRING_VALUE",
|
|
32
32
|
* maxResults: Number("int"),
|
|
33
33
|
* createdAtAfter: new Date("TIMESTAMP"),
|
|
34
34
|
* createdAtBefore: new Date("TIMESTAMP"),
|
|
35
|
-
* states: [
|
|
35
|
+
* states: [ // JobRunStateSet
|
|
36
36
|
* "STRING_VALUE",
|
|
37
37
|
* ],
|
|
38
38
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { EMRServerlessClient, ListTagsForResourceCommand } from "@aws-sdk/client-emr-serverless"; // ES Modules import
|
|
27
27
|
* // const { EMRServerlessClient, ListTagsForResourceCommand } = require("@aws-sdk/client-emr-serverless"); // CommonJS import
|
|
28
28
|
* const client = new EMRServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListTagsForResourceRequest
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface StartApplicationCommandOutput extends StartApplicationResponse,
|
|
|
26
26
|
* import { EMRServerlessClient, StartApplicationCommand } from "@aws-sdk/client-emr-serverless"; // ES Modules import
|
|
27
27
|
* // const { EMRServerlessClient, StartApplicationCommand } = require("@aws-sdk/client-emr-serverless"); // CommonJS import
|
|
28
28
|
* const client = new EMRServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // StartApplicationRequest
|
|
30
30
|
* applicationId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new StartApplicationCommand(input);
|
|
@@ -26,29 +26,29 @@ export interface StartJobRunCommandOutput extends StartJobRunResponse, __Metadat
|
|
|
26
26
|
* import { EMRServerlessClient, StartJobRunCommand } from "@aws-sdk/client-emr-serverless"; // ES Modules import
|
|
27
27
|
* // const { EMRServerlessClient, StartJobRunCommand } = require("@aws-sdk/client-emr-serverless"); // CommonJS import
|
|
28
28
|
* const client = new EMRServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // StartJobRunRequest
|
|
30
30
|
* applicationId: "STRING_VALUE", // required
|
|
31
31
|
* clientToken: "STRING_VALUE", // required
|
|
32
32
|
* executionRoleArn: "STRING_VALUE", // required
|
|
33
|
-
* jobDriver: { // Union: only one key present
|
|
34
|
-
* sparkSubmit: {
|
|
33
|
+
* jobDriver: { // JobDriver Union: only one key present
|
|
34
|
+
* sparkSubmit: { // SparkSubmit
|
|
35
35
|
* entryPoint: "STRING_VALUE", // required
|
|
36
|
-
* entryPointArguments: [
|
|
36
|
+
* entryPointArguments: [ // EntryPointArguments
|
|
37
37
|
* "STRING_VALUE",
|
|
38
38
|
* ],
|
|
39
39
|
* sparkSubmitParameters: "STRING_VALUE",
|
|
40
40
|
* },
|
|
41
|
-
* hive: {
|
|
41
|
+
* hive: { // Hive
|
|
42
42
|
* query: "STRING_VALUE", // required
|
|
43
43
|
* initQueryFile: "STRING_VALUE",
|
|
44
44
|
* parameters: "STRING_VALUE",
|
|
45
45
|
* },
|
|
46
46
|
* },
|
|
47
|
-
* configurationOverrides: {
|
|
48
|
-
* applicationConfiguration: [
|
|
49
|
-
* {
|
|
47
|
+
* configurationOverrides: { // ConfigurationOverrides
|
|
48
|
+
* applicationConfiguration: [ // ConfigurationList
|
|
49
|
+
* { // Configuration
|
|
50
50
|
* classification: "STRING_VALUE", // required
|
|
51
|
-
* properties: {
|
|
51
|
+
* properties: { // SensitivePropertiesMap
|
|
52
52
|
* "<keys>": "STRING_VALUE",
|
|
53
53
|
* },
|
|
54
54
|
* configurations: [
|
|
@@ -57,25 +57,23 @@ export interface StartJobRunCommandOutput extends StartJobRunResponse, __Metadat
|
|
|
57
57
|
* properties: {
|
|
58
58
|
* "<keys>": "STRING_VALUE",
|
|
59
59
|
* },
|
|
60
|
-
* configurations:
|
|
61
|
-
* "<ConfigurationList>",
|
|
62
|
-
* ],
|
|
60
|
+
* configurations: "<ConfigurationList>",
|
|
63
61
|
* },
|
|
64
62
|
* ],
|
|
65
63
|
* },
|
|
66
64
|
* ],
|
|
67
|
-
* monitoringConfiguration: {
|
|
68
|
-
* s3MonitoringConfiguration: {
|
|
65
|
+
* monitoringConfiguration: { // MonitoringConfiguration
|
|
66
|
+
* s3MonitoringConfiguration: { // S3MonitoringConfiguration
|
|
69
67
|
* logUri: "STRING_VALUE",
|
|
70
68
|
* encryptionKeyArn: "STRING_VALUE",
|
|
71
69
|
* },
|
|
72
|
-
* managedPersistenceMonitoringConfiguration: {
|
|
70
|
+
* managedPersistenceMonitoringConfiguration: { // ManagedPersistenceMonitoringConfiguration
|
|
73
71
|
* enabled: true || false,
|
|
74
72
|
* encryptionKeyArn: "STRING_VALUE",
|
|
75
73
|
* },
|
|
76
74
|
* },
|
|
77
75
|
* },
|
|
78
|
-
* tags: {
|
|
76
|
+
* tags: { // TagMap
|
|
79
77
|
* "<keys>": "STRING_VALUE",
|
|
80
78
|
* },
|
|
81
79
|
* executionTimeoutMinutes: Number("long"),
|
|
@@ -27,7 +27,7 @@ export interface StopApplicationCommandOutput extends StopApplicationResponse, _
|
|
|
27
27
|
* import { EMRServerlessClient, StopApplicationCommand } from "@aws-sdk/client-emr-serverless"; // ES Modules import
|
|
28
28
|
* // const { EMRServerlessClient, StopApplicationCommand } = require("@aws-sdk/client-emr-serverless"); // CommonJS import
|
|
29
29
|
* const client = new EMRServerlessClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // StopApplicationRequest
|
|
31
31
|
* applicationId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new StopApplicationCommand(input);
|
|
@@ -30,9 +30,9 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
30
30
|
* import { EMRServerlessClient, TagResourceCommand } from "@aws-sdk/client-emr-serverless"; // ES Modules import
|
|
31
31
|
* // const { EMRServerlessClient, TagResourceCommand } = require("@aws-sdk/client-emr-serverless"); // CommonJS import
|
|
32
32
|
* const client = new EMRServerlessClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // TagResourceRequest
|
|
34
34
|
* resourceArn: "STRING_VALUE", // required
|
|
35
|
-
* tags: { // required
|
|
35
|
+
* tags: { // TagMap // required
|
|
36
36
|
* "<keys>": "STRING_VALUE",
|
|
37
37
|
* },
|
|
38
38
|
* };
|
|
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
26
26
|
* import { EMRServerlessClient, UntagResourceCommand } from "@aws-sdk/client-emr-serverless"; // ES Modules import
|
|
27
27
|
* // const { EMRServerlessClient, UntagResourceCommand } = require("@aws-sdk/client-emr-serverless"); // CommonJS import
|
|
28
28
|
* const client = new EMRServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UntagResourceRequest
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
|
-
* tagKeys: [ // required
|
|
31
|
+
* tagKeys: [ // TagKeyList // required
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
|
@@ -27,45 +27,45 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
|
|
|
27
27
|
* import { EMRServerlessClient, UpdateApplicationCommand } from "@aws-sdk/client-emr-serverless"; // ES Modules import
|
|
28
28
|
* // const { EMRServerlessClient, UpdateApplicationCommand } = require("@aws-sdk/client-emr-serverless"); // CommonJS import
|
|
29
29
|
* const client = new EMRServerlessClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // UpdateApplicationRequest
|
|
31
31
|
* applicationId: "STRING_VALUE", // required
|
|
32
32
|
* clientToken: "STRING_VALUE", // required
|
|
33
|
-
* initialCapacity: {
|
|
34
|
-
* "<keys>": {
|
|
33
|
+
* initialCapacity: { // InitialCapacityConfigMap
|
|
34
|
+
* "<keys>": { // InitialCapacityConfig
|
|
35
35
|
* workerCount: Number("long"), // required
|
|
36
|
-
* workerConfiguration: {
|
|
36
|
+
* workerConfiguration: { // WorkerResourceConfig
|
|
37
37
|
* cpu: "STRING_VALUE", // required
|
|
38
38
|
* memory: "STRING_VALUE", // required
|
|
39
39
|
* disk: "STRING_VALUE",
|
|
40
40
|
* },
|
|
41
41
|
* },
|
|
42
42
|
* },
|
|
43
|
-
* maximumCapacity: {
|
|
43
|
+
* maximumCapacity: { // MaximumAllowedResources
|
|
44
44
|
* cpu: "STRING_VALUE", // required
|
|
45
45
|
* memory: "STRING_VALUE", // required
|
|
46
46
|
* disk: "STRING_VALUE",
|
|
47
47
|
* },
|
|
48
|
-
* autoStartConfiguration: {
|
|
48
|
+
* autoStartConfiguration: { // AutoStartConfig
|
|
49
49
|
* enabled: true || false,
|
|
50
50
|
* },
|
|
51
|
-
* autoStopConfiguration: {
|
|
51
|
+
* autoStopConfiguration: { // AutoStopConfig
|
|
52
52
|
* enabled: true || false,
|
|
53
53
|
* idleTimeoutMinutes: Number("int"),
|
|
54
54
|
* },
|
|
55
|
-
* networkConfiguration: {
|
|
56
|
-
* subnetIds: [
|
|
55
|
+
* networkConfiguration: { // NetworkConfiguration
|
|
56
|
+
* subnetIds: [ // SubnetIds
|
|
57
57
|
* "STRING_VALUE",
|
|
58
58
|
* ],
|
|
59
|
-
* securityGroupIds: [
|
|
59
|
+
* securityGroupIds: [ // SecurityGroupIds
|
|
60
60
|
* "STRING_VALUE",
|
|
61
61
|
* ],
|
|
62
62
|
* },
|
|
63
63
|
* architecture: "STRING_VALUE",
|
|
64
|
-
* imageConfiguration: {
|
|
64
|
+
* imageConfiguration: { // ImageConfigurationInput
|
|
65
65
|
* imageUri: "STRING_VALUE",
|
|
66
66
|
* },
|
|
67
|
-
* workerTypeSpecifications: {
|
|
68
|
-
* "<keys>": {
|
|
67
|
+
* workerTypeSpecifications: { // WorkerTypeSpecificationInputMap
|
|
68
|
+
* "<keys>": { // WorkerTypeSpecificationInput
|
|
69
69
|
* imageConfiguration: {
|
|
70
70
|
* imageUri: "STRING_VALUE",
|
|
71
71
|
* },
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-emr-serverless",
|
|
3
3
|
"description": "AWS SDK for JavaScript Emr Serverless Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
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",
|