@aws-sdk/client-s3-control 3.278.0 → 3.281.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 +491 -0
- package/dist-types/commands/CreateAccessPointCommand.d.ts +6 -0
- package/dist-types/commands/CreateAccessPointForObjectLambdaCommand.d.ts +6 -0
- package/dist-types/commands/CreateBucketCommand.d.ts +6 -0
- package/dist-types/commands/CreateJobCommand.d.ts +6 -0
- package/dist-types/commands/CreateMultiRegionAccessPointCommand.d.ts +6 -0
- package/dist-types/commands/DeleteAccessPointCommand.d.ts +6 -0
- package/dist-types/commands/DeleteAccessPointForObjectLambdaCommand.d.ts +6 -0
- package/dist-types/commands/DeleteAccessPointPolicyCommand.d.ts +6 -0
- package/dist-types/commands/DeleteAccessPointPolicyForObjectLambdaCommand.d.ts +6 -0
- package/dist-types/commands/DeleteBucketCommand.d.ts +6 -0
- package/dist-types/commands/DeleteBucketLifecycleConfigurationCommand.d.ts +6 -0
- package/dist-types/commands/DeleteBucketPolicyCommand.d.ts +6 -0
- package/dist-types/commands/DeleteBucketTaggingCommand.d.ts +6 -0
- package/dist-types/commands/DeleteJobTaggingCommand.d.ts +6 -0
- package/dist-types/commands/DeleteMultiRegionAccessPointCommand.d.ts +6 -0
- package/dist-types/commands/DeletePublicAccessBlockCommand.d.ts +6 -0
- package/dist-types/commands/DeleteStorageLensConfigurationCommand.d.ts +6 -0
- package/dist-types/commands/DeleteStorageLensConfigurationTaggingCommand.d.ts +6 -0
- package/dist-types/commands/DescribeJobCommand.d.ts +6 -0
- package/dist-types/commands/DescribeMultiRegionAccessPointOperationCommand.d.ts +6 -0
- package/dist-types/commands/GetAccessPointCommand.d.ts +6 -0
- package/dist-types/commands/GetAccessPointConfigurationForObjectLambdaCommand.d.ts +6 -0
- package/dist-types/commands/GetAccessPointForObjectLambdaCommand.d.ts +6 -0
- package/dist-types/commands/GetAccessPointPolicyCommand.d.ts +6 -0
- package/dist-types/commands/GetAccessPointPolicyForObjectLambdaCommand.d.ts +6 -0
- package/dist-types/commands/GetAccessPointPolicyStatusCommand.d.ts +6 -0
- package/dist-types/commands/GetAccessPointPolicyStatusForObjectLambdaCommand.d.ts +6 -0
- package/dist-types/commands/GetBucketCommand.d.ts +6 -0
- package/dist-types/commands/GetBucketLifecycleConfigurationCommand.d.ts +6 -0
- package/dist-types/commands/GetBucketPolicyCommand.d.ts +6 -0
- package/dist-types/commands/GetBucketTaggingCommand.d.ts +6 -0
- package/dist-types/commands/GetBucketVersioningCommand.d.ts +6 -0
- package/dist-types/commands/GetJobTaggingCommand.d.ts +6 -0
- package/dist-types/commands/GetMultiRegionAccessPointCommand.d.ts +6 -0
- package/dist-types/commands/GetMultiRegionAccessPointPolicyCommand.d.ts +6 -0
- package/dist-types/commands/GetMultiRegionAccessPointPolicyStatusCommand.d.ts +6 -0
- package/dist-types/commands/GetMultiRegionAccessPointRoutesCommand.d.ts +6 -0
- package/dist-types/commands/GetPublicAccessBlockCommand.d.ts +6 -0
- package/dist-types/commands/GetStorageLensConfigurationCommand.d.ts +6 -0
- package/dist-types/commands/GetStorageLensConfigurationTaggingCommand.d.ts +6 -0
- package/dist-types/commands/ListAccessPointsCommand.d.ts +6 -0
- package/dist-types/commands/ListAccessPointsForObjectLambdaCommand.d.ts +6 -0
- package/dist-types/commands/ListJobsCommand.d.ts +6 -0
- package/dist-types/commands/ListMultiRegionAccessPointsCommand.d.ts +6 -0
- package/dist-types/commands/ListRegionalBucketsCommand.d.ts +6 -0
- package/dist-types/commands/ListStorageLensConfigurationsCommand.d.ts +6 -0
- package/dist-types/commands/PutAccessPointConfigurationForObjectLambdaCommand.d.ts +6 -0
- package/dist-types/commands/PutAccessPointPolicyCommand.d.ts +6 -0
- package/dist-types/commands/PutAccessPointPolicyForObjectLambdaCommand.d.ts +6 -0
- package/dist-types/commands/PutBucketLifecycleConfigurationCommand.d.ts +6 -0
- package/dist-types/commands/PutBucketPolicyCommand.d.ts +6 -0
- package/dist-types/commands/PutBucketTaggingCommand.d.ts +6 -0
- package/dist-types/commands/PutBucketVersioningCommand.d.ts +6 -0
- package/dist-types/commands/PutJobTaggingCommand.d.ts +6 -0
- package/dist-types/commands/PutMultiRegionAccessPointPolicyCommand.d.ts +6 -0
- package/dist-types/commands/PutPublicAccessBlockCommand.d.ts +6 -0
- package/dist-types/commands/PutStorageLensConfigurationCommand.d.ts +6 -0
- package/dist-types/commands/PutStorageLensConfigurationTaggingCommand.d.ts +6 -0
- package/dist-types/commands/SubmitMultiRegionAccessPointRoutesCommand.d.ts +6 -0
- package/dist-types/commands/UpdateJobPriorityCommand.d.ts +6 -0
- package/dist-types/commands/UpdateJobStatusCommand.d.ts +6 -0
- package/package.json +6 -6
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { PutAccessPointPolicyRequest } from "../models/models_0";
|
|
5
5
|
import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link PutAccessPointPolicyCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface PutAccessPointPolicyCommandInput extends PutAccessPointPolicyRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link PutAccessPointPolicyCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface PutAccessPointPolicyCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { PutAccessPointPolicyForObjectLambdaRequest } from "../models/models_0";
|
|
5
5
|
import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link PutAccessPointPolicyForObjectLambdaCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface PutAccessPointPolicyForObjectLambdaCommandInput extends PutAccessPointPolicyForObjectLambdaRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link PutAccessPointPolicyForObjectLambdaCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface PutAccessPointPolicyForObjectLambdaCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { PutBucketLifecycleConfigurationRequest } from "../models/models_0";
|
|
5
5
|
import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link PutBucketLifecycleConfigurationCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface PutBucketLifecycleConfigurationCommandInput extends PutBucketLifecycleConfigurationRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link PutBucketLifecycleConfigurationCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface PutBucketLifecycleConfigurationCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { PutBucketPolicyRequest } from "../models/models_0";
|
|
5
5
|
import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link PutBucketPolicyCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface PutBucketPolicyCommandInput extends PutBucketPolicyRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link PutBucketPolicyCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface PutBucketPolicyCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { PutBucketTaggingRequest } from "../models/models_0";
|
|
5
5
|
import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link PutBucketTaggingCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface PutBucketTaggingCommandInput extends PutBucketTaggingRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link PutBucketTaggingCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface PutBucketTaggingCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { PutBucketVersioningRequest } from "../models/models_0";
|
|
5
5
|
import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link PutBucketVersioningCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface PutBucketVersioningCommandInput extends PutBucketVersioningRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link PutBucketVersioningCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface PutBucketVersioningCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { PutJobTaggingRequest, PutJobTaggingResult } from "../models/models_0";
|
|
5
5
|
import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link PutJobTaggingCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface PutJobTaggingCommandInput extends PutJobTaggingRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link PutJobTaggingCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface PutJobTaggingCommandOutput extends PutJobTaggingResult, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { PutMultiRegionAccessPointPolicyRequest, PutMultiRegionAccessPointPolicyResult } from "../models/models_0";
|
|
5
5
|
import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link PutMultiRegionAccessPointPolicyCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface PutMultiRegionAccessPointPolicyCommandInput extends PutMultiRegionAccessPointPolicyRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link PutMultiRegionAccessPointPolicyCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface PutMultiRegionAccessPointPolicyCommandOutput extends PutMultiRegionAccessPointPolicyResult, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { PutPublicAccessBlockRequest } from "../models/models_0";
|
|
5
5
|
import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link PutPublicAccessBlockCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface PutPublicAccessBlockCommandInput extends PutPublicAccessBlockRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link PutPublicAccessBlockCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface PutPublicAccessBlockCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { PutStorageLensConfigurationRequest } from "../models/models_0";
|
|
5
5
|
import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link PutStorageLensConfigurationCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface PutStorageLensConfigurationCommandInput extends PutStorageLensConfigurationRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link PutStorageLensConfigurationCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface PutStorageLensConfigurationCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { PutStorageLensConfigurationTaggingRequest, PutStorageLensConfigurationTaggingResult } from "../models/models_0";
|
|
5
5
|
import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link PutStorageLensConfigurationTaggingCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface PutStorageLensConfigurationTaggingCommandInput extends PutStorageLensConfigurationTaggingRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link PutStorageLensConfigurationTaggingCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface PutStorageLensConfigurationTaggingCommandOutput extends PutStorageLensConfigurationTaggingResult, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { SubmitMultiRegionAccessPointRoutesRequest, SubmitMultiRegionAccessPointRoutesResult } from "../models/models_0";
|
|
5
5
|
import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link SubmitMultiRegionAccessPointRoutesCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface SubmitMultiRegionAccessPointRoutesCommandInput extends SubmitMultiRegionAccessPointRoutesRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link SubmitMultiRegionAccessPointRoutesCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface SubmitMultiRegionAccessPointRoutesCommandOutput extends SubmitMultiRegionAccessPointRoutesResult, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { UpdateJobPriorityRequest, UpdateJobPriorityResult } from "../models/models_0";
|
|
5
5
|
import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdateJobPriorityCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdateJobPriorityCommandInput extends UpdateJobPriorityRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdateJobPriorityCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdateJobPriorityCommandOutput extends UpdateJobPriorityResult, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { UpdateJobStatusRequest, UpdateJobStatusResult } from "../models/models_0";
|
|
5
5
|
import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdateJobStatusCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdateJobStatusCommandInput extends UpdateJobStatusRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdateJobStatusCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdateJobStatusCommandOutput extends UpdateJobStatusResult, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-s3-control",
|
|
3
3
|
"description": "AWS SDK for JavaScript S3 Control Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.281.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",
|
|
@@ -22,9 +22,9 @@
|
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
24
24
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
25
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
+
"@aws-sdk/client-sts": "3.281.0",
|
|
26
26
|
"@aws-sdk/config-resolver": "3.272.0",
|
|
27
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
+
"@aws-sdk/credential-provider-node": "3.281.0",
|
|
28
28
|
"@aws-sdk/fetch-http-handler": "3.272.0",
|
|
29
29
|
"@aws-sdk/hash-blob-browser": "3.272.0",
|
|
30
30
|
"@aws-sdk/hash-node": "3.272.0",
|
|
@@ -46,14 +46,14 @@
|
|
|
46
46
|
"@aws-sdk/node-config-provider": "3.272.0",
|
|
47
47
|
"@aws-sdk/node-http-handler": "3.272.0",
|
|
48
48
|
"@aws-sdk/protocol-http": "3.272.0",
|
|
49
|
-
"@aws-sdk/smithy-client": "3.
|
|
49
|
+
"@aws-sdk/smithy-client": "3.279.0",
|
|
50
50
|
"@aws-sdk/types": "3.272.0",
|
|
51
51
|
"@aws-sdk/url-parser": "3.272.0",
|
|
52
52
|
"@aws-sdk/util-base64": "3.208.0",
|
|
53
53
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
54
54
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
55
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
56
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
55
|
+
"@aws-sdk/util-defaults-mode-browser": "3.279.0",
|
|
56
|
+
"@aws-sdk/util-defaults-mode-node": "3.279.0",
|
|
57
57
|
"@aws-sdk/util-endpoints": "3.272.0",
|
|
58
58
|
"@aws-sdk/util-retry": "3.272.0",
|
|
59
59
|
"@aws-sdk/util-user-agent-browser": "3.272.0",
|