@aws-sdk/client-sagemaker 3.957.0 → 3.958.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 +1 -384
- package/dist-cjs/auth/httpAuthSchemeProvider.js +3 -4
- package/dist-cjs/index.js +7385 -10213
- package/dist-cjs/runtimeConfig.browser.js +1 -2
- package/dist-cjs/runtimeConfig.js +2 -4
- package/dist-es/auth/httpAuthSchemeProvider.js +3 -4
- package/dist-es/pagination/index.js +9 -9
- package/dist-es/runtimeConfig.browser.js +1 -2
- package/dist-es/runtimeConfig.js +4 -6
- package/dist-es/schemas/schemas_0.js +7380 -10206
- package/dist-es/waiters/waitForEndpointDeleted.js +1 -1
- package/dist-es/waiters/waitForEndpointInService.js +2 -2
- package/dist-es/waiters/waitForImageCreated.js +2 -2
- package/dist-es/waiters/waitForImageDeleted.js +1 -1
- package/dist-es/waiters/waitForImageUpdated.js +2 -2
- package/dist-es/waiters/waitForImageVersionCreated.js +2 -2
- package/dist-es/waiters/waitForImageVersionDeleted.js +1 -1
- package/dist-es/waiters/waitForNotebookInstanceDeleted.js +1 -1
- package/dist-es/waiters/waitForNotebookInstanceInService.js +2 -2
- package/dist-es/waiters/waitForNotebookInstanceStopped.js +2 -2
- package/dist-es/waiters/waitForProcessingJobCompletedOrStopped.js +3 -3
- package/dist-es/waiters/waitForTrainingJobCompletedOrStopped.js +3 -3
- package/dist-es/waiters/waitForTransformJobCompletedOrStopped.js +3 -3
- package/dist-types/pagination/index.d.ts +9 -9
- package/dist-types/ts3.4/pagination/index.d.ts +9 -9
- package/package.json +2 -2
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeEndpointCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.EndpointStatus;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "Failed") {
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeEndpointCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.EndpointStatus;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "InService") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
let returnComparator = () => {
|
|
19
19
|
return result.EndpointStatus;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "Failed") {
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeImageCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.ImageStatus;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "CREATED") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
let returnComparator = () => {
|
|
19
19
|
return result.ImageStatus;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "CREATE_FAILED") {
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeImageCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.ImageStatus;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "DELETE_FAILED") {
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeImageCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.ImageStatus;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "CREATED") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
let returnComparator = () => {
|
|
19
19
|
return result.ImageStatus;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "UPDATE_FAILED") {
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeImageVersionCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.ImageVersionStatus;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "CREATED") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
let returnComparator = () => {
|
|
19
19
|
return result.ImageVersionStatus;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "CREATE_FAILED") {
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeImageVersionCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.ImageVersionStatus;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "DELETE_FAILED") {
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeNotebookInstanceCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.NotebookInstanceStatus;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "Failed") {
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeNotebookInstanceCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.NotebookInstanceStatus;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "InService") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
let returnComparator = () => {
|
|
19
19
|
return result.NotebookInstanceStatus;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "Failed") {
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeNotebookInstanceCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.NotebookInstanceStatus;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "Stopped") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
let returnComparator = () => {
|
|
19
19
|
return result.NotebookInstanceStatus;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "Failed") {
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeProcessingJobCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.ProcessingJobStatus;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "Completed") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
let returnComparator = () => {
|
|
19
19
|
return result.ProcessingJobStatus;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "Stopped") {
|
|
@@ -24,7 +24,7 @@ const checkState = async (client, input) => {
|
|
|
24
24
|
}
|
|
25
25
|
catch (e) { }
|
|
26
26
|
try {
|
|
27
|
-
|
|
27
|
+
let returnComparator = () => {
|
|
28
28
|
return result.ProcessingJobStatus;
|
|
29
29
|
};
|
|
30
30
|
if (returnComparator() === "Failed") {
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeTrainingJobCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.TrainingJobStatus;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "Completed") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
let returnComparator = () => {
|
|
19
19
|
return result.TrainingJobStatus;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "Stopped") {
|
|
@@ -24,7 +24,7 @@ const checkState = async (client, input) => {
|
|
|
24
24
|
}
|
|
25
25
|
catch (e) { }
|
|
26
26
|
try {
|
|
27
|
-
|
|
27
|
+
let returnComparator = () => {
|
|
28
28
|
return result.TrainingJobStatus;
|
|
29
29
|
};
|
|
30
30
|
if (returnComparator() === "Failed") {
|
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeTransformJobCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.TransformJobStatus;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "Completed") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
let returnComparator = () => {
|
|
19
19
|
return result.TransformJobStatus;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "Stopped") {
|
|
@@ -24,7 +24,7 @@ const checkState = async (client, input) => {
|
|
|
24
24
|
}
|
|
25
25
|
catch (e) { }
|
|
26
26
|
try {
|
|
27
|
-
|
|
27
|
+
let returnComparator = () => {
|
|
28
28
|
return result.TransformJobStatus;
|
|
29
29
|
};
|
|
30
30
|
if (returnComparator() === "Failed") {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from "./CreateHubContentPresignedUrlsPaginator";
|
|
2
1
|
export * from "./Interfaces";
|
|
2
|
+
export * from "./CreateHubContentPresignedUrlsPaginator";
|
|
3
3
|
export * from "./ListActionsPaginator";
|
|
4
4
|
export * from "./ListAlgorithmsPaginator";
|
|
5
5
|
export * from "./ListAliasesPaginator";
|
|
@@ -11,8 +11,8 @@ export * from "./ListAutoMLJobsPaginator";
|
|
|
11
11
|
export * from "./ListCandidatesForAutoMLJobPaginator";
|
|
12
12
|
export * from "./ListClusterEventsPaginator";
|
|
13
13
|
export * from "./ListClusterNodesPaginator";
|
|
14
|
-
export * from "./ListClusterSchedulerConfigsPaginator";
|
|
15
14
|
export * from "./ListClustersPaginator";
|
|
15
|
+
export * from "./ListClusterSchedulerConfigsPaginator";
|
|
16
16
|
export * from "./ListCodeRepositoriesPaginator";
|
|
17
17
|
export * from "./ListCompilationJobsPaginator";
|
|
18
18
|
export * from "./ListComputeQuotasPaginator";
|
|
@@ -30,21 +30,21 @@ export * from "./ListFeatureGroupsPaginator";
|
|
|
30
30
|
export * from "./ListFlowDefinitionsPaginator";
|
|
31
31
|
export * from "./ListHumanTaskUisPaginator";
|
|
32
32
|
export * from "./ListHyperParameterTuningJobsPaginator";
|
|
33
|
-
export * from "./ListImageVersionsPaginator";
|
|
34
33
|
export * from "./ListImagesPaginator";
|
|
34
|
+
export * from "./ListImageVersionsPaginator";
|
|
35
35
|
export * from "./ListInferenceComponentsPaginator";
|
|
36
36
|
export * from "./ListInferenceExperimentsPaginator";
|
|
37
|
-
export * from "./ListInferenceRecommendationsJobStepsPaginator";
|
|
38
37
|
export * from "./ListInferenceRecommendationsJobsPaginator";
|
|
39
|
-
export * from "./
|
|
38
|
+
export * from "./ListInferenceRecommendationsJobStepsPaginator";
|
|
40
39
|
export * from "./ListLabelingJobsPaginator";
|
|
40
|
+
export * from "./ListLabelingJobsForWorkteamPaginator";
|
|
41
41
|
export * from "./ListLineageGroupsPaginator";
|
|
42
42
|
export * from "./ListMlflowAppsPaginator";
|
|
43
43
|
export * from "./ListMlflowTrackingServersPaginator";
|
|
44
44
|
export * from "./ListModelBiasJobDefinitionsPaginator";
|
|
45
45
|
export * from "./ListModelCardExportJobsPaginator";
|
|
46
|
-
export * from "./ListModelCardVersionsPaginator";
|
|
47
46
|
export * from "./ListModelCardsPaginator";
|
|
47
|
+
export * from "./ListModelCardVersionsPaginator";
|
|
48
48
|
export * from "./ListModelExplainabilityJobDefinitionsPaginator";
|
|
49
49
|
export * from "./ListModelMetadataPaginator";
|
|
50
50
|
export * from "./ListModelPackageGroupsPaginator";
|
|
@@ -59,11 +59,11 @@ export * from "./ListNotebookInstanceLifecycleConfigsPaginator";
|
|
|
59
59
|
export * from "./ListNotebookInstancesPaginator";
|
|
60
60
|
export * from "./ListOptimizationJobsPaginator";
|
|
61
61
|
export * from "./ListPartnerAppsPaginator";
|
|
62
|
-
export * from "./ListPipelineExecutionStepsPaginator";
|
|
63
62
|
export * from "./ListPipelineExecutionsPaginator";
|
|
63
|
+
export * from "./ListPipelineExecutionStepsPaginator";
|
|
64
64
|
export * from "./ListPipelineParametersForExecutionPaginator";
|
|
65
|
-
export * from "./ListPipelineVersionsPaginator";
|
|
66
65
|
export * from "./ListPipelinesPaginator";
|
|
66
|
+
export * from "./ListPipelineVersionsPaginator";
|
|
67
67
|
export * from "./ListProcessingJobsPaginator";
|
|
68
68
|
export * from "./ListProjectsPaginator";
|
|
69
69
|
export * from "./ListResourceCatalogsPaginator";
|
|
@@ -72,8 +72,8 @@ export * from "./ListStageDevicesPaginator";
|
|
|
72
72
|
export * from "./ListStudioLifecycleConfigsPaginator";
|
|
73
73
|
export * from "./ListSubscribedWorkteamsPaginator";
|
|
74
74
|
export * from "./ListTagsPaginator";
|
|
75
|
-
export * from "./ListTrainingJobsForHyperParameterTuningJobPaginator";
|
|
76
75
|
export * from "./ListTrainingJobsPaginator";
|
|
76
|
+
export * from "./ListTrainingJobsForHyperParameterTuningJobPaginator";
|
|
77
77
|
export * from "./ListTrainingPlansPaginator";
|
|
78
78
|
export * from "./ListTransformJobsPaginator";
|
|
79
79
|
export * from "./ListTrialComponentsPaginator";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from "./CreateHubContentPresignedUrlsPaginator";
|
|
2
1
|
export * from "./Interfaces";
|
|
2
|
+
export * from "./CreateHubContentPresignedUrlsPaginator";
|
|
3
3
|
export * from "./ListActionsPaginator";
|
|
4
4
|
export * from "./ListAlgorithmsPaginator";
|
|
5
5
|
export * from "./ListAliasesPaginator";
|
|
@@ -11,8 +11,8 @@ export * from "./ListAutoMLJobsPaginator";
|
|
|
11
11
|
export * from "./ListCandidatesForAutoMLJobPaginator";
|
|
12
12
|
export * from "./ListClusterEventsPaginator";
|
|
13
13
|
export * from "./ListClusterNodesPaginator";
|
|
14
|
-
export * from "./ListClusterSchedulerConfigsPaginator";
|
|
15
14
|
export * from "./ListClustersPaginator";
|
|
15
|
+
export * from "./ListClusterSchedulerConfigsPaginator";
|
|
16
16
|
export * from "./ListCodeRepositoriesPaginator";
|
|
17
17
|
export * from "./ListCompilationJobsPaginator";
|
|
18
18
|
export * from "./ListComputeQuotasPaginator";
|
|
@@ -30,21 +30,21 @@ export * from "./ListFeatureGroupsPaginator";
|
|
|
30
30
|
export * from "./ListFlowDefinitionsPaginator";
|
|
31
31
|
export * from "./ListHumanTaskUisPaginator";
|
|
32
32
|
export * from "./ListHyperParameterTuningJobsPaginator";
|
|
33
|
-
export * from "./ListImageVersionsPaginator";
|
|
34
33
|
export * from "./ListImagesPaginator";
|
|
34
|
+
export * from "./ListImageVersionsPaginator";
|
|
35
35
|
export * from "./ListInferenceComponentsPaginator";
|
|
36
36
|
export * from "./ListInferenceExperimentsPaginator";
|
|
37
|
-
export * from "./ListInferenceRecommendationsJobStepsPaginator";
|
|
38
37
|
export * from "./ListInferenceRecommendationsJobsPaginator";
|
|
39
|
-
export * from "./
|
|
38
|
+
export * from "./ListInferenceRecommendationsJobStepsPaginator";
|
|
40
39
|
export * from "./ListLabelingJobsPaginator";
|
|
40
|
+
export * from "./ListLabelingJobsForWorkteamPaginator";
|
|
41
41
|
export * from "./ListLineageGroupsPaginator";
|
|
42
42
|
export * from "./ListMlflowAppsPaginator";
|
|
43
43
|
export * from "./ListMlflowTrackingServersPaginator";
|
|
44
44
|
export * from "./ListModelBiasJobDefinitionsPaginator";
|
|
45
45
|
export * from "./ListModelCardExportJobsPaginator";
|
|
46
|
-
export * from "./ListModelCardVersionsPaginator";
|
|
47
46
|
export * from "./ListModelCardsPaginator";
|
|
47
|
+
export * from "./ListModelCardVersionsPaginator";
|
|
48
48
|
export * from "./ListModelExplainabilityJobDefinitionsPaginator";
|
|
49
49
|
export * from "./ListModelMetadataPaginator";
|
|
50
50
|
export * from "./ListModelPackageGroupsPaginator";
|
|
@@ -59,11 +59,11 @@ export * from "./ListNotebookInstanceLifecycleConfigsPaginator";
|
|
|
59
59
|
export * from "./ListNotebookInstancesPaginator";
|
|
60
60
|
export * from "./ListOptimizationJobsPaginator";
|
|
61
61
|
export * from "./ListPartnerAppsPaginator";
|
|
62
|
-
export * from "./ListPipelineExecutionStepsPaginator";
|
|
63
62
|
export * from "./ListPipelineExecutionsPaginator";
|
|
63
|
+
export * from "./ListPipelineExecutionStepsPaginator";
|
|
64
64
|
export * from "./ListPipelineParametersForExecutionPaginator";
|
|
65
|
-
export * from "./ListPipelineVersionsPaginator";
|
|
66
65
|
export * from "./ListPipelinesPaginator";
|
|
66
|
+
export * from "./ListPipelineVersionsPaginator";
|
|
67
67
|
export * from "./ListProcessingJobsPaginator";
|
|
68
68
|
export * from "./ListProjectsPaginator";
|
|
69
69
|
export * from "./ListResourceCatalogsPaginator";
|
|
@@ -72,8 +72,8 @@ export * from "./ListStageDevicesPaginator";
|
|
|
72
72
|
export * from "./ListStudioLifecycleConfigsPaginator";
|
|
73
73
|
export * from "./ListSubscribedWorkteamsPaginator";
|
|
74
74
|
export * from "./ListTagsPaginator";
|
|
75
|
-
export * from "./ListTrainingJobsForHyperParameterTuningJobPaginator";
|
|
76
75
|
export * from "./ListTrainingJobsPaginator";
|
|
76
|
+
export * from "./ListTrainingJobsForHyperParameterTuningJobPaginator";
|
|
77
77
|
export * from "./ListTrainingPlansPaginator";
|
|
78
78
|
export * from "./ListTransformJobsPaginator";
|
|
79
79
|
export * from "./ListTrialComponentsPaginator";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sagemaker",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sagemaker Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.958.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-sagemaker",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
25
25
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
26
26
|
"@aws-sdk/core": "3.957.0",
|
|
27
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
+
"@aws-sdk/credential-provider-node": "3.958.0",
|
|
28
28
|
"@aws-sdk/middleware-host-header": "3.957.0",
|
|
29
29
|
"@aws-sdk/middleware-logger": "3.957.0",
|
|
30
30
|
"@aws-sdk/middleware-recursion-detection": "3.957.0",
|