@aws-sdk/client-s3-control 3.1018.0 → 3.1020.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-cjs/auth/httpAuthSchemeProvider.js +2 -2
- package/dist-cjs/runtimeConfig.js +4 -3
- package/dist-cjs/runtimeConfig.shared.js +2 -2
- package/dist-es/S3Control.js +2 -2
- package/dist-es/auth/httpAuthSchemeProvider.js +1 -1
- package/dist-es/runtimeConfig.js +2 -1
- package/dist-es/runtimeConfig.shared.js +1 -1
- package/dist-types/S3Control.d.ts +97 -97
- package/dist-types/S3ControlClient.d.ts +101 -101
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +1 -1
- package/dist-types/models/models_1.d.ts +1 -1
- package/dist-types/pagination/ListAccessGrantsInstancesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListAccessGrantsLocationsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListAccessGrantsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListAccessPointsForDirectoryBucketsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListAccessPointsForObjectLambdaPaginator.d.ts +1 -1
- package/dist-types/pagination/ListAccessPointsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListCallerAccessGrantsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListJobsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListMultiRegionAccessPointsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListRegionalBucketsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListStorageLensConfigurationsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListStorageLensGroupsPaginator.d.ts +1 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/S3ControlClient.d.ts +3 -4
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +14 -14
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.resolveHttpAuthSchemeConfig = exports.defaultS3ControlHttpAuthSchemeProvider = exports.defaultS3ControlHttpAuthSchemeParametersProvider = void 0;
|
|
4
|
-
const
|
|
4
|
+
const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
|
|
5
5
|
const util_middleware_1 = require("@smithy/util-middleware");
|
|
6
6
|
const defaultS3ControlHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
7
7
|
return {
|
|
@@ -38,7 +38,7 @@ const defaultS3ControlHttpAuthSchemeProvider = (authParameters) => {
|
|
|
38
38
|
};
|
|
39
39
|
exports.defaultS3ControlHttpAuthSchemeProvider = defaultS3ControlHttpAuthSchemeProvider;
|
|
40
40
|
const resolveHttpAuthSchemeConfig = (config) => {
|
|
41
|
-
const config_0 = (0,
|
|
41
|
+
const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config);
|
|
42
42
|
return Object.assign(config_0, {
|
|
43
43
|
authSchemePreference: (0, util_middleware_1.normalizeProvider)(config.authSchemePreference ?? []),
|
|
44
44
|
});
|
|
@@ -3,7 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.getRuntimeConfig = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const package_json_1 = tslib_1.__importDefault(require("../package.json"));
|
|
6
|
-
const
|
|
6
|
+
const client_1 = require("@aws-sdk/core/client");
|
|
7
|
+
const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
|
|
7
8
|
const credential_provider_node_1 = require("@aws-sdk/credential-provider-node");
|
|
8
9
|
const middleware_bucket_endpoint_1 = require("@aws-sdk/middleware-bucket-endpoint");
|
|
9
10
|
const util_user_agent_node_1 = require("@aws-sdk/util-user-agent-node");
|
|
@@ -23,7 +24,7 @@ const getRuntimeConfig = (config) => {
|
|
|
23
24
|
const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
|
|
24
25
|
const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
|
|
25
26
|
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
|
26
|
-
(0,
|
|
27
|
+
(0, client_1.emitWarningIfUnsupportedVersion)(process.version);
|
|
27
28
|
const loaderConfig = {
|
|
28
29
|
profile: config?.profile,
|
|
29
30
|
logger: clientSharedValues.logger,
|
|
@@ -33,7 +34,7 @@ const getRuntimeConfig = (config) => {
|
|
|
33
34
|
...config,
|
|
34
35
|
runtime: "node",
|
|
35
36
|
defaultsMode,
|
|
36
|
-
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(
|
|
37
|
+
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(httpAuthSchemes_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
37
38
|
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
|
38
39
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
|
|
39
40
|
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getRuntimeConfig = void 0;
|
|
4
|
-
const
|
|
4
|
+
const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
|
|
5
5
|
const protocols_1 = require("@aws-sdk/core/protocols");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
const url_parser_1 = require("@smithy/url-parser");
|
|
@@ -23,7 +23,7 @@ const getRuntimeConfig = (config) => {
|
|
|
23
23
|
{
|
|
24
24
|
schemeId: "aws.auth#sigv4",
|
|
25
25
|
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
26
|
-
signer: new
|
|
26
|
+
signer: new httpAuthSchemes_1.AwsSdkSigV4Signer(),
|
|
27
27
|
},
|
|
28
28
|
],
|
|
29
29
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
package/dist-es/S3Control.js
CHANGED
|
@@ -29,7 +29,7 @@ import { DeletePublicAccessBlockCommand, } from "./commands/DeletePublicAccessBl
|
|
|
29
29
|
import { DeleteStorageLensConfigurationCommand, } from "./commands/DeleteStorageLensConfigurationCommand";
|
|
30
30
|
import { DeleteStorageLensConfigurationTaggingCommand, } from "./commands/DeleteStorageLensConfigurationTaggingCommand";
|
|
31
31
|
import { DeleteStorageLensGroupCommand, } from "./commands/DeleteStorageLensGroupCommand";
|
|
32
|
-
import { DescribeJobCommand } from "./commands/DescribeJobCommand";
|
|
32
|
+
import { DescribeJobCommand, } from "./commands/DescribeJobCommand";
|
|
33
33
|
import { DescribeMultiRegionAccessPointOperationCommand, } from "./commands/DescribeMultiRegionAccessPointOperationCommand";
|
|
34
34
|
import { DissociateAccessGrantsIdentityCenterCommand, } from "./commands/DissociateAccessGrantsIdentityCenterCommand";
|
|
35
35
|
import { GetAccessGrantCommand, } from "./commands/GetAccessGrantCommand";
|
|
@@ -90,7 +90,7 @@ import { PutPublicAccessBlockCommand, } from "./commands/PutPublicAccessBlockCom
|
|
|
90
90
|
import { PutStorageLensConfigurationCommand, } from "./commands/PutStorageLensConfigurationCommand";
|
|
91
91
|
import { PutStorageLensConfigurationTaggingCommand, } from "./commands/PutStorageLensConfigurationTaggingCommand";
|
|
92
92
|
import { SubmitMultiRegionAccessPointRoutesCommand, } from "./commands/SubmitMultiRegionAccessPointRoutesCommand";
|
|
93
|
-
import { TagResourceCommand } from "./commands/TagResourceCommand";
|
|
93
|
+
import { TagResourceCommand, } from "./commands/TagResourceCommand";
|
|
94
94
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
95
95
|
import { UpdateAccessGrantsLocationCommand, } from "./commands/UpdateAccessGrantsLocationCommand";
|
|
96
96
|
import { UpdateJobPriorityCommand, } from "./commands/UpdateJobPriorityCommand";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core";
|
|
1
|
+
import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core/httpAuthSchemes";
|
|
2
2
|
import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware";
|
|
3
3
|
export const defaultS3ControlHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
4
4
|
return {
|
package/dist-es/runtimeConfig.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import packageInfo from "../package.json";
|
|
2
|
-
import { emitWarningIfUnsupportedVersion as awsCheckVersion
|
|
2
|
+
import { emitWarningIfUnsupportedVersion as awsCheckVersion } from "@aws-sdk/core/client";
|
|
3
|
+
import { NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } from "@aws-sdk/core/httpAuthSchemes";
|
|
3
4
|
import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node";
|
|
4
5
|
import { NODE_USE_ARN_REGION_CONFIG_OPTIONS } from "@aws-sdk/middleware-bucket-endpoint";
|
|
5
6
|
import { createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS } from "@aws-sdk/util-user-agent-node";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AwsSdkSigV4Signer } from "@aws-sdk/core";
|
|
1
|
+
import { AwsSdkSigV4Signer } from "@aws-sdk/core/httpAuthSchemes";
|
|
2
2
|
import { AwsRestXmlProtocol } from "@aws-sdk/core/protocols";
|
|
3
3
|
import { NoOpLogger } from "@smithy/smithy-client";
|
|
4
4
|
import { parseUrl } from "@smithy/url-parser";
|
|
@@ -1,101 +1,101 @@
|
|
|
1
1
|
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
|
-
import { AssociateAccessGrantsIdentityCenterCommandInput, AssociateAccessGrantsIdentityCenterCommandOutput } from "./commands/AssociateAccessGrantsIdentityCenterCommand";
|
|
3
|
-
import { CreateAccessGrantCommandInput, CreateAccessGrantCommandOutput } from "./commands/CreateAccessGrantCommand";
|
|
4
|
-
import { CreateAccessGrantsInstanceCommandInput, CreateAccessGrantsInstanceCommandOutput } from "./commands/CreateAccessGrantsInstanceCommand";
|
|
5
|
-
import { CreateAccessGrantsLocationCommandInput, CreateAccessGrantsLocationCommandOutput } from "./commands/CreateAccessGrantsLocationCommand";
|
|
6
|
-
import { CreateAccessPointCommandInput, CreateAccessPointCommandOutput } from "./commands/CreateAccessPointCommand";
|
|
7
|
-
import { CreateAccessPointForObjectLambdaCommandInput, CreateAccessPointForObjectLambdaCommandOutput } from "./commands/CreateAccessPointForObjectLambdaCommand";
|
|
8
|
-
import { CreateBucketCommandInput, CreateBucketCommandOutput } from "./commands/CreateBucketCommand";
|
|
9
|
-
import { CreateJobCommandInput, CreateJobCommandOutput } from "./commands/CreateJobCommand";
|
|
10
|
-
import { CreateMultiRegionAccessPointCommandInput, CreateMultiRegionAccessPointCommandOutput } from "./commands/CreateMultiRegionAccessPointCommand";
|
|
11
|
-
import { CreateStorageLensGroupCommandInput, CreateStorageLensGroupCommandOutput } from "./commands/CreateStorageLensGroupCommand";
|
|
12
|
-
import { DeleteAccessGrantCommandInput, DeleteAccessGrantCommandOutput } from "./commands/DeleteAccessGrantCommand";
|
|
13
|
-
import { DeleteAccessGrantsInstanceCommandInput, DeleteAccessGrantsInstanceCommandOutput } from "./commands/DeleteAccessGrantsInstanceCommand";
|
|
14
|
-
import { DeleteAccessGrantsInstanceResourcePolicyCommandInput, DeleteAccessGrantsInstanceResourcePolicyCommandOutput } from "./commands/DeleteAccessGrantsInstanceResourcePolicyCommand";
|
|
15
|
-
import { DeleteAccessGrantsLocationCommandInput, DeleteAccessGrantsLocationCommandOutput } from "./commands/DeleteAccessGrantsLocationCommand";
|
|
16
|
-
import { DeleteAccessPointCommandInput, DeleteAccessPointCommandOutput } from "./commands/DeleteAccessPointCommand";
|
|
17
|
-
import { DeleteAccessPointForObjectLambdaCommandInput, DeleteAccessPointForObjectLambdaCommandOutput } from "./commands/DeleteAccessPointForObjectLambdaCommand";
|
|
18
|
-
import { DeleteAccessPointPolicyCommandInput, DeleteAccessPointPolicyCommandOutput } from "./commands/DeleteAccessPointPolicyCommand";
|
|
19
|
-
import { DeleteAccessPointPolicyForObjectLambdaCommandInput, DeleteAccessPointPolicyForObjectLambdaCommandOutput } from "./commands/DeleteAccessPointPolicyForObjectLambdaCommand";
|
|
20
|
-
import { DeleteAccessPointScopeCommandInput, DeleteAccessPointScopeCommandOutput } from "./commands/DeleteAccessPointScopeCommand";
|
|
21
|
-
import { DeleteBucketCommandInput, DeleteBucketCommandOutput } from "./commands/DeleteBucketCommand";
|
|
22
|
-
import { DeleteBucketLifecycleConfigurationCommandInput, DeleteBucketLifecycleConfigurationCommandOutput } from "./commands/DeleteBucketLifecycleConfigurationCommand";
|
|
23
|
-
import { DeleteBucketPolicyCommandInput, DeleteBucketPolicyCommandOutput } from "./commands/DeleteBucketPolicyCommand";
|
|
24
|
-
import { DeleteBucketReplicationCommandInput, DeleteBucketReplicationCommandOutput } from "./commands/DeleteBucketReplicationCommand";
|
|
25
|
-
import { DeleteBucketTaggingCommandInput, DeleteBucketTaggingCommandOutput } from "./commands/DeleteBucketTaggingCommand";
|
|
26
|
-
import { DeleteJobTaggingCommandInput, DeleteJobTaggingCommandOutput } from "./commands/DeleteJobTaggingCommand";
|
|
27
|
-
import { DeleteMultiRegionAccessPointCommandInput, DeleteMultiRegionAccessPointCommandOutput } from "./commands/DeleteMultiRegionAccessPointCommand";
|
|
28
|
-
import { DeletePublicAccessBlockCommandInput, DeletePublicAccessBlockCommandOutput } from "./commands/DeletePublicAccessBlockCommand";
|
|
29
|
-
import { DeleteStorageLensConfigurationCommandInput, DeleteStorageLensConfigurationCommandOutput } from "./commands/DeleteStorageLensConfigurationCommand";
|
|
30
|
-
import { DeleteStorageLensConfigurationTaggingCommandInput, DeleteStorageLensConfigurationTaggingCommandOutput } from "./commands/DeleteStorageLensConfigurationTaggingCommand";
|
|
31
|
-
import { DeleteStorageLensGroupCommandInput, DeleteStorageLensGroupCommandOutput } from "./commands/DeleteStorageLensGroupCommand";
|
|
32
|
-
import { DescribeJobCommandInput, DescribeJobCommandOutput } from "./commands/DescribeJobCommand";
|
|
33
|
-
import { DescribeMultiRegionAccessPointOperationCommandInput, DescribeMultiRegionAccessPointOperationCommandOutput } from "./commands/DescribeMultiRegionAccessPointOperationCommand";
|
|
34
|
-
import { DissociateAccessGrantsIdentityCenterCommandInput, DissociateAccessGrantsIdentityCenterCommandOutput } from "./commands/DissociateAccessGrantsIdentityCenterCommand";
|
|
35
|
-
import { GetAccessGrantCommandInput, GetAccessGrantCommandOutput } from "./commands/GetAccessGrantCommand";
|
|
36
|
-
import { GetAccessGrantsInstanceCommandInput, GetAccessGrantsInstanceCommandOutput } from "./commands/GetAccessGrantsInstanceCommand";
|
|
37
|
-
import { GetAccessGrantsInstanceForPrefixCommandInput, GetAccessGrantsInstanceForPrefixCommandOutput } from "./commands/GetAccessGrantsInstanceForPrefixCommand";
|
|
38
|
-
import { GetAccessGrantsInstanceResourcePolicyCommandInput, GetAccessGrantsInstanceResourcePolicyCommandOutput } from "./commands/GetAccessGrantsInstanceResourcePolicyCommand";
|
|
39
|
-
import { GetAccessGrantsLocationCommandInput, GetAccessGrantsLocationCommandOutput } from "./commands/GetAccessGrantsLocationCommand";
|
|
40
|
-
import { GetAccessPointCommandInput, GetAccessPointCommandOutput } from "./commands/GetAccessPointCommand";
|
|
41
|
-
import { GetAccessPointConfigurationForObjectLambdaCommandInput, GetAccessPointConfigurationForObjectLambdaCommandOutput } from "./commands/GetAccessPointConfigurationForObjectLambdaCommand";
|
|
42
|
-
import { GetAccessPointForObjectLambdaCommandInput, GetAccessPointForObjectLambdaCommandOutput } from "./commands/GetAccessPointForObjectLambdaCommand";
|
|
43
|
-
import { GetAccessPointPolicyCommandInput, GetAccessPointPolicyCommandOutput } from "./commands/GetAccessPointPolicyCommand";
|
|
44
|
-
import { GetAccessPointPolicyForObjectLambdaCommandInput, GetAccessPointPolicyForObjectLambdaCommandOutput } from "./commands/GetAccessPointPolicyForObjectLambdaCommand";
|
|
45
|
-
import { GetAccessPointPolicyStatusCommandInput, GetAccessPointPolicyStatusCommandOutput } from "./commands/GetAccessPointPolicyStatusCommand";
|
|
46
|
-
import { GetAccessPointPolicyStatusForObjectLambdaCommandInput, GetAccessPointPolicyStatusForObjectLambdaCommandOutput } from "./commands/GetAccessPointPolicyStatusForObjectLambdaCommand";
|
|
47
|
-
import { GetAccessPointScopeCommandInput, GetAccessPointScopeCommandOutput } from "./commands/GetAccessPointScopeCommand";
|
|
48
|
-
import { GetBucketCommandInput, GetBucketCommandOutput } from "./commands/GetBucketCommand";
|
|
49
|
-
import { GetBucketLifecycleConfigurationCommandInput, GetBucketLifecycleConfigurationCommandOutput } from "./commands/GetBucketLifecycleConfigurationCommand";
|
|
50
|
-
import { GetBucketPolicyCommandInput, GetBucketPolicyCommandOutput } from "./commands/GetBucketPolicyCommand";
|
|
51
|
-
import { GetBucketReplicationCommandInput, GetBucketReplicationCommandOutput } from "./commands/GetBucketReplicationCommand";
|
|
52
|
-
import { GetBucketTaggingCommandInput, GetBucketTaggingCommandOutput } from "./commands/GetBucketTaggingCommand";
|
|
53
|
-
import { GetBucketVersioningCommandInput, GetBucketVersioningCommandOutput } from "./commands/GetBucketVersioningCommand";
|
|
54
|
-
import { GetDataAccessCommandInput, GetDataAccessCommandOutput } from "./commands/GetDataAccessCommand";
|
|
55
|
-
import { GetJobTaggingCommandInput, GetJobTaggingCommandOutput } from "./commands/GetJobTaggingCommand";
|
|
56
|
-
import { GetMultiRegionAccessPointCommandInput, GetMultiRegionAccessPointCommandOutput } from "./commands/GetMultiRegionAccessPointCommand";
|
|
57
|
-
import { GetMultiRegionAccessPointPolicyCommandInput, GetMultiRegionAccessPointPolicyCommandOutput } from "./commands/GetMultiRegionAccessPointPolicyCommand";
|
|
58
|
-
import { GetMultiRegionAccessPointPolicyStatusCommandInput, GetMultiRegionAccessPointPolicyStatusCommandOutput } from "./commands/GetMultiRegionAccessPointPolicyStatusCommand";
|
|
59
|
-
import { GetMultiRegionAccessPointRoutesCommandInput, GetMultiRegionAccessPointRoutesCommandOutput } from "./commands/GetMultiRegionAccessPointRoutesCommand";
|
|
60
|
-
import { GetPublicAccessBlockCommandInput, GetPublicAccessBlockCommandOutput } from "./commands/GetPublicAccessBlockCommand";
|
|
61
|
-
import { GetStorageLensConfigurationCommandInput, GetStorageLensConfigurationCommandOutput } from "./commands/GetStorageLensConfigurationCommand";
|
|
62
|
-
import { GetStorageLensConfigurationTaggingCommandInput, GetStorageLensConfigurationTaggingCommandOutput } from "./commands/GetStorageLensConfigurationTaggingCommand";
|
|
63
|
-
import { GetStorageLensGroupCommandInput, GetStorageLensGroupCommandOutput } from "./commands/GetStorageLensGroupCommand";
|
|
64
|
-
import { ListAccessGrantsCommandInput, ListAccessGrantsCommandOutput } from "./commands/ListAccessGrantsCommand";
|
|
65
|
-
import { ListAccessGrantsInstancesCommandInput, ListAccessGrantsInstancesCommandOutput } from "./commands/ListAccessGrantsInstancesCommand";
|
|
66
|
-
import { ListAccessGrantsLocationsCommandInput, ListAccessGrantsLocationsCommandOutput } from "./commands/ListAccessGrantsLocationsCommand";
|
|
67
|
-
import { ListAccessPointsCommandInput, ListAccessPointsCommandOutput } from "./commands/ListAccessPointsCommand";
|
|
68
|
-
import { ListAccessPointsForDirectoryBucketsCommandInput, ListAccessPointsForDirectoryBucketsCommandOutput } from "./commands/ListAccessPointsForDirectoryBucketsCommand";
|
|
69
|
-
import { ListAccessPointsForObjectLambdaCommandInput, ListAccessPointsForObjectLambdaCommandOutput } from "./commands/ListAccessPointsForObjectLambdaCommand";
|
|
70
|
-
import { ListCallerAccessGrantsCommandInput, ListCallerAccessGrantsCommandOutput } from "./commands/ListCallerAccessGrantsCommand";
|
|
71
|
-
import { ListJobsCommandInput, ListJobsCommandOutput } from "./commands/ListJobsCommand";
|
|
72
|
-
import { ListMultiRegionAccessPointsCommandInput, ListMultiRegionAccessPointsCommandOutput } from "./commands/ListMultiRegionAccessPointsCommand";
|
|
73
|
-
import { ListRegionalBucketsCommandInput, ListRegionalBucketsCommandOutput } from "./commands/ListRegionalBucketsCommand";
|
|
74
|
-
import { ListStorageLensConfigurationsCommandInput, ListStorageLensConfigurationsCommandOutput } from "./commands/ListStorageLensConfigurationsCommand";
|
|
75
|
-
import { ListStorageLensGroupsCommandInput, ListStorageLensGroupsCommandOutput } from "./commands/ListStorageLensGroupsCommand";
|
|
76
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
77
|
-
import { PutAccessGrantsInstanceResourcePolicyCommandInput, PutAccessGrantsInstanceResourcePolicyCommandOutput } from "./commands/PutAccessGrantsInstanceResourcePolicyCommand";
|
|
78
|
-
import { PutAccessPointConfigurationForObjectLambdaCommandInput, PutAccessPointConfigurationForObjectLambdaCommandOutput } from "./commands/PutAccessPointConfigurationForObjectLambdaCommand";
|
|
79
|
-
import { PutAccessPointPolicyCommandInput, PutAccessPointPolicyCommandOutput } from "./commands/PutAccessPointPolicyCommand";
|
|
80
|
-
import { PutAccessPointPolicyForObjectLambdaCommandInput, PutAccessPointPolicyForObjectLambdaCommandOutput } from "./commands/PutAccessPointPolicyForObjectLambdaCommand";
|
|
81
|
-
import { PutAccessPointScopeCommandInput, PutAccessPointScopeCommandOutput } from "./commands/PutAccessPointScopeCommand";
|
|
82
|
-
import { PutBucketLifecycleConfigurationCommandInput, PutBucketLifecycleConfigurationCommandOutput } from "./commands/PutBucketLifecycleConfigurationCommand";
|
|
83
|
-
import { PutBucketPolicyCommandInput, PutBucketPolicyCommandOutput } from "./commands/PutBucketPolicyCommand";
|
|
84
|
-
import { PutBucketReplicationCommandInput, PutBucketReplicationCommandOutput } from "./commands/PutBucketReplicationCommand";
|
|
85
|
-
import { PutBucketTaggingCommandInput, PutBucketTaggingCommandOutput } from "./commands/PutBucketTaggingCommand";
|
|
86
|
-
import { PutBucketVersioningCommandInput, PutBucketVersioningCommandOutput } from "./commands/PutBucketVersioningCommand";
|
|
87
|
-
import { PutJobTaggingCommandInput, PutJobTaggingCommandOutput } from "./commands/PutJobTaggingCommand";
|
|
88
|
-
import { PutMultiRegionAccessPointPolicyCommandInput, PutMultiRegionAccessPointPolicyCommandOutput } from "./commands/PutMultiRegionAccessPointPolicyCommand";
|
|
89
|
-
import { PutPublicAccessBlockCommandInput, PutPublicAccessBlockCommandOutput } from "./commands/PutPublicAccessBlockCommand";
|
|
90
|
-
import { PutStorageLensConfigurationCommandInput, PutStorageLensConfigurationCommandOutput } from "./commands/PutStorageLensConfigurationCommand";
|
|
91
|
-
import { PutStorageLensConfigurationTaggingCommandInput, PutStorageLensConfigurationTaggingCommandOutput } from "./commands/PutStorageLensConfigurationTaggingCommand";
|
|
92
|
-
import { SubmitMultiRegionAccessPointRoutesCommandInput, SubmitMultiRegionAccessPointRoutesCommandOutput } from "./commands/SubmitMultiRegionAccessPointRoutesCommand";
|
|
93
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
94
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
95
|
-
import { UpdateAccessGrantsLocationCommandInput, UpdateAccessGrantsLocationCommandOutput } from "./commands/UpdateAccessGrantsLocationCommand";
|
|
96
|
-
import { UpdateJobPriorityCommandInput, UpdateJobPriorityCommandOutput } from "./commands/UpdateJobPriorityCommand";
|
|
97
|
-
import { UpdateJobStatusCommandInput, UpdateJobStatusCommandOutput } from "./commands/UpdateJobStatusCommand";
|
|
98
|
-
import { UpdateStorageLensGroupCommandInput, UpdateStorageLensGroupCommandOutput } from "./commands/UpdateStorageLensGroupCommand";
|
|
2
|
+
import { type AssociateAccessGrantsIdentityCenterCommandInput, type AssociateAccessGrantsIdentityCenterCommandOutput } from "./commands/AssociateAccessGrantsIdentityCenterCommand";
|
|
3
|
+
import { type CreateAccessGrantCommandInput, type CreateAccessGrantCommandOutput } from "./commands/CreateAccessGrantCommand";
|
|
4
|
+
import { type CreateAccessGrantsInstanceCommandInput, type CreateAccessGrantsInstanceCommandOutput } from "./commands/CreateAccessGrantsInstanceCommand";
|
|
5
|
+
import { type CreateAccessGrantsLocationCommandInput, type CreateAccessGrantsLocationCommandOutput } from "./commands/CreateAccessGrantsLocationCommand";
|
|
6
|
+
import { type CreateAccessPointCommandInput, type CreateAccessPointCommandOutput } from "./commands/CreateAccessPointCommand";
|
|
7
|
+
import { type CreateAccessPointForObjectLambdaCommandInput, type CreateAccessPointForObjectLambdaCommandOutput } from "./commands/CreateAccessPointForObjectLambdaCommand";
|
|
8
|
+
import { type CreateBucketCommandInput, type CreateBucketCommandOutput } from "./commands/CreateBucketCommand";
|
|
9
|
+
import { type CreateJobCommandInput, type CreateJobCommandOutput } from "./commands/CreateJobCommand";
|
|
10
|
+
import { type CreateMultiRegionAccessPointCommandInput, type CreateMultiRegionAccessPointCommandOutput } from "./commands/CreateMultiRegionAccessPointCommand";
|
|
11
|
+
import { type CreateStorageLensGroupCommandInput, type CreateStorageLensGroupCommandOutput } from "./commands/CreateStorageLensGroupCommand";
|
|
12
|
+
import { type DeleteAccessGrantCommandInput, type DeleteAccessGrantCommandOutput } from "./commands/DeleteAccessGrantCommand";
|
|
13
|
+
import { type DeleteAccessGrantsInstanceCommandInput, type DeleteAccessGrantsInstanceCommandOutput } from "./commands/DeleteAccessGrantsInstanceCommand";
|
|
14
|
+
import { type DeleteAccessGrantsInstanceResourcePolicyCommandInput, type DeleteAccessGrantsInstanceResourcePolicyCommandOutput } from "./commands/DeleteAccessGrantsInstanceResourcePolicyCommand";
|
|
15
|
+
import { type DeleteAccessGrantsLocationCommandInput, type DeleteAccessGrantsLocationCommandOutput } from "./commands/DeleteAccessGrantsLocationCommand";
|
|
16
|
+
import { type DeleteAccessPointCommandInput, type DeleteAccessPointCommandOutput } from "./commands/DeleteAccessPointCommand";
|
|
17
|
+
import { type DeleteAccessPointForObjectLambdaCommandInput, type DeleteAccessPointForObjectLambdaCommandOutput } from "./commands/DeleteAccessPointForObjectLambdaCommand";
|
|
18
|
+
import { type DeleteAccessPointPolicyCommandInput, type DeleteAccessPointPolicyCommandOutput } from "./commands/DeleteAccessPointPolicyCommand";
|
|
19
|
+
import { type DeleteAccessPointPolicyForObjectLambdaCommandInput, type DeleteAccessPointPolicyForObjectLambdaCommandOutput } from "./commands/DeleteAccessPointPolicyForObjectLambdaCommand";
|
|
20
|
+
import { type DeleteAccessPointScopeCommandInput, type DeleteAccessPointScopeCommandOutput } from "./commands/DeleteAccessPointScopeCommand";
|
|
21
|
+
import { type DeleteBucketCommandInput, type DeleteBucketCommandOutput } from "./commands/DeleteBucketCommand";
|
|
22
|
+
import { type DeleteBucketLifecycleConfigurationCommandInput, type DeleteBucketLifecycleConfigurationCommandOutput } from "./commands/DeleteBucketLifecycleConfigurationCommand";
|
|
23
|
+
import { type DeleteBucketPolicyCommandInput, type DeleteBucketPolicyCommandOutput } from "./commands/DeleteBucketPolicyCommand";
|
|
24
|
+
import { type DeleteBucketReplicationCommandInput, type DeleteBucketReplicationCommandOutput } from "./commands/DeleteBucketReplicationCommand";
|
|
25
|
+
import { type DeleteBucketTaggingCommandInput, type DeleteBucketTaggingCommandOutput } from "./commands/DeleteBucketTaggingCommand";
|
|
26
|
+
import { type DeleteJobTaggingCommandInput, type DeleteJobTaggingCommandOutput } from "./commands/DeleteJobTaggingCommand";
|
|
27
|
+
import { type DeleteMultiRegionAccessPointCommandInput, type DeleteMultiRegionAccessPointCommandOutput } from "./commands/DeleteMultiRegionAccessPointCommand";
|
|
28
|
+
import { type DeletePublicAccessBlockCommandInput, type DeletePublicAccessBlockCommandOutput } from "./commands/DeletePublicAccessBlockCommand";
|
|
29
|
+
import { type DeleteStorageLensConfigurationCommandInput, type DeleteStorageLensConfigurationCommandOutput } from "./commands/DeleteStorageLensConfigurationCommand";
|
|
30
|
+
import { type DeleteStorageLensConfigurationTaggingCommandInput, type DeleteStorageLensConfigurationTaggingCommandOutput } from "./commands/DeleteStorageLensConfigurationTaggingCommand";
|
|
31
|
+
import { type DeleteStorageLensGroupCommandInput, type DeleteStorageLensGroupCommandOutput } from "./commands/DeleteStorageLensGroupCommand";
|
|
32
|
+
import { type DescribeJobCommandInput, type DescribeJobCommandOutput } from "./commands/DescribeJobCommand";
|
|
33
|
+
import { type DescribeMultiRegionAccessPointOperationCommandInput, type DescribeMultiRegionAccessPointOperationCommandOutput } from "./commands/DescribeMultiRegionAccessPointOperationCommand";
|
|
34
|
+
import { type DissociateAccessGrantsIdentityCenterCommandInput, type DissociateAccessGrantsIdentityCenterCommandOutput } from "./commands/DissociateAccessGrantsIdentityCenterCommand";
|
|
35
|
+
import { type GetAccessGrantCommandInput, type GetAccessGrantCommandOutput } from "./commands/GetAccessGrantCommand";
|
|
36
|
+
import { type GetAccessGrantsInstanceCommandInput, type GetAccessGrantsInstanceCommandOutput } from "./commands/GetAccessGrantsInstanceCommand";
|
|
37
|
+
import { type GetAccessGrantsInstanceForPrefixCommandInput, type GetAccessGrantsInstanceForPrefixCommandOutput } from "./commands/GetAccessGrantsInstanceForPrefixCommand";
|
|
38
|
+
import { type GetAccessGrantsInstanceResourcePolicyCommandInput, type GetAccessGrantsInstanceResourcePolicyCommandOutput } from "./commands/GetAccessGrantsInstanceResourcePolicyCommand";
|
|
39
|
+
import { type GetAccessGrantsLocationCommandInput, type GetAccessGrantsLocationCommandOutput } from "./commands/GetAccessGrantsLocationCommand";
|
|
40
|
+
import { type GetAccessPointCommandInput, type GetAccessPointCommandOutput } from "./commands/GetAccessPointCommand";
|
|
41
|
+
import { type GetAccessPointConfigurationForObjectLambdaCommandInput, type GetAccessPointConfigurationForObjectLambdaCommandOutput } from "./commands/GetAccessPointConfigurationForObjectLambdaCommand";
|
|
42
|
+
import { type GetAccessPointForObjectLambdaCommandInput, type GetAccessPointForObjectLambdaCommandOutput } from "./commands/GetAccessPointForObjectLambdaCommand";
|
|
43
|
+
import { type GetAccessPointPolicyCommandInput, type GetAccessPointPolicyCommandOutput } from "./commands/GetAccessPointPolicyCommand";
|
|
44
|
+
import { type GetAccessPointPolicyForObjectLambdaCommandInput, type GetAccessPointPolicyForObjectLambdaCommandOutput } from "./commands/GetAccessPointPolicyForObjectLambdaCommand";
|
|
45
|
+
import { type GetAccessPointPolicyStatusCommandInput, type GetAccessPointPolicyStatusCommandOutput } from "./commands/GetAccessPointPolicyStatusCommand";
|
|
46
|
+
import { type GetAccessPointPolicyStatusForObjectLambdaCommandInput, type GetAccessPointPolicyStatusForObjectLambdaCommandOutput } from "./commands/GetAccessPointPolicyStatusForObjectLambdaCommand";
|
|
47
|
+
import { type GetAccessPointScopeCommandInput, type GetAccessPointScopeCommandOutput } from "./commands/GetAccessPointScopeCommand";
|
|
48
|
+
import { type GetBucketCommandInput, type GetBucketCommandOutput } from "./commands/GetBucketCommand";
|
|
49
|
+
import { type GetBucketLifecycleConfigurationCommandInput, type GetBucketLifecycleConfigurationCommandOutput } from "./commands/GetBucketLifecycleConfigurationCommand";
|
|
50
|
+
import { type GetBucketPolicyCommandInput, type GetBucketPolicyCommandOutput } from "./commands/GetBucketPolicyCommand";
|
|
51
|
+
import { type GetBucketReplicationCommandInput, type GetBucketReplicationCommandOutput } from "./commands/GetBucketReplicationCommand";
|
|
52
|
+
import { type GetBucketTaggingCommandInput, type GetBucketTaggingCommandOutput } from "./commands/GetBucketTaggingCommand";
|
|
53
|
+
import { type GetBucketVersioningCommandInput, type GetBucketVersioningCommandOutput } from "./commands/GetBucketVersioningCommand";
|
|
54
|
+
import { type GetDataAccessCommandInput, type GetDataAccessCommandOutput } from "./commands/GetDataAccessCommand";
|
|
55
|
+
import { type GetJobTaggingCommandInput, type GetJobTaggingCommandOutput } from "./commands/GetJobTaggingCommand";
|
|
56
|
+
import { type GetMultiRegionAccessPointCommandInput, type GetMultiRegionAccessPointCommandOutput } from "./commands/GetMultiRegionAccessPointCommand";
|
|
57
|
+
import { type GetMultiRegionAccessPointPolicyCommandInput, type GetMultiRegionAccessPointPolicyCommandOutput } from "./commands/GetMultiRegionAccessPointPolicyCommand";
|
|
58
|
+
import { type GetMultiRegionAccessPointPolicyStatusCommandInput, type GetMultiRegionAccessPointPolicyStatusCommandOutput } from "./commands/GetMultiRegionAccessPointPolicyStatusCommand";
|
|
59
|
+
import { type GetMultiRegionAccessPointRoutesCommandInput, type GetMultiRegionAccessPointRoutesCommandOutput } from "./commands/GetMultiRegionAccessPointRoutesCommand";
|
|
60
|
+
import { type GetPublicAccessBlockCommandInput, type GetPublicAccessBlockCommandOutput } from "./commands/GetPublicAccessBlockCommand";
|
|
61
|
+
import { type GetStorageLensConfigurationCommandInput, type GetStorageLensConfigurationCommandOutput } from "./commands/GetStorageLensConfigurationCommand";
|
|
62
|
+
import { type GetStorageLensConfigurationTaggingCommandInput, type GetStorageLensConfigurationTaggingCommandOutput } from "./commands/GetStorageLensConfigurationTaggingCommand";
|
|
63
|
+
import { type GetStorageLensGroupCommandInput, type GetStorageLensGroupCommandOutput } from "./commands/GetStorageLensGroupCommand";
|
|
64
|
+
import { type ListAccessGrantsCommandInput, type ListAccessGrantsCommandOutput } from "./commands/ListAccessGrantsCommand";
|
|
65
|
+
import { type ListAccessGrantsInstancesCommandInput, type ListAccessGrantsInstancesCommandOutput } from "./commands/ListAccessGrantsInstancesCommand";
|
|
66
|
+
import { type ListAccessGrantsLocationsCommandInput, type ListAccessGrantsLocationsCommandOutput } from "./commands/ListAccessGrantsLocationsCommand";
|
|
67
|
+
import { type ListAccessPointsCommandInput, type ListAccessPointsCommandOutput } from "./commands/ListAccessPointsCommand";
|
|
68
|
+
import { type ListAccessPointsForDirectoryBucketsCommandInput, type ListAccessPointsForDirectoryBucketsCommandOutput } from "./commands/ListAccessPointsForDirectoryBucketsCommand";
|
|
69
|
+
import { type ListAccessPointsForObjectLambdaCommandInput, type ListAccessPointsForObjectLambdaCommandOutput } from "./commands/ListAccessPointsForObjectLambdaCommand";
|
|
70
|
+
import { type ListCallerAccessGrantsCommandInput, type ListCallerAccessGrantsCommandOutput } from "./commands/ListCallerAccessGrantsCommand";
|
|
71
|
+
import { type ListJobsCommandInput, type ListJobsCommandOutput } from "./commands/ListJobsCommand";
|
|
72
|
+
import { type ListMultiRegionAccessPointsCommandInput, type ListMultiRegionAccessPointsCommandOutput } from "./commands/ListMultiRegionAccessPointsCommand";
|
|
73
|
+
import { type ListRegionalBucketsCommandInput, type ListRegionalBucketsCommandOutput } from "./commands/ListRegionalBucketsCommand";
|
|
74
|
+
import { type ListStorageLensConfigurationsCommandInput, type ListStorageLensConfigurationsCommandOutput } from "./commands/ListStorageLensConfigurationsCommand";
|
|
75
|
+
import { type ListStorageLensGroupsCommandInput, type ListStorageLensGroupsCommandOutput } from "./commands/ListStorageLensGroupsCommand";
|
|
76
|
+
import { type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
77
|
+
import { type PutAccessGrantsInstanceResourcePolicyCommandInput, type PutAccessGrantsInstanceResourcePolicyCommandOutput } from "./commands/PutAccessGrantsInstanceResourcePolicyCommand";
|
|
78
|
+
import { type PutAccessPointConfigurationForObjectLambdaCommandInput, type PutAccessPointConfigurationForObjectLambdaCommandOutput } from "./commands/PutAccessPointConfigurationForObjectLambdaCommand";
|
|
79
|
+
import { type PutAccessPointPolicyCommandInput, type PutAccessPointPolicyCommandOutput } from "./commands/PutAccessPointPolicyCommand";
|
|
80
|
+
import { type PutAccessPointPolicyForObjectLambdaCommandInput, type PutAccessPointPolicyForObjectLambdaCommandOutput } from "./commands/PutAccessPointPolicyForObjectLambdaCommand";
|
|
81
|
+
import { type PutAccessPointScopeCommandInput, type PutAccessPointScopeCommandOutput } from "./commands/PutAccessPointScopeCommand";
|
|
82
|
+
import { type PutBucketLifecycleConfigurationCommandInput, type PutBucketLifecycleConfigurationCommandOutput } from "./commands/PutBucketLifecycleConfigurationCommand";
|
|
83
|
+
import { type PutBucketPolicyCommandInput, type PutBucketPolicyCommandOutput } from "./commands/PutBucketPolicyCommand";
|
|
84
|
+
import { type PutBucketReplicationCommandInput, type PutBucketReplicationCommandOutput } from "./commands/PutBucketReplicationCommand";
|
|
85
|
+
import { type PutBucketTaggingCommandInput, type PutBucketTaggingCommandOutput } from "./commands/PutBucketTaggingCommand";
|
|
86
|
+
import { type PutBucketVersioningCommandInput, type PutBucketVersioningCommandOutput } from "./commands/PutBucketVersioningCommand";
|
|
87
|
+
import { type PutJobTaggingCommandInput, type PutJobTaggingCommandOutput } from "./commands/PutJobTaggingCommand";
|
|
88
|
+
import { type PutMultiRegionAccessPointPolicyCommandInput, type PutMultiRegionAccessPointPolicyCommandOutput } from "./commands/PutMultiRegionAccessPointPolicyCommand";
|
|
89
|
+
import { type PutPublicAccessBlockCommandInput, type PutPublicAccessBlockCommandOutput } from "./commands/PutPublicAccessBlockCommand";
|
|
90
|
+
import { type PutStorageLensConfigurationCommandInput, type PutStorageLensConfigurationCommandOutput } from "./commands/PutStorageLensConfigurationCommand";
|
|
91
|
+
import { type PutStorageLensConfigurationTaggingCommandInput, type PutStorageLensConfigurationTaggingCommandOutput } from "./commands/PutStorageLensConfigurationTaggingCommand";
|
|
92
|
+
import { type SubmitMultiRegionAccessPointRoutesCommandInput, type SubmitMultiRegionAccessPointRoutesCommandOutput } from "./commands/SubmitMultiRegionAccessPointRoutesCommand";
|
|
93
|
+
import { type TagResourceCommandInput, type TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
94
|
+
import { type UntagResourceCommandInput, type UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
95
|
+
import { type UpdateAccessGrantsLocationCommandInput, type UpdateAccessGrantsLocationCommandOutput } from "./commands/UpdateAccessGrantsLocationCommand";
|
|
96
|
+
import { type UpdateJobPriorityCommandInput, type UpdateJobPriorityCommandOutput } from "./commands/UpdateJobPriorityCommand";
|
|
97
|
+
import { type UpdateJobStatusCommandInput, type UpdateJobStatusCommandOutput } from "./commands/UpdateJobStatusCommand";
|
|
98
|
+
import { type UpdateStorageLensGroupCommandInput, type UpdateStorageLensGroupCommandOutput } from "./commands/UpdateStorageLensGroupCommand";
|
|
99
99
|
import { S3ControlClient } from "./S3ControlClient";
|
|
100
100
|
export interface S3Control {
|
|
101
101
|
/**
|
|
@@ -6,107 +6,107 @@ import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/m
|
|
|
6
6
|
import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
7
7
|
import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
8
8
|
import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/smithy-client";
|
|
9
|
-
import {
|
|
9
|
+
import type { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, StreamCollector as __StreamCollector, StreamHasher as __StreamHasher, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
10
10
|
import { Readable } from "stream";
|
|
11
11
|
import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
12
|
-
import { AssociateAccessGrantsIdentityCenterCommandInput, AssociateAccessGrantsIdentityCenterCommandOutput } from "./commands/AssociateAccessGrantsIdentityCenterCommand";
|
|
13
|
-
import { CreateAccessGrantCommandInput, CreateAccessGrantCommandOutput } from "./commands/CreateAccessGrantCommand";
|
|
14
|
-
import { CreateAccessGrantsInstanceCommandInput, CreateAccessGrantsInstanceCommandOutput } from "./commands/CreateAccessGrantsInstanceCommand";
|
|
15
|
-
import { CreateAccessGrantsLocationCommandInput, CreateAccessGrantsLocationCommandOutput } from "./commands/CreateAccessGrantsLocationCommand";
|
|
16
|
-
import { CreateAccessPointCommandInput, CreateAccessPointCommandOutput } from "./commands/CreateAccessPointCommand";
|
|
17
|
-
import { CreateAccessPointForObjectLambdaCommandInput, CreateAccessPointForObjectLambdaCommandOutput } from "./commands/CreateAccessPointForObjectLambdaCommand";
|
|
18
|
-
import { CreateBucketCommandInput, CreateBucketCommandOutput } from "./commands/CreateBucketCommand";
|
|
19
|
-
import { CreateJobCommandInput, CreateJobCommandOutput } from "./commands/CreateJobCommand";
|
|
20
|
-
import { CreateMultiRegionAccessPointCommandInput, CreateMultiRegionAccessPointCommandOutput } from "./commands/CreateMultiRegionAccessPointCommand";
|
|
21
|
-
import { CreateStorageLensGroupCommandInput, CreateStorageLensGroupCommandOutput } from "./commands/CreateStorageLensGroupCommand";
|
|
22
|
-
import { DeleteAccessGrantCommandInput, DeleteAccessGrantCommandOutput } from "./commands/DeleteAccessGrantCommand";
|
|
23
|
-
import { DeleteAccessGrantsInstanceCommandInput, DeleteAccessGrantsInstanceCommandOutput } from "./commands/DeleteAccessGrantsInstanceCommand";
|
|
24
|
-
import { DeleteAccessGrantsInstanceResourcePolicyCommandInput, DeleteAccessGrantsInstanceResourcePolicyCommandOutput } from "./commands/DeleteAccessGrantsInstanceResourcePolicyCommand";
|
|
25
|
-
import { DeleteAccessGrantsLocationCommandInput, DeleteAccessGrantsLocationCommandOutput } from "./commands/DeleteAccessGrantsLocationCommand";
|
|
26
|
-
import { DeleteAccessPointCommandInput, DeleteAccessPointCommandOutput } from "./commands/DeleteAccessPointCommand";
|
|
27
|
-
import { DeleteAccessPointForObjectLambdaCommandInput, DeleteAccessPointForObjectLambdaCommandOutput } from "./commands/DeleteAccessPointForObjectLambdaCommand";
|
|
28
|
-
import { DeleteAccessPointPolicyCommandInput, DeleteAccessPointPolicyCommandOutput } from "./commands/DeleteAccessPointPolicyCommand";
|
|
29
|
-
import { DeleteAccessPointPolicyForObjectLambdaCommandInput, DeleteAccessPointPolicyForObjectLambdaCommandOutput } from "./commands/DeleteAccessPointPolicyForObjectLambdaCommand";
|
|
30
|
-
import { DeleteAccessPointScopeCommandInput, DeleteAccessPointScopeCommandOutput } from "./commands/DeleteAccessPointScopeCommand";
|
|
31
|
-
import { DeleteBucketCommandInput, DeleteBucketCommandOutput } from "./commands/DeleteBucketCommand";
|
|
32
|
-
import { DeleteBucketLifecycleConfigurationCommandInput, DeleteBucketLifecycleConfigurationCommandOutput } from "./commands/DeleteBucketLifecycleConfigurationCommand";
|
|
33
|
-
import { DeleteBucketPolicyCommandInput, DeleteBucketPolicyCommandOutput } from "./commands/DeleteBucketPolicyCommand";
|
|
34
|
-
import { DeleteBucketReplicationCommandInput, DeleteBucketReplicationCommandOutput } from "./commands/DeleteBucketReplicationCommand";
|
|
35
|
-
import { DeleteBucketTaggingCommandInput, DeleteBucketTaggingCommandOutput } from "./commands/DeleteBucketTaggingCommand";
|
|
36
|
-
import { DeleteJobTaggingCommandInput, DeleteJobTaggingCommandOutput } from "./commands/DeleteJobTaggingCommand";
|
|
37
|
-
import { DeleteMultiRegionAccessPointCommandInput, DeleteMultiRegionAccessPointCommandOutput } from "./commands/DeleteMultiRegionAccessPointCommand";
|
|
38
|
-
import { DeletePublicAccessBlockCommandInput, DeletePublicAccessBlockCommandOutput } from "./commands/DeletePublicAccessBlockCommand";
|
|
39
|
-
import { DeleteStorageLensConfigurationCommandInput, DeleteStorageLensConfigurationCommandOutput } from "./commands/DeleteStorageLensConfigurationCommand";
|
|
40
|
-
import { DeleteStorageLensConfigurationTaggingCommandInput, DeleteStorageLensConfigurationTaggingCommandOutput } from "./commands/DeleteStorageLensConfigurationTaggingCommand";
|
|
41
|
-
import { DeleteStorageLensGroupCommandInput, DeleteStorageLensGroupCommandOutput } from "./commands/DeleteStorageLensGroupCommand";
|
|
42
|
-
import { DescribeJobCommandInput, DescribeJobCommandOutput } from "./commands/DescribeJobCommand";
|
|
43
|
-
import { DescribeMultiRegionAccessPointOperationCommandInput, DescribeMultiRegionAccessPointOperationCommandOutput } from "./commands/DescribeMultiRegionAccessPointOperationCommand";
|
|
44
|
-
import { DissociateAccessGrantsIdentityCenterCommandInput, DissociateAccessGrantsIdentityCenterCommandOutput } from "./commands/DissociateAccessGrantsIdentityCenterCommand";
|
|
45
|
-
import { GetAccessGrantCommandInput, GetAccessGrantCommandOutput } from "./commands/GetAccessGrantCommand";
|
|
46
|
-
import { GetAccessGrantsInstanceCommandInput, GetAccessGrantsInstanceCommandOutput } from "./commands/GetAccessGrantsInstanceCommand";
|
|
47
|
-
import { GetAccessGrantsInstanceForPrefixCommandInput, GetAccessGrantsInstanceForPrefixCommandOutput } from "./commands/GetAccessGrantsInstanceForPrefixCommand";
|
|
48
|
-
import { GetAccessGrantsInstanceResourcePolicyCommandInput, GetAccessGrantsInstanceResourcePolicyCommandOutput } from "./commands/GetAccessGrantsInstanceResourcePolicyCommand";
|
|
49
|
-
import { GetAccessGrantsLocationCommandInput, GetAccessGrantsLocationCommandOutput } from "./commands/GetAccessGrantsLocationCommand";
|
|
50
|
-
import { GetAccessPointCommandInput, GetAccessPointCommandOutput } from "./commands/GetAccessPointCommand";
|
|
51
|
-
import { GetAccessPointConfigurationForObjectLambdaCommandInput, GetAccessPointConfigurationForObjectLambdaCommandOutput } from "./commands/GetAccessPointConfigurationForObjectLambdaCommand";
|
|
52
|
-
import { GetAccessPointForObjectLambdaCommandInput, GetAccessPointForObjectLambdaCommandOutput } from "./commands/GetAccessPointForObjectLambdaCommand";
|
|
53
|
-
import { GetAccessPointPolicyCommandInput, GetAccessPointPolicyCommandOutput } from "./commands/GetAccessPointPolicyCommand";
|
|
54
|
-
import { GetAccessPointPolicyForObjectLambdaCommandInput, GetAccessPointPolicyForObjectLambdaCommandOutput } from "./commands/GetAccessPointPolicyForObjectLambdaCommand";
|
|
55
|
-
import { GetAccessPointPolicyStatusCommandInput, GetAccessPointPolicyStatusCommandOutput } from "./commands/GetAccessPointPolicyStatusCommand";
|
|
56
|
-
import { GetAccessPointPolicyStatusForObjectLambdaCommandInput, GetAccessPointPolicyStatusForObjectLambdaCommandOutput } from "./commands/GetAccessPointPolicyStatusForObjectLambdaCommand";
|
|
57
|
-
import { GetAccessPointScopeCommandInput, GetAccessPointScopeCommandOutput } from "./commands/GetAccessPointScopeCommand";
|
|
58
|
-
import { GetBucketCommandInput, GetBucketCommandOutput } from "./commands/GetBucketCommand";
|
|
59
|
-
import { GetBucketLifecycleConfigurationCommandInput, GetBucketLifecycleConfigurationCommandOutput } from "./commands/GetBucketLifecycleConfigurationCommand";
|
|
60
|
-
import { GetBucketPolicyCommandInput, GetBucketPolicyCommandOutput } from "./commands/GetBucketPolicyCommand";
|
|
61
|
-
import { GetBucketReplicationCommandInput, GetBucketReplicationCommandOutput } from "./commands/GetBucketReplicationCommand";
|
|
62
|
-
import { GetBucketTaggingCommandInput, GetBucketTaggingCommandOutput } from "./commands/GetBucketTaggingCommand";
|
|
63
|
-
import { GetBucketVersioningCommandInput, GetBucketVersioningCommandOutput } from "./commands/GetBucketVersioningCommand";
|
|
64
|
-
import { GetDataAccessCommandInput, GetDataAccessCommandOutput } from "./commands/GetDataAccessCommand";
|
|
65
|
-
import { GetJobTaggingCommandInput, GetJobTaggingCommandOutput } from "./commands/GetJobTaggingCommand";
|
|
66
|
-
import { GetMultiRegionAccessPointCommandInput, GetMultiRegionAccessPointCommandOutput } from "./commands/GetMultiRegionAccessPointCommand";
|
|
67
|
-
import { GetMultiRegionAccessPointPolicyCommandInput, GetMultiRegionAccessPointPolicyCommandOutput } from "./commands/GetMultiRegionAccessPointPolicyCommand";
|
|
68
|
-
import { GetMultiRegionAccessPointPolicyStatusCommandInput, GetMultiRegionAccessPointPolicyStatusCommandOutput } from "./commands/GetMultiRegionAccessPointPolicyStatusCommand";
|
|
69
|
-
import { GetMultiRegionAccessPointRoutesCommandInput, GetMultiRegionAccessPointRoutesCommandOutput } from "./commands/GetMultiRegionAccessPointRoutesCommand";
|
|
70
|
-
import { GetPublicAccessBlockCommandInput, GetPublicAccessBlockCommandOutput } from "./commands/GetPublicAccessBlockCommand";
|
|
71
|
-
import { GetStorageLensConfigurationCommandInput, GetStorageLensConfigurationCommandOutput } from "./commands/GetStorageLensConfigurationCommand";
|
|
72
|
-
import { GetStorageLensConfigurationTaggingCommandInput, GetStorageLensConfigurationTaggingCommandOutput } from "./commands/GetStorageLensConfigurationTaggingCommand";
|
|
73
|
-
import { GetStorageLensGroupCommandInput, GetStorageLensGroupCommandOutput } from "./commands/GetStorageLensGroupCommand";
|
|
74
|
-
import { ListAccessGrantsCommandInput, ListAccessGrantsCommandOutput } from "./commands/ListAccessGrantsCommand";
|
|
75
|
-
import { ListAccessGrantsInstancesCommandInput, ListAccessGrantsInstancesCommandOutput } from "./commands/ListAccessGrantsInstancesCommand";
|
|
76
|
-
import { ListAccessGrantsLocationsCommandInput, ListAccessGrantsLocationsCommandOutput } from "./commands/ListAccessGrantsLocationsCommand";
|
|
77
|
-
import { ListAccessPointsCommandInput, ListAccessPointsCommandOutput } from "./commands/ListAccessPointsCommand";
|
|
78
|
-
import { ListAccessPointsForDirectoryBucketsCommandInput, ListAccessPointsForDirectoryBucketsCommandOutput } from "./commands/ListAccessPointsForDirectoryBucketsCommand";
|
|
79
|
-
import { ListAccessPointsForObjectLambdaCommandInput, ListAccessPointsForObjectLambdaCommandOutput } from "./commands/ListAccessPointsForObjectLambdaCommand";
|
|
80
|
-
import { ListCallerAccessGrantsCommandInput, ListCallerAccessGrantsCommandOutput } from "./commands/ListCallerAccessGrantsCommand";
|
|
81
|
-
import { ListJobsCommandInput, ListJobsCommandOutput } from "./commands/ListJobsCommand";
|
|
82
|
-
import { ListMultiRegionAccessPointsCommandInput, ListMultiRegionAccessPointsCommandOutput } from "./commands/ListMultiRegionAccessPointsCommand";
|
|
83
|
-
import { ListRegionalBucketsCommandInput, ListRegionalBucketsCommandOutput } from "./commands/ListRegionalBucketsCommand";
|
|
84
|
-
import { ListStorageLensConfigurationsCommandInput, ListStorageLensConfigurationsCommandOutput } from "./commands/ListStorageLensConfigurationsCommand";
|
|
85
|
-
import { ListStorageLensGroupsCommandInput, ListStorageLensGroupsCommandOutput } from "./commands/ListStorageLensGroupsCommand";
|
|
86
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
87
|
-
import { PutAccessGrantsInstanceResourcePolicyCommandInput, PutAccessGrantsInstanceResourcePolicyCommandOutput } from "./commands/PutAccessGrantsInstanceResourcePolicyCommand";
|
|
88
|
-
import { PutAccessPointConfigurationForObjectLambdaCommandInput, PutAccessPointConfigurationForObjectLambdaCommandOutput } from "./commands/PutAccessPointConfigurationForObjectLambdaCommand";
|
|
89
|
-
import { PutAccessPointPolicyCommandInput, PutAccessPointPolicyCommandOutput } from "./commands/PutAccessPointPolicyCommand";
|
|
90
|
-
import { PutAccessPointPolicyForObjectLambdaCommandInput, PutAccessPointPolicyForObjectLambdaCommandOutput } from "./commands/PutAccessPointPolicyForObjectLambdaCommand";
|
|
91
|
-
import { PutAccessPointScopeCommandInput, PutAccessPointScopeCommandOutput } from "./commands/PutAccessPointScopeCommand";
|
|
92
|
-
import { PutBucketLifecycleConfigurationCommandInput, PutBucketLifecycleConfigurationCommandOutput } from "./commands/PutBucketLifecycleConfigurationCommand";
|
|
93
|
-
import { PutBucketPolicyCommandInput, PutBucketPolicyCommandOutput } from "./commands/PutBucketPolicyCommand";
|
|
94
|
-
import { PutBucketReplicationCommandInput, PutBucketReplicationCommandOutput } from "./commands/PutBucketReplicationCommand";
|
|
95
|
-
import { PutBucketTaggingCommandInput, PutBucketTaggingCommandOutput } from "./commands/PutBucketTaggingCommand";
|
|
96
|
-
import { PutBucketVersioningCommandInput, PutBucketVersioningCommandOutput } from "./commands/PutBucketVersioningCommand";
|
|
97
|
-
import { PutJobTaggingCommandInput, PutJobTaggingCommandOutput } from "./commands/PutJobTaggingCommand";
|
|
98
|
-
import { PutMultiRegionAccessPointPolicyCommandInput, PutMultiRegionAccessPointPolicyCommandOutput } from "./commands/PutMultiRegionAccessPointPolicyCommand";
|
|
99
|
-
import { PutPublicAccessBlockCommandInput, PutPublicAccessBlockCommandOutput } from "./commands/PutPublicAccessBlockCommand";
|
|
100
|
-
import { PutStorageLensConfigurationCommandInput, PutStorageLensConfigurationCommandOutput } from "./commands/PutStorageLensConfigurationCommand";
|
|
101
|
-
import { PutStorageLensConfigurationTaggingCommandInput, PutStorageLensConfigurationTaggingCommandOutput } from "./commands/PutStorageLensConfigurationTaggingCommand";
|
|
102
|
-
import { SubmitMultiRegionAccessPointRoutesCommandInput, SubmitMultiRegionAccessPointRoutesCommandOutput } from "./commands/SubmitMultiRegionAccessPointRoutesCommand";
|
|
103
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
104
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
105
|
-
import { UpdateAccessGrantsLocationCommandInput, UpdateAccessGrantsLocationCommandOutput } from "./commands/UpdateAccessGrantsLocationCommand";
|
|
106
|
-
import { UpdateJobPriorityCommandInput, UpdateJobPriorityCommandOutput } from "./commands/UpdateJobPriorityCommand";
|
|
107
|
-
import { UpdateJobStatusCommandInput, UpdateJobStatusCommandOutput } from "./commands/UpdateJobStatusCommand";
|
|
108
|
-
import { UpdateStorageLensGroupCommandInput, UpdateStorageLensGroupCommandOutput } from "./commands/UpdateStorageLensGroupCommand";
|
|
109
|
-
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
12
|
+
import type { AssociateAccessGrantsIdentityCenterCommandInput, AssociateAccessGrantsIdentityCenterCommandOutput } from "./commands/AssociateAccessGrantsIdentityCenterCommand";
|
|
13
|
+
import type { CreateAccessGrantCommandInput, CreateAccessGrantCommandOutput } from "./commands/CreateAccessGrantCommand";
|
|
14
|
+
import type { CreateAccessGrantsInstanceCommandInput, CreateAccessGrantsInstanceCommandOutput } from "./commands/CreateAccessGrantsInstanceCommand";
|
|
15
|
+
import type { CreateAccessGrantsLocationCommandInput, CreateAccessGrantsLocationCommandOutput } from "./commands/CreateAccessGrantsLocationCommand";
|
|
16
|
+
import type { CreateAccessPointCommandInput, CreateAccessPointCommandOutput } from "./commands/CreateAccessPointCommand";
|
|
17
|
+
import type { CreateAccessPointForObjectLambdaCommandInput, CreateAccessPointForObjectLambdaCommandOutput } from "./commands/CreateAccessPointForObjectLambdaCommand";
|
|
18
|
+
import type { CreateBucketCommandInput, CreateBucketCommandOutput } from "./commands/CreateBucketCommand";
|
|
19
|
+
import type { CreateJobCommandInput, CreateJobCommandOutput } from "./commands/CreateJobCommand";
|
|
20
|
+
import type { CreateMultiRegionAccessPointCommandInput, CreateMultiRegionAccessPointCommandOutput } from "./commands/CreateMultiRegionAccessPointCommand";
|
|
21
|
+
import type { CreateStorageLensGroupCommandInput, CreateStorageLensGroupCommandOutput } from "./commands/CreateStorageLensGroupCommand";
|
|
22
|
+
import type { DeleteAccessGrantCommandInput, DeleteAccessGrantCommandOutput } from "./commands/DeleteAccessGrantCommand";
|
|
23
|
+
import type { DeleteAccessGrantsInstanceCommandInput, DeleteAccessGrantsInstanceCommandOutput } from "./commands/DeleteAccessGrantsInstanceCommand";
|
|
24
|
+
import type { DeleteAccessGrantsInstanceResourcePolicyCommandInput, DeleteAccessGrantsInstanceResourcePolicyCommandOutput } from "./commands/DeleteAccessGrantsInstanceResourcePolicyCommand";
|
|
25
|
+
import type { DeleteAccessGrantsLocationCommandInput, DeleteAccessGrantsLocationCommandOutput } from "./commands/DeleteAccessGrantsLocationCommand";
|
|
26
|
+
import type { DeleteAccessPointCommandInput, DeleteAccessPointCommandOutput } from "./commands/DeleteAccessPointCommand";
|
|
27
|
+
import type { DeleteAccessPointForObjectLambdaCommandInput, DeleteAccessPointForObjectLambdaCommandOutput } from "./commands/DeleteAccessPointForObjectLambdaCommand";
|
|
28
|
+
import type { DeleteAccessPointPolicyCommandInput, DeleteAccessPointPolicyCommandOutput } from "./commands/DeleteAccessPointPolicyCommand";
|
|
29
|
+
import type { DeleteAccessPointPolicyForObjectLambdaCommandInput, DeleteAccessPointPolicyForObjectLambdaCommandOutput } from "./commands/DeleteAccessPointPolicyForObjectLambdaCommand";
|
|
30
|
+
import type { DeleteAccessPointScopeCommandInput, DeleteAccessPointScopeCommandOutput } from "./commands/DeleteAccessPointScopeCommand";
|
|
31
|
+
import type { DeleteBucketCommandInput, DeleteBucketCommandOutput } from "./commands/DeleteBucketCommand";
|
|
32
|
+
import type { DeleteBucketLifecycleConfigurationCommandInput, DeleteBucketLifecycleConfigurationCommandOutput } from "./commands/DeleteBucketLifecycleConfigurationCommand";
|
|
33
|
+
import type { DeleteBucketPolicyCommandInput, DeleteBucketPolicyCommandOutput } from "./commands/DeleteBucketPolicyCommand";
|
|
34
|
+
import type { DeleteBucketReplicationCommandInput, DeleteBucketReplicationCommandOutput } from "./commands/DeleteBucketReplicationCommand";
|
|
35
|
+
import type { DeleteBucketTaggingCommandInput, DeleteBucketTaggingCommandOutput } from "./commands/DeleteBucketTaggingCommand";
|
|
36
|
+
import type { DeleteJobTaggingCommandInput, DeleteJobTaggingCommandOutput } from "./commands/DeleteJobTaggingCommand";
|
|
37
|
+
import type { DeleteMultiRegionAccessPointCommandInput, DeleteMultiRegionAccessPointCommandOutput } from "./commands/DeleteMultiRegionAccessPointCommand";
|
|
38
|
+
import type { DeletePublicAccessBlockCommandInput, DeletePublicAccessBlockCommandOutput } from "./commands/DeletePublicAccessBlockCommand";
|
|
39
|
+
import type { DeleteStorageLensConfigurationCommandInput, DeleteStorageLensConfigurationCommandOutput } from "./commands/DeleteStorageLensConfigurationCommand";
|
|
40
|
+
import type { DeleteStorageLensConfigurationTaggingCommandInput, DeleteStorageLensConfigurationTaggingCommandOutput } from "./commands/DeleteStorageLensConfigurationTaggingCommand";
|
|
41
|
+
import type { DeleteStorageLensGroupCommandInput, DeleteStorageLensGroupCommandOutput } from "./commands/DeleteStorageLensGroupCommand";
|
|
42
|
+
import type { DescribeJobCommandInput, DescribeJobCommandOutput } from "./commands/DescribeJobCommand";
|
|
43
|
+
import type { DescribeMultiRegionAccessPointOperationCommandInput, DescribeMultiRegionAccessPointOperationCommandOutput } from "./commands/DescribeMultiRegionAccessPointOperationCommand";
|
|
44
|
+
import type { DissociateAccessGrantsIdentityCenterCommandInput, DissociateAccessGrantsIdentityCenterCommandOutput } from "./commands/DissociateAccessGrantsIdentityCenterCommand";
|
|
45
|
+
import type { GetAccessGrantCommandInput, GetAccessGrantCommandOutput } from "./commands/GetAccessGrantCommand";
|
|
46
|
+
import type { GetAccessGrantsInstanceCommandInput, GetAccessGrantsInstanceCommandOutput } from "./commands/GetAccessGrantsInstanceCommand";
|
|
47
|
+
import type { GetAccessGrantsInstanceForPrefixCommandInput, GetAccessGrantsInstanceForPrefixCommandOutput } from "./commands/GetAccessGrantsInstanceForPrefixCommand";
|
|
48
|
+
import type { GetAccessGrantsInstanceResourcePolicyCommandInput, GetAccessGrantsInstanceResourcePolicyCommandOutput } from "./commands/GetAccessGrantsInstanceResourcePolicyCommand";
|
|
49
|
+
import type { GetAccessGrantsLocationCommandInput, GetAccessGrantsLocationCommandOutput } from "./commands/GetAccessGrantsLocationCommand";
|
|
50
|
+
import type { GetAccessPointCommandInput, GetAccessPointCommandOutput } from "./commands/GetAccessPointCommand";
|
|
51
|
+
import type { GetAccessPointConfigurationForObjectLambdaCommandInput, GetAccessPointConfigurationForObjectLambdaCommandOutput } from "./commands/GetAccessPointConfigurationForObjectLambdaCommand";
|
|
52
|
+
import type { GetAccessPointForObjectLambdaCommandInput, GetAccessPointForObjectLambdaCommandOutput } from "./commands/GetAccessPointForObjectLambdaCommand";
|
|
53
|
+
import type { GetAccessPointPolicyCommandInput, GetAccessPointPolicyCommandOutput } from "./commands/GetAccessPointPolicyCommand";
|
|
54
|
+
import type { GetAccessPointPolicyForObjectLambdaCommandInput, GetAccessPointPolicyForObjectLambdaCommandOutput } from "./commands/GetAccessPointPolicyForObjectLambdaCommand";
|
|
55
|
+
import type { GetAccessPointPolicyStatusCommandInput, GetAccessPointPolicyStatusCommandOutput } from "./commands/GetAccessPointPolicyStatusCommand";
|
|
56
|
+
import type { GetAccessPointPolicyStatusForObjectLambdaCommandInput, GetAccessPointPolicyStatusForObjectLambdaCommandOutput } from "./commands/GetAccessPointPolicyStatusForObjectLambdaCommand";
|
|
57
|
+
import type { GetAccessPointScopeCommandInput, GetAccessPointScopeCommandOutput } from "./commands/GetAccessPointScopeCommand";
|
|
58
|
+
import type { GetBucketCommandInput, GetBucketCommandOutput } from "./commands/GetBucketCommand";
|
|
59
|
+
import type { GetBucketLifecycleConfigurationCommandInput, GetBucketLifecycleConfigurationCommandOutput } from "./commands/GetBucketLifecycleConfigurationCommand";
|
|
60
|
+
import type { GetBucketPolicyCommandInput, GetBucketPolicyCommandOutput } from "./commands/GetBucketPolicyCommand";
|
|
61
|
+
import type { GetBucketReplicationCommandInput, GetBucketReplicationCommandOutput } from "./commands/GetBucketReplicationCommand";
|
|
62
|
+
import type { GetBucketTaggingCommandInput, GetBucketTaggingCommandOutput } from "./commands/GetBucketTaggingCommand";
|
|
63
|
+
import type { GetBucketVersioningCommandInput, GetBucketVersioningCommandOutput } from "./commands/GetBucketVersioningCommand";
|
|
64
|
+
import type { GetDataAccessCommandInput, GetDataAccessCommandOutput } from "./commands/GetDataAccessCommand";
|
|
65
|
+
import type { GetJobTaggingCommandInput, GetJobTaggingCommandOutput } from "./commands/GetJobTaggingCommand";
|
|
66
|
+
import type { GetMultiRegionAccessPointCommandInput, GetMultiRegionAccessPointCommandOutput } from "./commands/GetMultiRegionAccessPointCommand";
|
|
67
|
+
import type { GetMultiRegionAccessPointPolicyCommandInput, GetMultiRegionAccessPointPolicyCommandOutput } from "./commands/GetMultiRegionAccessPointPolicyCommand";
|
|
68
|
+
import type { GetMultiRegionAccessPointPolicyStatusCommandInput, GetMultiRegionAccessPointPolicyStatusCommandOutput } from "./commands/GetMultiRegionAccessPointPolicyStatusCommand";
|
|
69
|
+
import type { GetMultiRegionAccessPointRoutesCommandInput, GetMultiRegionAccessPointRoutesCommandOutput } from "./commands/GetMultiRegionAccessPointRoutesCommand";
|
|
70
|
+
import type { GetPublicAccessBlockCommandInput, GetPublicAccessBlockCommandOutput } from "./commands/GetPublicAccessBlockCommand";
|
|
71
|
+
import type { GetStorageLensConfigurationCommandInput, GetStorageLensConfigurationCommandOutput } from "./commands/GetStorageLensConfigurationCommand";
|
|
72
|
+
import type { GetStorageLensConfigurationTaggingCommandInput, GetStorageLensConfigurationTaggingCommandOutput } from "./commands/GetStorageLensConfigurationTaggingCommand";
|
|
73
|
+
import type { GetStorageLensGroupCommandInput, GetStorageLensGroupCommandOutput } from "./commands/GetStorageLensGroupCommand";
|
|
74
|
+
import type { ListAccessGrantsCommandInput, ListAccessGrantsCommandOutput } from "./commands/ListAccessGrantsCommand";
|
|
75
|
+
import type { ListAccessGrantsInstancesCommandInput, ListAccessGrantsInstancesCommandOutput } from "./commands/ListAccessGrantsInstancesCommand";
|
|
76
|
+
import type { ListAccessGrantsLocationsCommandInput, ListAccessGrantsLocationsCommandOutput } from "./commands/ListAccessGrantsLocationsCommand";
|
|
77
|
+
import type { ListAccessPointsCommandInput, ListAccessPointsCommandOutput } from "./commands/ListAccessPointsCommand";
|
|
78
|
+
import type { ListAccessPointsForDirectoryBucketsCommandInput, ListAccessPointsForDirectoryBucketsCommandOutput } from "./commands/ListAccessPointsForDirectoryBucketsCommand";
|
|
79
|
+
import type { ListAccessPointsForObjectLambdaCommandInput, ListAccessPointsForObjectLambdaCommandOutput } from "./commands/ListAccessPointsForObjectLambdaCommand";
|
|
80
|
+
import type { ListCallerAccessGrantsCommandInput, ListCallerAccessGrantsCommandOutput } from "./commands/ListCallerAccessGrantsCommand";
|
|
81
|
+
import type { ListJobsCommandInput, ListJobsCommandOutput } from "./commands/ListJobsCommand";
|
|
82
|
+
import type { ListMultiRegionAccessPointsCommandInput, ListMultiRegionAccessPointsCommandOutput } from "./commands/ListMultiRegionAccessPointsCommand";
|
|
83
|
+
import type { ListRegionalBucketsCommandInput, ListRegionalBucketsCommandOutput } from "./commands/ListRegionalBucketsCommand";
|
|
84
|
+
import type { ListStorageLensConfigurationsCommandInput, ListStorageLensConfigurationsCommandOutput } from "./commands/ListStorageLensConfigurationsCommand";
|
|
85
|
+
import type { ListStorageLensGroupsCommandInput, ListStorageLensGroupsCommandOutput } from "./commands/ListStorageLensGroupsCommand";
|
|
86
|
+
import type { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
87
|
+
import type { PutAccessGrantsInstanceResourcePolicyCommandInput, PutAccessGrantsInstanceResourcePolicyCommandOutput } from "./commands/PutAccessGrantsInstanceResourcePolicyCommand";
|
|
88
|
+
import type { PutAccessPointConfigurationForObjectLambdaCommandInput, PutAccessPointConfigurationForObjectLambdaCommandOutput } from "./commands/PutAccessPointConfigurationForObjectLambdaCommand";
|
|
89
|
+
import type { PutAccessPointPolicyCommandInput, PutAccessPointPolicyCommandOutput } from "./commands/PutAccessPointPolicyCommand";
|
|
90
|
+
import type { PutAccessPointPolicyForObjectLambdaCommandInput, PutAccessPointPolicyForObjectLambdaCommandOutput } from "./commands/PutAccessPointPolicyForObjectLambdaCommand";
|
|
91
|
+
import type { PutAccessPointScopeCommandInput, PutAccessPointScopeCommandOutput } from "./commands/PutAccessPointScopeCommand";
|
|
92
|
+
import type { PutBucketLifecycleConfigurationCommandInput, PutBucketLifecycleConfigurationCommandOutput } from "./commands/PutBucketLifecycleConfigurationCommand";
|
|
93
|
+
import type { PutBucketPolicyCommandInput, PutBucketPolicyCommandOutput } from "./commands/PutBucketPolicyCommand";
|
|
94
|
+
import type { PutBucketReplicationCommandInput, PutBucketReplicationCommandOutput } from "./commands/PutBucketReplicationCommand";
|
|
95
|
+
import type { PutBucketTaggingCommandInput, PutBucketTaggingCommandOutput } from "./commands/PutBucketTaggingCommand";
|
|
96
|
+
import type { PutBucketVersioningCommandInput, PutBucketVersioningCommandOutput } from "./commands/PutBucketVersioningCommand";
|
|
97
|
+
import type { PutJobTaggingCommandInput, PutJobTaggingCommandOutput } from "./commands/PutJobTaggingCommand";
|
|
98
|
+
import type { PutMultiRegionAccessPointPolicyCommandInput, PutMultiRegionAccessPointPolicyCommandOutput } from "./commands/PutMultiRegionAccessPointPolicyCommand";
|
|
99
|
+
import type { PutPublicAccessBlockCommandInput, PutPublicAccessBlockCommandOutput } from "./commands/PutPublicAccessBlockCommand";
|
|
100
|
+
import type { PutStorageLensConfigurationCommandInput, PutStorageLensConfigurationCommandOutput } from "./commands/PutStorageLensConfigurationCommand";
|
|
101
|
+
import type { PutStorageLensConfigurationTaggingCommandInput, PutStorageLensConfigurationTaggingCommandOutput } from "./commands/PutStorageLensConfigurationTaggingCommand";
|
|
102
|
+
import type { SubmitMultiRegionAccessPointRoutesCommandInput, SubmitMultiRegionAccessPointRoutesCommandOutput } from "./commands/SubmitMultiRegionAccessPointRoutesCommand";
|
|
103
|
+
import type { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
104
|
+
import type { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
105
|
+
import type { UpdateAccessGrantsLocationCommandInput, UpdateAccessGrantsLocationCommandOutput } from "./commands/UpdateAccessGrantsLocationCommand";
|
|
106
|
+
import type { UpdateJobPriorityCommandInput, UpdateJobPriorityCommandOutput } from "./commands/UpdateJobPriorityCommand";
|
|
107
|
+
import type { UpdateJobStatusCommandInput, UpdateJobStatusCommandOutput } from "./commands/UpdateJobStatusCommand";
|
|
108
|
+
import type { UpdateStorageLensGroupCommandInput, UpdateStorageLensGroupCommandOutput } from "./commands/UpdateStorageLensGroupCommand";
|
|
109
|
+
import { type ClientInputEndpointParameters, type ClientResolvedEndpointParameters, type EndpointParameters } from "./endpoint/EndpointParameters";
|
|
110
110
|
import { type RuntimeExtension, type RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
111
111
|
export { __Client };
|
|
112
112
|
/**
|
|
@@ -215,7 +215,7 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
215
215
|
* The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
|
|
216
216
|
* @internal
|
|
217
217
|
*/
|
|
218
|
-
defaultUserAgentProvider?:
|
|
218
|
+
defaultUserAgentProvider?: __Provider<__UserAgent>;
|
|
219
219
|
/**
|
|
220
220
|
* Default credentials provider; Not available in browser runtime.
|
|
221
221
|
* @deprecated
|
|
@@ -225,7 +225,7 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
225
225
|
/**
|
|
226
226
|
* Whether to override the request region with the region inferred from requested resource's ARN. Defaults to undefined.
|
|
227
227
|
*/
|
|
228
|
-
useArnRegion?: boolean | undefined |
|
|
228
|
+
useArnRegion?: boolean | undefined | __Provider<boolean | undefined>;
|
|
229
229
|
/**
|
|
230
230
|
* Value for how many times a request will be made at most in case of retry.
|
|
231
231
|
*/
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types";
|
|
2
2
|
import type { S3ControlHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core";
|
|
1
|
+
import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core/httpAuthSchemes";
|
|
2
2
|
import type { HandlerExecutionContext, HttpAuthScheme, HttpAuthSchemeParameters, HttpAuthSchemeParametersProvider, HttpAuthSchemeProvider, Provider } from "@smithy/types";
|
|
3
3
|
import { type S3ControlClientResolvedConfig } from "../S3ControlClient";
|
|
4
4
|
/**
|
package/dist-types/index.d.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*/
|
|
6
6
|
export * from "./S3ControlClient";
|
|
7
7
|
export * from "./S3Control";
|
|
8
|
-
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
8
|
+
export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
9
9
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
10
10
|
export type { S3ControlExtensionConfiguration } from "./extensionConfiguration";
|
|
11
11
|
export * from "./commands";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AsyncOperationName, BucketCannedACL, BucketLocationConstraint, BucketVersioningStatus, ComputeObjectChecksumAlgorithm, ComputeObjectChecksumType, DeleteMarkerReplicationStatus, ExistingObjectReplicationStatus, ExpirationStatus, Format, GeneratedManifestFormat, GranteeType, JobManifestFieldName, JobManifestFormat, JobReportFormat, JobReportScope, JobStatus, MetricsStatus, MFADelete, MFADeleteStatus, MultiRegionAccessPointStatus, NetworkOrigin, ObjectLambdaAccessPointAliasStatus, ObjectLambdaAllowedFeature, ObjectLambdaTransformationConfigurationAction, OperationName, OutputSchemaVersion, OwnerOverride, Permission, Privilege, ReplicaModificationsStatus, ReplicationRuleStatus, ReplicationStatus, ReplicationStorageClass, ReplicationTimeStatus, S3CannedAccessControlList, S3ChecksumAlgorithm, S3GlacierJobTier, S3GranteeTypeIdentifier, S3MetadataDirective, S3ObjectLockLegalHoldStatus, S3ObjectLockMode, S3ObjectLockRetentionMode, S3Permission, S3PrefixType, S3SSEAlgorithm, S3StorageClass, ScopePermission, SseKmsEncryptedObjectsStatus, TransitionStorageClass } from "./enums";
|
|
1
|
+
import type { AsyncOperationName, BucketCannedACL, BucketLocationConstraint, BucketVersioningStatus, ComputeObjectChecksumAlgorithm, ComputeObjectChecksumType, DeleteMarkerReplicationStatus, ExistingObjectReplicationStatus, ExpirationStatus, Format, GeneratedManifestFormat, GranteeType, JobManifestFieldName, JobManifestFormat, JobReportFormat, JobReportScope, JobStatus, MetricsStatus, MFADelete, MFADeleteStatus, MultiRegionAccessPointStatus, NetworkOrigin, ObjectLambdaAccessPointAliasStatus, ObjectLambdaAllowedFeature, ObjectLambdaTransformationConfigurationAction, OperationName, OutputSchemaVersion, OwnerOverride, Permission, Privilege, ReplicaModificationsStatus, ReplicationRuleStatus, ReplicationStatus, ReplicationStorageClass, ReplicationTimeStatus, S3CannedAccessControlList, S3ChecksumAlgorithm, S3GlacierJobTier, S3GranteeTypeIdentifier, S3MetadataDirective, S3ObjectLockLegalHoldStatus, S3ObjectLockMode, S3ObjectLockRetentionMode, S3Permission, S3PrefixType, S3SSEAlgorithm, S3StorageClass, ScopePermission, SseKmsEncryptedObjectsStatus, TransitionStorageClass } from "./enums";
|
|
2
2
|
/**
|
|
3
3
|
* <p>The container for abort incomplete multipart upload</p>
|
|
4
4
|
* @public
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListAccessGrantsInstancesCommandInput, ListAccessGrantsInstancesCommandOutput } from "../commands/ListAccessGrantsInstancesCommand";
|
|
3
|
-
import { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListAccessGrantsLocationsCommandInput, ListAccessGrantsLocationsCommandOutput } from "../commands/ListAccessGrantsLocationsCommand";
|
|
3
|
-
import { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListAccessGrantsCommandInput, ListAccessGrantsCommandOutput } from "../commands/ListAccessGrantsCommand";
|
|
3
|
-
import { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListAccessPointsForDirectoryBucketsCommandInput, ListAccessPointsForDirectoryBucketsCommandOutput } from "../commands/ListAccessPointsForDirectoryBucketsCommand";
|
|
3
|
-
import { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListAccessPointsForObjectLambdaCommandInput, ListAccessPointsForObjectLambdaCommandOutput } from "../commands/ListAccessPointsForObjectLambdaCommand";
|
|
3
|
-
import { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListAccessPointsCommandInput, ListAccessPointsCommandOutput } from "../commands/ListAccessPointsCommand";
|
|
3
|
-
import { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListCallerAccessGrantsCommandInput, ListCallerAccessGrantsCommandOutput } from "../commands/ListCallerAccessGrantsCommand";
|
|
3
|
-
import { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListJobsCommandInput, ListJobsCommandOutput } from "../commands/ListJobsCommand";
|
|
3
|
-
import { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListMultiRegionAccessPointsCommandInput, ListMultiRegionAccessPointsCommandOutput } from "../commands/ListMultiRegionAccessPointsCommand";
|
|
3
|
-
import { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListRegionalBucketsCommandInput, ListRegionalBucketsCommandOutput } from "../commands/ListRegionalBucketsCommand";
|
|
3
|
-
import { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListStorageLensConfigurationsCommandInput, ListStorageLensConfigurationsCommandOutput } from "../commands/ListStorageLensConfigurationsCommand";
|
|
3
|
-
import { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListStorageLensGroupsCommandInput, ListStorageLensGroupsCommandOutput } from "../commands/ListStorageLensGroupsCommand";
|
|
3
|
-
import { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -20,7 +20,7 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
|
20
20
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
21
21
|
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
22
22
|
cacheMiddleware?: boolean | undefined;
|
|
23
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsRestXmlProtocol;
|
|
23
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestXmlProtocol;
|
|
24
24
|
protocolSettings: {
|
|
25
25
|
defaultNamespace?: string;
|
|
26
26
|
[setting: string]: unknown;
|
|
@@ -23,7 +23,7 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
|
23
23
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
24
24
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
25
25
|
cacheMiddleware?: boolean | undefined;
|
|
26
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsRestXmlProtocol;
|
|
26
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestXmlProtocol;
|
|
27
27
|
protocolSettings: {
|
|
28
28
|
defaultNamespace?: string;
|
|
29
29
|
[setting: string]: unknown;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
|
7
7
|
sha256: import("@smithy/types").HashConstructor;
|
|
8
8
|
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
9
9
|
cacheMiddleware?: boolean;
|
|
10
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsRestXmlProtocol;
|
|
10
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestXmlProtocol;
|
|
11
11
|
protocolSettings: {
|
|
12
12
|
defaultNamespace?: string;
|
|
13
13
|
[setting: string]: unknown;
|
|
@@ -30,6 +30,7 @@ import {
|
|
|
30
30
|
Client as __Client,
|
|
31
31
|
} from "@smithy/smithy-client";
|
|
32
32
|
import {
|
|
33
|
+
AwsCredentialIdentityProvider,
|
|
33
34
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
34
35
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
35
36
|
ChecksumConstructor as __ChecksumConstructor,
|
|
@@ -42,8 +43,6 @@ import {
|
|
|
42
43
|
StreamCollector as __StreamCollector,
|
|
43
44
|
StreamHasher as __StreamHasher,
|
|
44
45
|
UrlParser as __UrlParser,
|
|
45
|
-
AwsCredentialIdentityProvider,
|
|
46
|
-
Provider,
|
|
47
46
|
UserAgent as __UserAgent,
|
|
48
47
|
} from "@smithy/types";
|
|
49
48
|
import { Readable } from "stream";
|
|
@@ -660,9 +659,9 @@ export interface ClientDefaults
|
|
|
660
659
|
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
661
660
|
region?: string | __Provider<string>;
|
|
662
661
|
profile?: string;
|
|
663
|
-
defaultUserAgentProvider?:
|
|
662
|
+
defaultUserAgentProvider?: __Provider<__UserAgent>;
|
|
664
663
|
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
665
|
-
useArnRegion?: boolean | undefined |
|
|
664
|
+
useArnRegion?: boolean | undefined | __Provider<boolean | undefined>;
|
|
666
665
|
maxAttempts?: number | __Provider<number>;
|
|
667
666
|
retryMode?: string | __Provider<string>;
|
|
668
667
|
logger?: __Logger;
|
|
@@ -34,7 +34,7 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
|
34
34
|
protocol:
|
|
35
35
|
| import("@smithy/types").ClientProtocol<any, any>
|
|
36
36
|
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
37
|
-
| typeof import("@aws-sdk/core").AwsRestXmlProtocol;
|
|
37
|
+
| typeof import("@aws-sdk/core/protocols").AwsRestXmlProtocol;
|
|
38
38
|
protocolSettings: {
|
|
39
39
|
defaultNamespace?: string;
|
|
40
40
|
[setting: string]: unknown;
|
|
@@ -35,7 +35,7 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
|
35
35
|
protocol:
|
|
36
36
|
| import("@smithy/types").ClientProtocol<any, any>
|
|
37
37
|
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
38
|
-
| typeof import("@aws-sdk/core").AwsRestXmlProtocol;
|
|
38
|
+
| typeof import("@aws-sdk/core/protocols").AwsRestXmlProtocol;
|
|
39
39
|
protocolSettings: {
|
|
40
40
|
defaultNamespace?: string;
|
|
41
41
|
[setting: string]: unknown;
|
|
@@ -12,7 +12,7 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
|
12
12
|
protocol:
|
|
13
13
|
| import("@smithy/types").ClientProtocol<any, any>
|
|
14
14
|
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
15
|
-
| typeof import("@aws-sdk/core").AwsRestXmlProtocol;
|
|
15
|
+
| typeof import("@aws-sdk/core/protocols").AwsRestXmlProtocol;
|
|
16
16
|
protocolSettings: {
|
|
17
17
|
defaultNamespace?: string;
|
|
18
18
|
[setting: string]: unknown;
|
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.1020.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-s3-control",
|
|
@@ -25,21 +25,21 @@
|
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
27
27
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
28
|
-
"@aws-sdk/core": "^3.973.
|
|
29
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
28
|
+
"@aws-sdk/core": "^3.973.26",
|
|
29
|
+
"@aws-sdk/credential-provider-node": "^3.972.28",
|
|
30
30
|
"@aws-sdk/middleware-bucket-endpoint": "^3.972.8",
|
|
31
31
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
32
32
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
33
33
|
"@aws-sdk/middleware-recursion-detection": "^3.972.9",
|
|
34
34
|
"@aws-sdk/middleware-sdk-s3-control": "^3.972.8",
|
|
35
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
35
|
+
"@aws-sdk/middleware-user-agent": "^3.972.27",
|
|
36
36
|
"@aws-sdk/region-config-resolver": "^3.972.10",
|
|
37
37
|
"@aws-sdk/types": "^3.973.6",
|
|
38
38
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
39
39
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
40
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
40
|
+
"@aws-sdk/util-user-agent-node": "^3.973.13",
|
|
41
41
|
"@smithy/config-resolver": "^4.4.13",
|
|
42
|
-
"@smithy/core": "^3.23.
|
|
42
|
+
"@smithy/core": "^3.23.13",
|
|
43
43
|
"@smithy/fetch-http-handler": "^5.3.15",
|
|
44
44
|
"@smithy/hash-blob-browser": "^4.2.13",
|
|
45
45
|
"@smithy/hash-node": "^4.2.12",
|
|
@@ -48,21 +48,21 @@
|
|
|
48
48
|
"@smithy/md5-js": "^4.2.12",
|
|
49
49
|
"@smithy/middleware-apply-body-checksum": "^4.3.12",
|
|
50
50
|
"@smithy/middleware-content-length": "^4.2.12",
|
|
51
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
52
|
-
"@smithy/middleware-retry": "^4.4.
|
|
53
|
-
"@smithy/middleware-serde": "^4.2.
|
|
51
|
+
"@smithy/middleware-endpoint": "^4.4.28",
|
|
52
|
+
"@smithy/middleware-retry": "^4.4.45",
|
|
53
|
+
"@smithy/middleware-serde": "^4.2.16",
|
|
54
54
|
"@smithy/middleware-stack": "^4.2.12",
|
|
55
55
|
"@smithy/node-config-provider": "^4.3.12",
|
|
56
|
-
"@smithy/node-http-handler": "^4.5.
|
|
56
|
+
"@smithy/node-http-handler": "^4.5.1",
|
|
57
57
|
"@smithy/protocol-http": "^5.3.12",
|
|
58
|
-
"@smithy/smithy-client": "^4.12.
|
|
58
|
+
"@smithy/smithy-client": "^4.12.8",
|
|
59
59
|
"@smithy/types": "^4.13.1",
|
|
60
60
|
"@smithy/url-parser": "^4.2.12",
|
|
61
61
|
"@smithy/util-base64": "^4.3.2",
|
|
62
62
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
63
63
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
64
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
65
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
64
|
+
"@smithy/util-defaults-mode-browser": "^4.3.44",
|
|
65
|
+
"@smithy/util-defaults-mode-node": "^4.2.48",
|
|
66
66
|
"@smithy/util-endpoints": "^3.3.3",
|
|
67
67
|
"@smithy/util-middleware": "^4.2.12",
|
|
68
68
|
"@smithy/util-retry": "^4.2.12",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"tslib": "^2.6.2"
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
73
|
-
"@smithy/snapshot-testing": "^2.0.
|
|
73
|
+
"@smithy/snapshot-testing": "^2.0.4",
|
|
74
74
|
"@tsconfig/node20": "20.1.8",
|
|
75
75
|
"@types/node": "^20.14.8",
|
|
76
76
|
"concurrently": "7.0.0",
|