@aws-sdk/client-s3 3.703.0 → 3.709.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 +24 -0
- package/dist-cjs/index.js +330 -102
- package/dist-es/S3.js +6 -0
- package/dist-es/commands/CreateBucketMetadataTableConfigurationCommand.js +32 -0
- package/dist-es/commands/DeleteBucketMetadataTableConfigurationCommand.js +26 -0
- package/dist-es/commands/GetBucketMetadataTableConfigurationCommand.js +28 -0
- package/dist-es/commands/PutBucketEncryptionCommand.js +1 -1
- package/dist-es/commands/PutBucketInventoryConfigurationCommand.js +1 -1
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +0 -12
- package/dist-es/models/models_1.js +13 -0
- package/dist-es/protocols/Aws_restXml.js +157 -0
- package/dist-types/S3.d.ts +21 -0
- package/dist-types/S3Client.d.ts +5 -2
- package/dist-types/commands/CreateBucketCommand.d.ts +13 -13
- package/dist-types/commands/CreateBucketMetadataTableConfigurationCommand.d.ts +134 -0
- package/dist-types/commands/DeleteBucketMetadataTableConfigurationCommand.d.ts +95 -0
- package/dist-types/commands/DeleteObjectCommand.d.ts +10 -10
- package/dist-types/commands/DeleteObjectsCommand.d.ts +22 -22
- package/dist-types/commands/GetBucketMetadataTableConfigurationCommand.d.ts +111 -0
- package/dist-types/commands/GetObjectCommand.d.ts +19 -19
- package/dist-types/commands/GetObjectTaggingCommand.d.ts +19 -19
- package/dist-types/commands/PutBucketCorsCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketEncryptionCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketIntelligentTieringConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketInventoryConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketLifecycleConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketLoggingCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketMetricsConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/PutObjectCommand.d.ts +40 -40
- package/dist-types/commands/UploadPartCopyCommand.d.ts +13 -13
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +377 -352
- package/dist-types/models/models_1.d.ts +352 -1
- package/dist-types/protocols/Aws_restXml.d.ts +27 -0
- package/dist-types/ts3.4/S3.d.ts +69 -0
- package/dist-types/ts3.4/S3Client.d.ts +18 -0
- package/dist-types/ts3.4/commands/CreateBucketMetadataTableConfigurationCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteBucketMetadataTableConfigurationCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetBucketMetadataTableConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutBucketCorsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutBucketEncryptionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutBucketIntelligentTieringConfigurationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutBucketInventoryConfigurationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutBucketLifecycleConfigurationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutBucketLoggingCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutBucketMetricsConfigurationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +47 -66
- package/dist-types/ts3.4/models/models_1.d.ts +74 -0
- package/dist-types/ts3.4/protocols/Aws_restXml.d.ts +36 -0
- package/package.json +52 -52
package/dist-es/S3.js
CHANGED
|
@@ -3,6 +3,7 @@ import { AbortMultipartUploadCommand, } from "./commands/AbortMultipartUploadCom
|
|
|
3
3
|
import { CompleteMultipartUploadCommand, } from "./commands/CompleteMultipartUploadCommand";
|
|
4
4
|
import { CopyObjectCommand } from "./commands/CopyObjectCommand";
|
|
5
5
|
import { CreateBucketCommand, } from "./commands/CreateBucketCommand";
|
|
6
|
+
import { CreateBucketMetadataTableConfigurationCommand, } from "./commands/CreateBucketMetadataTableConfigurationCommand";
|
|
6
7
|
import { CreateMultipartUploadCommand, } from "./commands/CreateMultipartUploadCommand";
|
|
7
8
|
import { CreateSessionCommand, } from "./commands/CreateSessionCommand";
|
|
8
9
|
import { DeleteBucketAnalyticsConfigurationCommand, } from "./commands/DeleteBucketAnalyticsConfigurationCommand";
|
|
@@ -12,6 +13,7 @@ import { DeleteBucketEncryptionCommand, } from "./commands/DeleteBucketEncryptio
|
|
|
12
13
|
import { DeleteBucketIntelligentTieringConfigurationCommand, } from "./commands/DeleteBucketIntelligentTieringConfigurationCommand";
|
|
13
14
|
import { DeleteBucketInventoryConfigurationCommand, } from "./commands/DeleteBucketInventoryConfigurationCommand";
|
|
14
15
|
import { DeleteBucketLifecycleCommand, } from "./commands/DeleteBucketLifecycleCommand";
|
|
16
|
+
import { DeleteBucketMetadataTableConfigurationCommand, } from "./commands/DeleteBucketMetadataTableConfigurationCommand";
|
|
15
17
|
import { DeleteBucketMetricsConfigurationCommand, } from "./commands/DeleteBucketMetricsConfigurationCommand";
|
|
16
18
|
import { DeleteBucketOwnershipControlsCommand, } from "./commands/DeleteBucketOwnershipControlsCommand";
|
|
17
19
|
import { DeleteBucketPolicyCommand, } from "./commands/DeleteBucketPolicyCommand";
|
|
@@ -32,6 +34,7 @@ import { GetBucketInventoryConfigurationCommand, } from "./commands/GetBucketInv
|
|
|
32
34
|
import { GetBucketLifecycleConfigurationCommand, } from "./commands/GetBucketLifecycleConfigurationCommand";
|
|
33
35
|
import { GetBucketLocationCommand, } from "./commands/GetBucketLocationCommand";
|
|
34
36
|
import { GetBucketLoggingCommand, } from "./commands/GetBucketLoggingCommand";
|
|
37
|
+
import { GetBucketMetadataTableConfigurationCommand, } from "./commands/GetBucketMetadataTableConfigurationCommand";
|
|
35
38
|
import { GetBucketMetricsConfigurationCommand, } from "./commands/GetBucketMetricsConfigurationCommand";
|
|
36
39
|
import { GetBucketNotificationConfigurationCommand, } from "./commands/GetBucketNotificationConfigurationCommand";
|
|
37
40
|
import { GetBucketOwnershipControlsCommand, } from "./commands/GetBucketOwnershipControlsCommand";
|
|
@@ -100,6 +103,7 @@ const commands = {
|
|
|
100
103
|
CompleteMultipartUploadCommand,
|
|
101
104
|
CopyObjectCommand,
|
|
102
105
|
CreateBucketCommand,
|
|
106
|
+
CreateBucketMetadataTableConfigurationCommand,
|
|
103
107
|
CreateMultipartUploadCommand,
|
|
104
108
|
CreateSessionCommand,
|
|
105
109
|
DeleteBucketCommand,
|
|
@@ -109,6 +113,7 @@ const commands = {
|
|
|
109
113
|
DeleteBucketIntelligentTieringConfigurationCommand,
|
|
110
114
|
DeleteBucketInventoryConfigurationCommand,
|
|
111
115
|
DeleteBucketLifecycleCommand,
|
|
116
|
+
DeleteBucketMetadataTableConfigurationCommand,
|
|
112
117
|
DeleteBucketMetricsConfigurationCommand,
|
|
113
118
|
DeleteBucketOwnershipControlsCommand,
|
|
114
119
|
DeleteBucketPolicyCommand,
|
|
@@ -129,6 +134,7 @@ const commands = {
|
|
|
129
134
|
GetBucketLifecycleConfigurationCommand,
|
|
130
135
|
GetBucketLocationCommand,
|
|
131
136
|
GetBucketLoggingCommand,
|
|
137
|
+
GetBucketMetadataTableConfigurationCommand,
|
|
132
138
|
GetBucketMetricsConfigurationCommand,
|
|
133
139
|
GetBucketNotificationConfigurationCommand,
|
|
134
140
|
GetBucketOwnershipControlsCommand,
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { getFlexibleChecksumsPlugin } from "@aws-sdk/middleware-flexible-checksums";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
3
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
4
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
5
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
6
|
+
import { de_CreateBucketMetadataTableConfigurationCommand, se_CreateBucketMetadataTableConfigurationCommand, } from "../protocols/Aws_restXml";
|
|
7
|
+
export { $Command };
|
|
8
|
+
export class CreateBucketMetadataTableConfigurationCommand extends $Command
|
|
9
|
+
.classBuilder()
|
|
10
|
+
.ep({
|
|
11
|
+
...commonParams,
|
|
12
|
+
UseS3ExpressControlEndpoint: { type: "staticContextParams", value: true },
|
|
13
|
+
Bucket: { type: "contextParams", name: "Bucket" },
|
|
14
|
+
})
|
|
15
|
+
.m(function (Command, cs, config, o) {
|
|
16
|
+
return [
|
|
17
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
18
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
19
|
+
getFlexibleChecksumsPlugin(config, {
|
|
20
|
+
requestAlgorithmMember: "ChecksumAlgorithm",
|
|
21
|
+
requestAlgorithmMemberHttpHeader: "x-amz-sdk-checksum-algorithm",
|
|
22
|
+
requestChecksumRequired: true,
|
|
23
|
+
}),
|
|
24
|
+
];
|
|
25
|
+
})
|
|
26
|
+
.s("AmazonS3", "CreateBucketMetadataTableConfiguration", {})
|
|
27
|
+
.n("S3Client", "CreateBucketMetadataTableConfigurationCommand")
|
|
28
|
+
.f(void 0, void 0)
|
|
29
|
+
.ser(se_CreateBucketMetadataTableConfigurationCommand)
|
|
30
|
+
.de(de_CreateBucketMetadataTableConfigurationCommand)
|
|
31
|
+
.build() {
|
|
32
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_DeleteBucketMetadataTableConfigurationCommand, se_DeleteBucketMetadataTableConfigurationCommand, } from "../protocols/Aws_restXml";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class DeleteBucketMetadataTableConfigurationCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep({
|
|
10
|
+
...commonParams,
|
|
11
|
+
UseS3ExpressControlEndpoint: { type: "staticContextParams", value: true },
|
|
12
|
+
Bucket: { type: "contextParams", name: "Bucket" },
|
|
13
|
+
})
|
|
14
|
+
.m(function (Command, cs, config, o) {
|
|
15
|
+
return [
|
|
16
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
17
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
18
|
+
];
|
|
19
|
+
})
|
|
20
|
+
.s("AmazonS3", "DeleteBucketMetadataTableConfiguration", {})
|
|
21
|
+
.n("S3Client", "DeleteBucketMetadataTableConfigurationCommand")
|
|
22
|
+
.f(void 0, void 0)
|
|
23
|
+
.ser(se_DeleteBucketMetadataTableConfigurationCommand)
|
|
24
|
+
.de(de_DeleteBucketMetadataTableConfigurationCommand)
|
|
25
|
+
.build() {
|
|
26
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
3
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
4
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
5
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
6
|
+
import { de_GetBucketMetadataTableConfigurationCommand, se_GetBucketMetadataTableConfigurationCommand, } from "../protocols/Aws_restXml";
|
|
7
|
+
export { $Command };
|
|
8
|
+
export class GetBucketMetadataTableConfigurationCommand extends $Command
|
|
9
|
+
.classBuilder()
|
|
10
|
+
.ep({
|
|
11
|
+
...commonParams,
|
|
12
|
+
UseS3ExpressControlEndpoint: { type: "staticContextParams", value: true },
|
|
13
|
+
Bucket: { type: "contextParams", name: "Bucket" },
|
|
14
|
+
})
|
|
15
|
+
.m(function (Command, cs, config, o) {
|
|
16
|
+
return [
|
|
17
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
18
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
19
|
+
getThrow200ExceptionsPlugin(config),
|
|
20
|
+
];
|
|
21
|
+
})
|
|
22
|
+
.s("AmazonS3", "GetBucketMetadataTableConfiguration", {})
|
|
23
|
+
.n("S3Client", "GetBucketMetadataTableConfigurationCommand")
|
|
24
|
+
.f(void 0, void 0)
|
|
25
|
+
.ser(se_GetBucketMetadataTableConfigurationCommand)
|
|
26
|
+
.de(de_GetBucketMetadataTableConfigurationCommand)
|
|
27
|
+
.build() {
|
|
28
|
+
}
|
|
@@ -3,7 +3,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
3
3
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
4
4
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
5
5
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
6
|
-
import { PutBucketEncryptionRequestFilterSensitiveLog } from "../models/
|
|
6
|
+
import { PutBucketEncryptionRequestFilterSensitiveLog } from "../models/models_1";
|
|
7
7
|
import { de_PutBucketEncryptionCommand, se_PutBucketEncryptionCommand } from "../protocols/Aws_restXml";
|
|
8
8
|
export { $Command };
|
|
9
9
|
export class PutBucketEncryptionCommand extends $Command
|
|
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import { PutBucketInventoryConfigurationRequestFilterSensitiveLog, } from "../models/
|
|
5
|
+
import { PutBucketInventoryConfigurationRequestFilterSensitiveLog, } from "../models/models_1";
|
|
6
6
|
import { de_PutBucketInventoryConfigurationCommand, se_PutBucketInventoryConfigurationCommand, } from "../protocols/Aws_restXml";
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class PutBucketInventoryConfigurationCommand extends $Command
|
|
@@ -2,6 +2,7 @@ export * from "./AbortMultipartUploadCommand";
|
|
|
2
2
|
export * from "./CompleteMultipartUploadCommand";
|
|
3
3
|
export * from "./CopyObjectCommand";
|
|
4
4
|
export * from "./CreateBucketCommand";
|
|
5
|
+
export * from "./CreateBucketMetadataTableConfigurationCommand";
|
|
5
6
|
export * from "./CreateMultipartUploadCommand";
|
|
6
7
|
export * from "./CreateSessionCommand";
|
|
7
8
|
export * from "./DeleteBucketAnalyticsConfigurationCommand";
|
|
@@ -11,6 +12,7 @@ export * from "./DeleteBucketEncryptionCommand";
|
|
|
11
12
|
export * from "./DeleteBucketIntelligentTieringConfigurationCommand";
|
|
12
13
|
export * from "./DeleteBucketInventoryConfigurationCommand";
|
|
13
14
|
export * from "./DeleteBucketLifecycleCommand";
|
|
15
|
+
export * from "./DeleteBucketMetadataTableConfigurationCommand";
|
|
14
16
|
export * from "./DeleteBucketMetricsConfigurationCommand";
|
|
15
17
|
export * from "./DeleteBucketOwnershipControlsCommand";
|
|
16
18
|
export * from "./DeleteBucketPolicyCommand";
|
|
@@ -31,6 +33,7 @@ export * from "./GetBucketInventoryConfigurationCommand";
|
|
|
31
33
|
export * from "./GetBucketLifecycleConfigurationCommand";
|
|
32
34
|
export * from "./GetBucketLocationCommand";
|
|
33
35
|
export * from "./GetBucketLoggingCommand";
|
|
36
|
+
export * from "./GetBucketMetadataTableConfigurationCommand";
|
|
34
37
|
export * from "./GetBucketMetricsConfigurationCommand";
|
|
35
38
|
export * from "./GetBucketNotificationConfigurationCommand";
|
|
36
39
|
export * from "./GetBucketOwnershipControlsCommand";
|
|
@@ -578,15 +578,3 @@ export const ListPartsRequestFilterSensitiveLog = (obj) => ({
|
|
|
578
578
|
...obj,
|
|
579
579
|
...(obj.SSECustomerKey && { SSECustomerKey: SENSITIVE_STRING }),
|
|
580
580
|
});
|
|
581
|
-
export const PutBucketEncryptionRequestFilterSensitiveLog = (obj) => ({
|
|
582
|
-
...obj,
|
|
583
|
-
...(obj.ServerSideEncryptionConfiguration && {
|
|
584
|
-
ServerSideEncryptionConfiguration: ServerSideEncryptionConfigurationFilterSensitiveLog(obj.ServerSideEncryptionConfiguration),
|
|
585
|
-
}),
|
|
586
|
-
});
|
|
587
|
-
export const PutBucketInventoryConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
588
|
-
...obj,
|
|
589
|
-
...(obj.InventoryConfiguration && {
|
|
590
|
-
InventoryConfiguration: InventoryConfigurationFilterSensitiveLog(obj.InventoryConfiguration),
|
|
591
|
-
}),
|
|
592
|
-
});
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
|
+
import { InventoryConfigurationFilterSensitiveLog, ServerSideEncryptionConfigurationFilterSensitiveLog, } from "./models_0";
|
|
2
3
|
import { S3ServiceException as __BaseException } from "./S3ServiceException";
|
|
3
4
|
export const MFADelete = {
|
|
4
5
|
Disabled: "Disabled",
|
|
@@ -109,6 +110,18 @@ export var SelectObjectContentEventStream;
|
|
|
109
110
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
110
111
|
};
|
|
111
112
|
})(SelectObjectContentEventStream || (SelectObjectContentEventStream = {}));
|
|
113
|
+
export const PutBucketEncryptionRequestFilterSensitiveLog = (obj) => ({
|
|
114
|
+
...obj,
|
|
115
|
+
...(obj.ServerSideEncryptionConfiguration && {
|
|
116
|
+
ServerSideEncryptionConfiguration: ServerSideEncryptionConfigurationFilterSensitiveLog(obj.ServerSideEncryptionConfiguration),
|
|
117
|
+
}),
|
|
118
|
+
});
|
|
119
|
+
export const PutBucketInventoryConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
120
|
+
...obj,
|
|
121
|
+
...(obj.InventoryConfiguration && {
|
|
122
|
+
InventoryConfiguration: InventoryConfigurationFilterSensitiveLog(obj.InventoryConfiguration),
|
|
123
|
+
}),
|
|
124
|
+
});
|
|
112
125
|
export const PutObjectOutputFilterSensitiveLog = (obj) => ({
|
|
113
126
|
...obj,
|
|
114
127
|
...(obj.SSEKMSKeyId && { SSEKMSKeyId: SENSITIVE_STRING }),
|
|
@@ -141,6 +141,30 @@ export const se_CreateBucketCommand = async (input, context) => {
|
|
|
141
141
|
b.m("PUT").h(headers).b(body);
|
|
142
142
|
return b.build();
|
|
143
143
|
};
|
|
144
|
+
export const se_CreateBucketMetadataTableConfigurationCommand = async (input, context) => {
|
|
145
|
+
const b = rb(input, context);
|
|
146
|
+
const headers = map({}, isSerializableHeaderValue, {
|
|
147
|
+
"content-type": "application/xml",
|
|
148
|
+
[_cm]: input[_CMD],
|
|
149
|
+
[_xasca]: input[_CA],
|
|
150
|
+
[_xaebo]: input[_EBO],
|
|
151
|
+
});
|
|
152
|
+
b.bp("/");
|
|
153
|
+
b.p("Bucket", () => input.Bucket, "{Bucket}", false);
|
|
154
|
+
const query = map({
|
|
155
|
+
[_mT]: [, ""],
|
|
156
|
+
});
|
|
157
|
+
let body;
|
|
158
|
+
let contents;
|
|
159
|
+
if (input.MetadataTableConfiguration !== undefined) {
|
|
160
|
+
contents = se_MetadataTableConfiguration(input.MetadataTableConfiguration, context);
|
|
161
|
+
body = _ve;
|
|
162
|
+
contents.a("xmlns", "http://s3.amazonaws.com/doc/2006-03-01/");
|
|
163
|
+
body += contents.toString();
|
|
164
|
+
}
|
|
165
|
+
b.m("POST").h(headers).q(query).b(body);
|
|
166
|
+
return b.build();
|
|
167
|
+
};
|
|
144
168
|
export const se_CreateMultipartUploadCommand = async (input, context) => {
|
|
145
169
|
const b = rb(input, context);
|
|
146
170
|
const headers = map({}, isSerializableHeaderValue, {
|
|
@@ -301,6 +325,20 @@ export const se_DeleteBucketLifecycleCommand = async (input, context) => {
|
|
|
301
325
|
b.m("DELETE").h(headers).q(query).b(body);
|
|
302
326
|
return b.build();
|
|
303
327
|
};
|
|
328
|
+
export const se_DeleteBucketMetadataTableConfigurationCommand = async (input, context) => {
|
|
329
|
+
const b = rb(input, context);
|
|
330
|
+
const headers = map({}, isSerializableHeaderValue, {
|
|
331
|
+
[_xaebo]: input[_EBO],
|
|
332
|
+
});
|
|
333
|
+
b.bp("/");
|
|
334
|
+
b.p("Bucket", () => input.Bucket, "{Bucket}", false);
|
|
335
|
+
const query = map({
|
|
336
|
+
[_mT]: [, ""],
|
|
337
|
+
});
|
|
338
|
+
let body;
|
|
339
|
+
b.m("DELETE").h(headers).q(query).b(body);
|
|
340
|
+
return b.build();
|
|
341
|
+
};
|
|
304
342
|
export const se_DeleteBucketMetricsConfigurationCommand = async (input, context) => {
|
|
305
343
|
const b = rb(input, context);
|
|
306
344
|
const headers = map({}, isSerializableHeaderValue, {
|
|
@@ -609,6 +647,20 @@ export const se_GetBucketLoggingCommand = async (input, context) => {
|
|
|
609
647
|
b.m("GET").h(headers).q(query).b(body);
|
|
610
648
|
return b.build();
|
|
611
649
|
};
|
|
650
|
+
export const se_GetBucketMetadataTableConfigurationCommand = async (input, context) => {
|
|
651
|
+
const b = rb(input, context);
|
|
652
|
+
const headers = map({}, isSerializableHeaderValue, {
|
|
653
|
+
[_xaebo]: input[_EBO],
|
|
654
|
+
});
|
|
655
|
+
b.bp("/");
|
|
656
|
+
b.p("Bucket", () => input.Bucket, "{Bucket}", false);
|
|
657
|
+
const query = map({
|
|
658
|
+
[_mT]: [, ""],
|
|
659
|
+
});
|
|
660
|
+
let body;
|
|
661
|
+
b.m("GET").h(headers).q(query).b(body);
|
|
662
|
+
return b.build();
|
|
663
|
+
};
|
|
612
664
|
export const se_GetBucketMetricsConfigurationCommand = async (input, context) => {
|
|
613
665
|
const b = rb(input, context);
|
|
614
666
|
const headers = map({}, isSerializableHeaderValue, {
|
|
@@ -2105,6 +2157,16 @@ export const de_CreateBucketCommand = async (output, context) => {
|
|
|
2105
2157
|
await collectBody(output.body, context);
|
|
2106
2158
|
return contents;
|
|
2107
2159
|
};
|
|
2160
|
+
export const de_CreateBucketMetadataTableConfigurationCommand = async (output, context) => {
|
|
2161
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2162
|
+
return de_CommandError(output, context);
|
|
2163
|
+
}
|
|
2164
|
+
const contents = map({
|
|
2165
|
+
$metadata: deserializeMetadata(output),
|
|
2166
|
+
});
|
|
2167
|
+
await collectBody(output.body, context);
|
|
2168
|
+
return contents;
|
|
2169
|
+
};
|
|
2108
2170
|
export const de_CreateMultipartUploadCommand = async (output, context) => {
|
|
2109
2171
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2110
2172
|
return de_CommandError(output, context);
|
|
@@ -2224,6 +2286,16 @@ export const de_DeleteBucketLifecycleCommand = async (output, context) => {
|
|
|
2224
2286
|
await collectBody(output.body, context);
|
|
2225
2287
|
return contents;
|
|
2226
2288
|
};
|
|
2289
|
+
export const de_DeleteBucketMetadataTableConfigurationCommand = async (output, context) => {
|
|
2290
|
+
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
2291
|
+
return de_CommandError(output, context);
|
|
2292
|
+
}
|
|
2293
|
+
const contents = map({
|
|
2294
|
+
$metadata: deserializeMetadata(output),
|
|
2295
|
+
});
|
|
2296
|
+
await collectBody(output.body, context);
|
|
2297
|
+
return contents;
|
|
2298
|
+
};
|
|
2227
2299
|
export const de_DeleteBucketMetricsConfigurationCommand = async (output, context) => {
|
|
2228
2300
|
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
2229
2301
|
return de_CommandError(output, context);
|
|
@@ -2477,6 +2549,17 @@ export const de_GetBucketLoggingCommand = async (output, context) => {
|
|
|
2477
2549
|
}
|
|
2478
2550
|
return contents;
|
|
2479
2551
|
};
|
|
2552
|
+
export const de_GetBucketMetadataTableConfigurationCommand = async (output, context) => {
|
|
2553
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2554
|
+
return de_CommandError(output, context);
|
|
2555
|
+
}
|
|
2556
|
+
const contents = map({
|
|
2557
|
+
$metadata: deserializeMetadata(output),
|
|
2558
|
+
});
|
|
2559
|
+
const data = __expectObject(await parseBody(output.body, context));
|
|
2560
|
+
contents.GetBucketMetadataTableConfigurationResult = de_GetBucketMetadataTableConfigurationResult(data, context);
|
|
2561
|
+
return contents;
|
|
2562
|
+
};
|
|
2480
2563
|
export const de_GetBucketMetricsConfigurationCommand = async (output, context) => {
|
|
2481
2564
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2482
2565
|
return de_CommandError(output, context);
|
|
@@ -4521,6 +4604,13 @@ const se_MetadataEntry = (input, context) => {
|
|
|
4521
4604
|
}
|
|
4522
4605
|
return bn;
|
|
4523
4606
|
};
|
|
4607
|
+
const se_MetadataTableConfiguration = (input, context) => {
|
|
4608
|
+
const bn = new __XmlNode(_MTC);
|
|
4609
|
+
if (input[_STD] != null) {
|
|
4610
|
+
bn.c(se_S3TablesDestination(input[_STD], context).n(_STD));
|
|
4611
|
+
}
|
|
4612
|
+
return bn;
|
|
4613
|
+
};
|
|
4524
4614
|
const se_Metrics = (input, context) => {
|
|
4525
4615
|
const bn = new __XmlNode(_Me);
|
|
4526
4616
|
if (input[_S] != null) {
|
|
@@ -4946,6 +5036,16 @@ const se_S3Location = (input, context) => {
|
|
|
4946
5036
|
bn.cc(input, _SC);
|
|
4947
5037
|
return bn;
|
|
4948
5038
|
};
|
|
5039
|
+
const se_S3TablesDestination = (input, context) => {
|
|
5040
|
+
const bn = new __XmlNode(_STD);
|
|
5041
|
+
if (input[_TBA] != null) {
|
|
5042
|
+
bn.c(__XmlNode.of(_STBA, input[_TBA]).n(_TBA));
|
|
5043
|
+
}
|
|
5044
|
+
if (input[_TN] != null) {
|
|
5045
|
+
bn.c(__XmlNode.of(_STN, input[_TN]).n(_TN));
|
|
5046
|
+
}
|
|
5047
|
+
return bn;
|
|
5048
|
+
};
|
|
4949
5049
|
const se_ScanRange = (input, context) => {
|
|
4950
5050
|
const bn = new __XmlNode(_SR);
|
|
4951
5051
|
if (input[_St] != null) {
|
|
@@ -5582,6 +5682,16 @@ const de__Error = (output, context) => {
|
|
|
5582
5682
|
}
|
|
5583
5683
|
return contents;
|
|
5584
5684
|
};
|
|
5685
|
+
const de_ErrorDetails = (output, context) => {
|
|
5686
|
+
const contents = {};
|
|
5687
|
+
if (output[_EC] != null) {
|
|
5688
|
+
contents[_EC] = __expectString(output[_EC]);
|
|
5689
|
+
}
|
|
5690
|
+
if (output[_EM] != null) {
|
|
5691
|
+
contents[_EM] = __expectString(output[_EM]);
|
|
5692
|
+
}
|
|
5693
|
+
return contents;
|
|
5694
|
+
};
|
|
5585
5695
|
const de_ErrorDocument = (output, context) => {
|
|
5586
5696
|
const contents = {};
|
|
5587
5697
|
if (output[_K] != null) {
|
|
@@ -5638,6 +5748,19 @@ const de_FilterRuleList = (output, context) => {
|
|
|
5638
5748
|
return de_FilterRule(entry, context);
|
|
5639
5749
|
});
|
|
5640
5750
|
};
|
|
5751
|
+
const de_GetBucketMetadataTableConfigurationResult = (output, context) => {
|
|
5752
|
+
const contents = {};
|
|
5753
|
+
if (output[_MTCR] != null) {
|
|
5754
|
+
contents[_MTCR] = de_MetadataTableConfigurationResult(output[_MTCR], context);
|
|
5755
|
+
}
|
|
5756
|
+
if (output[_S] != null) {
|
|
5757
|
+
contents[_S] = __expectString(output[_S]);
|
|
5758
|
+
}
|
|
5759
|
+
if (output[_Er] != null) {
|
|
5760
|
+
contents[_Er] = de_ErrorDetails(output[_Er], context);
|
|
5761
|
+
}
|
|
5762
|
+
return contents;
|
|
5763
|
+
};
|
|
5641
5764
|
const de_GetObjectAttributesParts = (output, context) => {
|
|
5642
5765
|
const contents = {};
|
|
5643
5766
|
if (output[_PC] != null) {
|
|
@@ -6000,6 +6123,13 @@ const de_LoggingEnabled = (output, context) => {
|
|
|
6000
6123
|
}
|
|
6001
6124
|
return contents;
|
|
6002
6125
|
};
|
|
6126
|
+
const de_MetadataTableConfigurationResult = (output, context) => {
|
|
6127
|
+
const contents = {};
|
|
6128
|
+
if (output[_STDR] != null) {
|
|
6129
|
+
contents[_STDR] = de_S3TablesDestinationResult(output[_STDR], context);
|
|
6130
|
+
}
|
|
6131
|
+
return contents;
|
|
6132
|
+
};
|
|
6003
6133
|
const de_Metrics = (output, context) => {
|
|
6004
6134
|
const contents = {};
|
|
6005
6135
|
if (output[_S] != null) {
|
|
@@ -6587,6 +6717,22 @@ const de_S3KeyFilter = (output, context) => {
|
|
|
6587
6717
|
}
|
|
6588
6718
|
return contents;
|
|
6589
6719
|
};
|
|
6720
|
+
const de_S3TablesDestinationResult = (output, context) => {
|
|
6721
|
+
const contents = {};
|
|
6722
|
+
if (output[_TBA] != null) {
|
|
6723
|
+
contents[_TBA] = __expectString(output[_TBA]);
|
|
6724
|
+
}
|
|
6725
|
+
if (output[_TN] != null) {
|
|
6726
|
+
contents[_TN] = __expectString(output[_TN]);
|
|
6727
|
+
}
|
|
6728
|
+
if (output[_TAa] != null) {
|
|
6729
|
+
contents[_TAa] = __expectString(output[_TAa]);
|
|
6730
|
+
}
|
|
6731
|
+
if (output[_TNa] != null) {
|
|
6732
|
+
contents[_TNa] = __expectString(output[_TNa]);
|
|
6733
|
+
}
|
|
6734
|
+
return contents;
|
|
6735
|
+
};
|
|
6590
6736
|
const de_ServerSideEncryptionByDefault = (output, context) => {
|
|
6591
6737
|
const contents = {};
|
|
6592
6738
|
if (output[_SSEA] != null) {
|
|
@@ -7076,6 +7222,8 @@ const _MKe = "MetadataKey";
|
|
|
7076
7222
|
const _MM = "MissingMeta";
|
|
7077
7223
|
const _MP = "MaxParts";
|
|
7078
7224
|
const _MS = "MetricsStatus";
|
|
7225
|
+
const _MTC = "MetadataTableConfiguration";
|
|
7226
|
+
const _MTCR = "MetadataTableConfigurationResult";
|
|
7079
7227
|
const _MU = "MaxUploads";
|
|
7080
7228
|
const _MV = "MetadataValue";
|
|
7081
7229
|
const _Me = "Metrics";
|
|
@@ -7231,6 +7379,10 @@ const _SSEKMSKI = "SSEKMSKeyId";
|
|
|
7231
7379
|
const _SSER = "ServerSideEncryptionRule";
|
|
7232
7380
|
const _SSES = "SSES3";
|
|
7233
7381
|
const _ST = "SessionToken";
|
|
7382
|
+
const _STBA = "S3TablesBucketArn";
|
|
7383
|
+
const _STD = "S3TablesDestination";
|
|
7384
|
+
const _STDR = "S3TablesDestinationResult";
|
|
7385
|
+
const _STN = "S3TablesName";
|
|
7234
7386
|
const _S_ = "S3";
|
|
7235
7387
|
const _Sc = "Schedule";
|
|
7236
7388
|
const _Se = "Setting";
|
|
@@ -7239,7 +7391,9 @@ const _St = "Start";
|
|
|
7239
7391
|
const _Su = "Suffix";
|
|
7240
7392
|
const _T = "Tagging";
|
|
7241
7393
|
const _TA = "TopicArn";
|
|
7394
|
+
const _TAa = "TableArn";
|
|
7242
7395
|
const _TB = "TargetBucket";
|
|
7396
|
+
const _TBA = "TableBucketArn";
|
|
7243
7397
|
const _TC = "TagCount";
|
|
7244
7398
|
const _TCo = "TopicConfiguration";
|
|
7245
7399
|
const _TCop = "TopicConfigurations";
|
|
@@ -7247,6 +7401,8 @@ const _TD = "TaggingDirective";
|
|
|
7247
7401
|
const _TDMOS = "TransitionDefaultMinimumObjectSize";
|
|
7248
7402
|
const _TG = "TargetGrants";
|
|
7249
7403
|
const _TGa = "TargetGrant";
|
|
7404
|
+
const _TN = "TableName";
|
|
7405
|
+
const _TNa = "TableNamespace";
|
|
7250
7406
|
const _TOKF = "TargetObjectKeyFormat";
|
|
7251
7407
|
const _TP = "TargetPrefix";
|
|
7252
7408
|
const _TPC = "TotalPartsCount";
|
|
@@ -7319,6 +7475,7 @@ const _lo = "location";
|
|
|
7319
7475
|
const _log = "logging";
|
|
7320
7476
|
const _lt = "list-type";
|
|
7321
7477
|
const _m = "metrics";
|
|
7478
|
+
const _mT = "metadataTable";
|
|
7322
7479
|
const _ma = "marker";
|
|
7323
7480
|
const _mb = "max-buckets";
|
|
7324
7481
|
const _mdb = "max-directory-buckets";
|
package/dist-types/S3.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import { AbortMultipartUploadCommandInput, AbortMultipartUploadCommandOutput } f
|
|
|
3
3
|
import { CompleteMultipartUploadCommandInput, CompleteMultipartUploadCommandOutput } from "./commands/CompleteMultipartUploadCommand";
|
|
4
4
|
import { CopyObjectCommandInput, CopyObjectCommandOutput } from "./commands/CopyObjectCommand";
|
|
5
5
|
import { CreateBucketCommandInput, CreateBucketCommandOutput } from "./commands/CreateBucketCommand";
|
|
6
|
+
import { CreateBucketMetadataTableConfigurationCommandInput, CreateBucketMetadataTableConfigurationCommandOutput } from "./commands/CreateBucketMetadataTableConfigurationCommand";
|
|
6
7
|
import { CreateMultipartUploadCommandInput, CreateMultipartUploadCommandOutput } from "./commands/CreateMultipartUploadCommand";
|
|
7
8
|
import { CreateSessionCommandInput, CreateSessionCommandOutput } from "./commands/CreateSessionCommand";
|
|
8
9
|
import { DeleteBucketAnalyticsConfigurationCommandInput, DeleteBucketAnalyticsConfigurationCommandOutput } from "./commands/DeleteBucketAnalyticsConfigurationCommand";
|
|
@@ -12,6 +13,7 @@ import { DeleteBucketEncryptionCommandInput, DeleteBucketEncryptionCommandOutput
|
|
|
12
13
|
import { DeleteBucketIntelligentTieringConfigurationCommandInput, DeleteBucketIntelligentTieringConfigurationCommandOutput } from "./commands/DeleteBucketIntelligentTieringConfigurationCommand";
|
|
13
14
|
import { DeleteBucketInventoryConfigurationCommandInput, DeleteBucketInventoryConfigurationCommandOutput } from "./commands/DeleteBucketInventoryConfigurationCommand";
|
|
14
15
|
import { DeleteBucketLifecycleCommandInput, DeleteBucketLifecycleCommandOutput } from "./commands/DeleteBucketLifecycleCommand";
|
|
16
|
+
import { DeleteBucketMetadataTableConfigurationCommandInput, DeleteBucketMetadataTableConfigurationCommandOutput } from "./commands/DeleteBucketMetadataTableConfigurationCommand";
|
|
15
17
|
import { DeleteBucketMetricsConfigurationCommandInput, DeleteBucketMetricsConfigurationCommandOutput } from "./commands/DeleteBucketMetricsConfigurationCommand";
|
|
16
18
|
import { DeleteBucketOwnershipControlsCommandInput, DeleteBucketOwnershipControlsCommandOutput } from "./commands/DeleteBucketOwnershipControlsCommand";
|
|
17
19
|
import { DeleteBucketPolicyCommandInput, DeleteBucketPolicyCommandOutput } from "./commands/DeleteBucketPolicyCommand";
|
|
@@ -32,6 +34,7 @@ import { GetBucketInventoryConfigurationCommandInput, GetBucketInventoryConfigur
|
|
|
32
34
|
import { GetBucketLifecycleConfigurationCommandInput, GetBucketLifecycleConfigurationCommandOutput } from "./commands/GetBucketLifecycleConfigurationCommand";
|
|
33
35
|
import { GetBucketLocationCommandInput, GetBucketLocationCommandOutput } from "./commands/GetBucketLocationCommand";
|
|
34
36
|
import { GetBucketLoggingCommandInput, GetBucketLoggingCommandOutput } from "./commands/GetBucketLoggingCommand";
|
|
37
|
+
import { GetBucketMetadataTableConfigurationCommandInput, GetBucketMetadataTableConfigurationCommandOutput } from "./commands/GetBucketMetadataTableConfigurationCommand";
|
|
35
38
|
import { GetBucketMetricsConfigurationCommandInput, GetBucketMetricsConfigurationCommandOutput } from "./commands/GetBucketMetricsConfigurationCommand";
|
|
36
39
|
import { GetBucketNotificationConfigurationCommandInput, GetBucketNotificationConfigurationCommandOutput } from "./commands/GetBucketNotificationConfigurationCommand";
|
|
37
40
|
import { GetBucketOwnershipControlsCommandInput, GetBucketOwnershipControlsCommandOutput } from "./commands/GetBucketOwnershipControlsCommand";
|
|
@@ -120,6 +123,12 @@ export interface S3 {
|
|
|
120
123
|
createBucket(args: CreateBucketCommandInput, options?: __HttpHandlerOptions): Promise<CreateBucketCommandOutput>;
|
|
121
124
|
createBucket(args: CreateBucketCommandInput, cb: (err: any, data?: CreateBucketCommandOutput) => void): void;
|
|
122
125
|
createBucket(args: CreateBucketCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateBucketCommandOutput) => void): void;
|
|
126
|
+
/**
|
|
127
|
+
* @see {@link CreateBucketMetadataTableConfigurationCommand}
|
|
128
|
+
*/
|
|
129
|
+
createBucketMetadataTableConfiguration(args: CreateBucketMetadataTableConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<CreateBucketMetadataTableConfigurationCommandOutput>;
|
|
130
|
+
createBucketMetadataTableConfiguration(args: CreateBucketMetadataTableConfigurationCommandInput, cb: (err: any, data?: CreateBucketMetadataTableConfigurationCommandOutput) => void): void;
|
|
131
|
+
createBucketMetadataTableConfiguration(args: CreateBucketMetadataTableConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateBucketMetadataTableConfigurationCommandOutput) => void): void;
|
|
123
132
|
/**
|
|
124
133
|
* @see {@link CreateMultipartUploadCommand}
|
|
125
134
|
*/
|
|
@@ -174,6 +183,12 @@ export interface S3 {
|
|
|
174
183
|
deleteBucketLifecycle(args: DeleteBucketLifecycleCommandInput, options?: __HttpHandlerOptions): Promise<DeleteBucketLifecycleCommandOutput>;
|
|
175
184
|
deleteBucketLifecycle(args: DeleteBucketLifecycleCommandInput, cb: (err: any, data?: DeleteBucketLifecycleCommandOutput) => void): void;
|
|
176
185
|
deleteBucketLifecycle(args: DeleteBucketLifecycleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBucketLifecycleCommandOutput) => void): void;
|
|
186
|
+
/**
|
|
187
|
+
* @see {@link DeleteBucketMetadataTableConfigurationCommand}
|
|
188
|
+
*/
|
|
189
|
+
deleteBucketMetadataTableConfiguration(args: DeleteBucketMetadataTableConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteBucketMetadataTableConfigurationCommandOutput>;
|
|
190
|
+
deleteBucketMetadataTableConfiguration(args: DeleteBucketMetadataTableConfigurationCommandInput, cb: (err: any, data?: DeleteBucketMetadataTableConfigurationCommandOutput) => void): void;
|
|
191
|
+
deleteBucketMetadataTableConfiguration(args: DeleteBucketMetadataTableConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBucketMetadataTableConfigurationCommandOutput) => void): void;
|
|
177
192
|
/**
|
|
178
193
|
* @see {@link DeleteBucketMetricsConfigurationCommand}
|
|
179
194
|
*/
|
|
@@ -294,6 +309,12 @@ export interface S3 {
|
|
|
294
309
|
getBucketLogging(args: GetBucketLoggingCommandInput, options?: __HttpHandlerOptions): Promise<GetBucketLoggingCommandOutput>;
|
|
295
310
|
getBucketLogging(args: GetBucketLoggingCommandInput, cb: (err: any, data?: GetBucketLoggingCommandOutput) => void): void;
|
|
296
311
|
getBucketLogging(args: GetBucketLoggingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBucketLoggingCommandOutput) => void): void;
|
|
312
|
+
/**
|
|
313
|
+
* @see {@link GetBucketMetadataTableConfigurationCommand}
|
|
314
|
+
*/
|
|
315
|
+
getBucketMetadataTableConfiguration(args: GetBucketMetadataTableConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetBucketMetadataTableConfigurationCommandOutput>;
|
|
316
|
+
getBucketMetadataTableConfiguration(args: GetBucketMetadataTableConfigurationCommandInput, cb: (err: any, data?: GetBucketMetadataTableConfigurationCommandOutput) => void): void;
|
|
317
|
+
getBucketMetadataTableConfiguration(args: GetBucketMetadataTableConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBucketMetadataTableConfigurationCommandOutput) => void): void;
|
|
297
318
|
/**
|
|
298
319
|
* @see {@link GetBucketMetricsConfigurationCommand}
|
|
299
320
|
*/
|
package/dist-types/S3Client.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ import { AbortMultipartUploadCommandInput, AbortMultipartUploadCommandOutput } f
|
|
|
17
17
|
import { CompleteMultipartUploadCommandInput, CompleteMultipartUploadCommandOutput } from "./commands/CompleteMultipartUploadCommand";
|
|
18
18
|
import { CopyObjectCommandInput, CopyObjectCommandOutput } from "./commands/CopyObjectCommand";
|
|
19
19
|
import { CreateBucketCommandInput, CreateBucketCommandOutput } from "./commands/CreateBucketCommand";
|
|
20
|
+
import { CreateBucketMetadataTableConfigurationCommandInput, CreateBucketMetadataTableConfigurationCommandOutput } from "./commands/CreateBucketMetadataTableConfigurationCommand";
|
|
20
21
|
import { CreateMultipartUploadCommandInput, CreateMultipartUploadCommandOutput } from "./commands/CreateMultipartUploadCommand";
|
|
21
22
|
import { CreateSessionCommandInput, CreateSessionCommandOutput } from "./commands/CreateSessionCommand";
|
|
22
23
|
import { DeleteBucketAnalyticsConfigurationCommandInput, DeleteBucketAnalyticsConfigurationCommandOutput } from "./commands/DeleteBucketAnalyticsConfigurationCommand";
|
|
@@ -26,6 +27,7 @@ import { DeleteBucketEncryptionCommandInput, DeleteBucketEncryptionCommandOutput
|
|
|
26
27
|
import { DeleteBucketIntelligentTieringConfigurationCommandInput, DeleteBucketIntelligentTieringConfigurationCommandOutput } from "./commands/DeleteBucketIntelligentTieringConfigurationCommand";
|
|
27
28
|
import { DeleteBucketInventoryConfigurationCommandInput, DeleteBucketInventoryConfigurationCommandOutput } from "./commands/DeleteBucketInventoryConfigurationCommand";
|
|
28
29
|
import { DeleteBucketLifecycleCommandInput, DeleteBucketLifecycleCommandOutput } from "./commands/DeleteBucketLifecycleCommand";
|
|
30
|
+
import { DeleteBucketMetadataTableConfigurationCommandInput, DeleteBucketMetadataTableConfigurationCommandOutput } from "./commands/DeleteBucketMetadataTableConfigurationCommand";
|
|
29
31
|
import { DeleteBucketMetricsConfigurationCommandInput, DeleteBucketMetricsConfigurationCommandOutput } from "./commands/DeleteBucketMetricsConfigurationCommand";
|
|
30
32
|
import { DeleteBucketOwnershipControlsCommandInput, DeleteBucketOwnershipControlsCommandOutput } from "./commands/DeleteBucketOwnershipControlsCommand";
|
|
31
33
|
import { DeleteBucketPolicyCommandInput, DeleteBucketPolicyCommandOutput } from "./commands/DeleteBucketPolicyCommand";
|
|
@@ -46,6 +48,7 @@ import { GetBucketInventoryConfigurationCommandInput, GetBucketInventoryConfigur
|
|
|
46
48
|
import { GetBucketLifecycleConfigurationCommandInput, GetBucketLifecycleConfigurationCommandOutput } from "./commands/GetBucketLifecycleConfigurationCommand";
|
|
47
49
|
import { GetBucketLocationCommandInput, GetBucketLocationCommandOutput } from "./commands/GetBucketLocationCommand";
|
|
48
50
|
import { GetBucketLoggingCommandInput, GetBucketLoggingCommandOutput } from "./commands/GetBucketLoggingCommand";
|
|
51
|
+
import { GetBucketMetadataTableConfigurationCommandInput, GetBucketMetadataTableConfigurationCommandOutput } from "./commands/GetBucketMetadataTableConfigurationCommand";
|
|
49
52
|
import { GetBucketMetricsConfigurationCommandInput, GetBucketMetricsConfigurationCommandOutput } from "./commands/GetBucketMetricsConfigurationCommand";
|
|
50
53
|
import { GetBucketNotificationConfigurationCommandInput, GetBucketNotificationConfigurationCommandOutput } from "./commands/GetBucketNotificationConfigurationCommand";
|
|
51
54
|
import { GetBucketOwnershipControlsCommandInput, GetBucketOwnershipControlsCommandOutput } from "./commands/GetBucketOwnershipControlsCommand";
|
|
@@ -114,11 +117,11 @@ export { __Client };
|
|
|
114
117
|
/**
|
|
115
118
|
* @public
|
|
116
119
|
*/
|
|
117
|
-
export type ServiceInputTypes = AbortMultipartUploadCommandInput | CompleteMultipartUploadCommandInput | CopyObjectCommandInput | CreateBucketCommandInput | CreateMultipartUploadCommandInput | CreateSessionCommandInput | DeleteBucketAnalyticsConfigurationCommandInput | DeleteBucketCommandInput | DeleteBucketCorsCommandInput | DeleteBucketEncryptionCommandInput | DeleteBucketIntelligentTieringConfigurationCommandInput | DeleteBucketInventoryConfigurationCommandInput | DeleteBucketLifecycleCommandInput | DeleteBucketMetricsConfigurationCommandInput | DeleteBucketOwnershipControlsCommandInput | DeleteBucketPolicyCommandInput | DeleteBucketReplicationCommandInput | DeleteBucketTaggingCommandInput | DeleteBucketWebsiteCommandInput | DeleteObjectCommandInput | DeleteObjectTaggingCommandInput | DeleteObjectsCommandInput | DeletePublicAccessBlockCommandInput | GetBucketAccelerateConfigurationCommandInput | GetBucketAclCommandInput | GetBucketAnalyticsConfigurationCommandInput | GetBucketCorsCommandInput | GetBucketEncryptionCommandInput | GetBucketIntelligentTieringConfigurationCommandInput | GetBucketInventoryConfigurationCommandInput | GetBucketLifecycleConfigurationCommandInput | GetBucketLocationCommandInput | GetBucketLoggingCommandInput | GetBucketMetricsConfigurationCommandInput | GetBucketNotificationConfigurationCommandInput | GetBucketOwnershipControlsCommandInput | GetBucketPolicyCommandInput | GetBucketPolicyStatusCommandInput | GetBucketReplicationCommandInput | GetBucketRequestPaymentCommandInput | GetBucketTaggingCommandInput | GetBucketVersioningCommandInput | GetBucketWebsiteCommandInput | GetObjectAclCommandInput | GetObjectAttributesCommandInput | GetObjectCommandInput | GetObjectLegalHoldCommandInput | GetObjectLockConfigurationCommandInput | GetObjectRetentionCommandInput | GetObjectTaggingCommandInput | GetObjectTorrentCommandInput | GetPublicAccessBlockCommandInput | HeadBucketCommandInput | HeadObjectCommandInput | ListBucketAnalyticsConfigurationsCommandInput | ListBucketIntelligentTieringConfigurationsCommandInput | ListBucketInventoryConfigurationsCommandInput | ListBucketMetricsConfigurationsCommandInput | ListBucketsCommandInput | ListDirectoryBucketsCommandInput | ListMultipartUploadsCommandInput | ListObjectVersionsCommandInput | ListObjectsCommandInput | ListObjectsV2CommandInput | ListPartsCommandInput | PutBucketAccelerateConfigurationCommandInput | PutBucketAclCommandInput | PutBucketAnalyticsConfigurationCommandInput | PutBucketCorsCommandInput | PutBucketEncryptionCommandInput | PutBucketIntelligentTieringConfigurationCommandInput | PutBucketInventoryConfigurationCommandInput | PutBucketLifecycleConfigurationCommandInput | PutBucketLoggingCommandInput | PutBucketMetricsConfigurationCommandInput | PutBucketNotificationConfigurationCommandInput | PutBucketOwnershipControlsCommandInput | PutBucketPolicyCommandInput | PutBucketReplicationCommandInput | PutBucketRequestPaymentCommandInput | PutBucketTaggingCommandInput | PutBucketVersioningCommandInput | PutBucketWebsiteCommandInput | PutObjectAclCommandInput | PutObjectCommandInput | PutObjectLegalHoldCommandInput | PutObjectLockConfigurationCommandInput | PutObjectRetentionCommandInput | PutObjectTaggingCommandInput | PutPublicAccessBlockCommandInput | RestoreObjectCommandInput | SelectObjectContentCommandInput | UploadPartCommandInput | UploadPartCopyCommandInput | WriteGetObjectResponseCommandInput;
|
|
120
|
+
export type ServiceInputTypes = AbortMultipartUploadCommandInput | CompleteMultipartUploadCommandInput | CopyObjectCommandInput | CreateBucketCommandInput | CreateBucketMetadataTableConfigurationCommandInput | CreateMultipartUploadCommandInput | CreateSessionCommandInput | DeleteBucketAnalyticsConfigurationCommandInput | DeleteBucketCommandInput | DeleteBucketCorsCommandInput | DeleteBucketEncryptionCommandInput | DeleteBucketIntelligentTieringConfigurationCommandInput | DeleteBucketInventoryConfigurationCommandInput | DeleteBucketLifecycleCommandInput | DeleteBucketMetadataTableConfigurationCommandInput | DeleteBucketMetricsConfigurationCommandInput | DeleteBucketOwnershipControlsCommandInput | DeleteBucketPolicyCommandInput | DeleteBucketReplicationCommandInput | DeleteBucketTaggingCommandInput | DeleteBucketWebsiteCommandInput | DeleteObjectCommandInput | DeleteObjectTaggingCommandInput | DeleteObjectsCommandInput | DeletePublicAccessBlockCommandInput | GetBucketAccelerateConfigurationCommandInput | GetBucketAclCommandInput | GetBucketAnalyticsConfigurationCommandInput | GetBucketCorsCommandInput | GetBucketEncryptionCommandInput | GetBucketIntelligentTieringConfigurationCommandInput | GetBucketInventoryConfigurationCommandInput | GetBucketLifecycleConfigurationCommandInput | GetBucketLocationCommandInput | GetBucketLoggingCommandInput | GetBucketMetadataTableConfigurationCommandInput | GetBucketMetricsConfigurationCommandInput | GetBucketNotificationConfigurationCommandInput | GetBucketOwnershipControlsCommandInput | GetBucketPolicyCommandInput | GetBucketPolicyStatusCommandInput | GetBucketReplicationCommandInput | GetBucketRequestPaymentCommandInput | GetBucketTaggingCommandInput | GetBucketVersioningCommandInput | GetBucketWebsiteCommandInput | GetObjectAclCommandInput | GetObjectAttributesCommandInput | GetObjectCommandInput | GetObjectLegalHoldCommandInput | GetObjectLockConfigurationCommandInput | GetObjectRetentionCommandInput | GetObjectTaggingCommandInput | GetObjectTorrentCommandInput | GetPublicAccessBlockCommandInput | HeadBucketCommandInput | HeadObjectCommandInput | ListBucketAnalyticsConfigurationsCommandInput | ListBucketIntelligentTieringConfigurationsCommandInput | ListBucketInventoryConfigurationsCommandInput | ListBucketMetricsConfigurationsCommandInput | ListBucketsCommandInput | ListDirectoryBucketsCommandInput | ListMultipartUploadsCommandInput | ListObjectVersionsCommandInput | ListObjectsCommandInput | ListObjectsV2CommandInput | ListPartsCommandInput | PutBucketAccelerateConfigurationCommandInput | PutBucketAclCommandInput | PutBucketAnalyticsConfigurationCommandInput | PutBucketCorsCommandInput | PutBucketEncryptionCommandInput | PutBucketIntelligentTieringConfigurationCommandInput | PutBucketInventoryConfigurationCommandInput | PutBucketLifecycleConfigurationCommandInput | PutBucketLoggingCommandInput | PutBucketMetricsConfigurationCommandInput | PutBucketNotificationConfigurationCommandInput | PutBucketOwnershipControlsCommandInput | PutBucketPolicyCommandInput | PutBucketReplicationCommandInput | PutBucketRequestPaymentCommandInput | PutBucketTaggingCommandInput | PutBucketVersioningCommandInput | PutBucketWebsiteCommandInput | PutObjectAclCommandInput | PutObjectCommandInput | PutObjectLegalHoldCommandInput | PutObjectLockConfigurationCommandInput | PutObjectRetentionCommandInput | PutObjectTaggingCommandInput | PutPublicAccessBlockCommandInput | RestoreObjectCommandInput | SelectObjectContentCommandInput | UploadPartCommandInput | UploadPartCopyCommandInput | WriteGetObjectResponseCommandInput;
|
|
118
121
|
/**
|
|
119
122
|
* @public
|
|
120
123
|
*/
|
|
121
|
-
export type ServiceOutputTypes = AbortMultipartUploadCommandOutput | CompleteMultipartUploadCommandOutput | CopyObjectCommandOutput | CreateBucketCommandOutput | CreateMultipartUploadCommandOutput | CreateSessionCommandOutput | DeleteBucketAnalyticsConfigurationCommandOutput | DeleteBucketCommandOutput | DeleteBucketCorsCommandOutput | DeleteBucketEncryptionCommandOutput | DeleteBucketIntelligentTieringConfigurationCommandOutput | DeleteBucketInventoryConfigurationCommandOutput | DeleteBucketLifecycleCommandOutput | DeleteBucketMetricsConfigurationCommandOutput | DeleteBucketOwnershipControlsCommandOutput | DeleteBucketPolicyCommandOutput | DeleteBucketReplicationCommandOutput | DeleteBucketTaggingCommandOutput | DeleteBucketWebsiteCommandOutput | DeleteObjectCommandOutput | DeleteObjectTaggingCommandOutput | DeleteObjectsCommandOutput | DeletePublicAccessBlockCommandOutput | GetBucketAccelerateConfigurationCommandOutput | GetBucketAclCommandOutput | GetBucketAnalyticsConfigurationCommandOutput | GetBucketCorsCommandOutput | GetBucketEncryptionCommandOutput | GetBucketIntelligentTieringConfigurationCommandOutput | GetBucketInventoryConfigurationCommandOutput | GetBucketLifecycleConfigurationCommandOutput | GetBucketLocationCommandOutput | GetBucketLoggingCommandOutput | GetBucketMetricsConfigurationCommandOutput | GetBucketNotificationConfigurationCommandOutput | GetBucketOwnershipControlsCommandOutput | GetBucketPolicyCommandOutput | GetBucketPolicyStatusCommandOutput | GetBucketReplicationCommandOutput | GetBucketRequestPaymentCommandOutput | GetBucketTaggingCommandOutput | GetBucketVersioningCommandOutput | GetBucketWebsiteCommandOutput | GetObjectAclCommandOutput | GetObjectAttributesCommandOutput | GetObjectCommandOutput | GetObjectLegalHoldCommandOutput | GetObjectLockConfigurationCommandOutput | GetObjectRetentionCommandOutput | GetObjectTaggingCommandOutput | GetObjectTorrentCommandOutput | GetPublicAccessBlockCommandOutput | HeadBucketCommandOutput | HeadObjectCommandOutput | ListBucketAnalyticsConfigurationsCommandOutput | ListBucketIntelligentTieringConfigurationsCommandOutput | ListBucketInventoryConfigurationsCommandOutput | ListBucketMetricsConfigurationsCommandOutput | ListBucketsCommandOutput | ListDirectoryBucketsCommandOutput | ListMultipartUploadsCommandOutput | ListObjectVersionsCommandOutput | ListObjectsCommandOutput | ListObjectsV2CommandOutput | ListPartsCommandOutput | PutBucketAccelerateConfigurationCommandOutput | PutBucketAclCommandOutput | PutBucketAnalyticsConfigurationCommandOutput | PutBucketCorsCommandOutput | PutBucketEncryptionCommandOutput | PutBucketIntelligentTieringConfigurationCommandOutput | PutBucketInventoryConfigurationCommandOutput | PutBucketLifecycleConfigurationCommandOutput | PutBucketLoggingCommandOutput | PutBucketMetricsConfigurationCommandOutput | PutBucketNotificationConfigurationCommandOutput | PutBucketOwnershipControlsCommandOutput | PutBucketPolicyCommandOutput | PutBucketReplicationCommandOutput | PutBucketRequestPaymentCommandOutput | PutBucketTaggingCommandOutput | PutBucketVersioningCommandOutput | PutBucketWebsiteCommandOutput | PutObjectAclCommandOutput | PutObjectCommandOutput | PutObjectLegalHoldCommandOutput | PutObjectLockConfigurationCommandOutput | PutObjectRetentionCommandOutput | PutObjectTaggingCommandOutput | PutPublicAccessBlockCommandOutput | RestoreObjectCommandOutput | SelectObjectContentCommandOutput | UploadPartCommandOutput | UploadPartCopyCommandOutput | WriteGetObjectResponseCommandOutput;
|
|
124
|
+
export type ServiceOutputTypes = AbortMultipartUploadCommandOutput | CompleteMultipartUploadCommandOutput | CopyObjectCommandOutput | CreateBucketCommandOutput | CreateBucketMetadataTableConfigurationCommandOutput | CreateMultipartUploadCommandOutput | CreateSessionCommandOutput | DeleteBucketAnalyticsConfigurationCommandOutput | DeleteBucketCommandOutput | DeleteBucketCorsCommandOutput | DeleteBucketEncryptionCommandOutput | DeleteBucketIntelligentTieringConfigurationCommandOutput | DeleteBucketInventoryConfigurationCommandOutput | DeleteBucketLifecycleCommandOutput | DeleteBucketMetadataTableConfigurationCommandOutput | DeleteBucketMetricsConfigurationCommandOutput | DeleteBucketOwnershipControlsCommandOutput | DeleteBucketPolicyCommandOutput | DeleteBucketReplicationCommandOutput | DeleteBucketTaggingCommandOutput | DeleteBucketWebsiteCommandOutput | DeleteObjectCommandOutput | DeleteObjectTaggingCommandOutput | DeleteObjectsCommandOutput | DeletePublicAccessBlockCommandOutput | GetBucketAccelerateConfigurationCommandOutput | GetBucketAclCommandOutput | GetBucketAnalyticsConfigurationCommandOutput | GetBucketCorsCommandOutput | GetBucketEncryptionCommandOutput | GetBucketIntelligentTieringConfigurationCommandOutput | GetBucketInventoryConfigurationCommandOutput | GetBucketLifecycleConfigurationCommandOutput | GetBucketLocationCommandOutput | GetBucketLoggingCommandOutput | GetBucketMetadataTableConfigurationCommandOutput | GetBucketMetricsConfigurationCommandOutput | GetBucketNotificationConfigurationCommandOutput | GetBucketOwnershipControlsCommandOutput | GetBucketPolicyCommandOutput | GetBucketPolicyStatusCommandOutput | GetBucketReplicationCommandOutput | GetBucketRequestPaymentCommandOutput | GetBucketTaggingCommandOutput | GetBucketVersioningCommandOutput | GetBucketWebsiteCommandOutput | GetObjectAclCommandOutput | GetObjectAttributesCommandOutput | GetObjectCommandOutput | GetObjectLegalHoldCommandOutput | GetObjectLockConfigurationCommandOutput | GetObjectRetentionCommandOutput | GetObjectTaggingCommandOutput | GetObjectTorrentCommandOutput | GetPublicAccessBlockCommandOutput | HeadBucketCommandOutput | HeadObjectCommandOutput | ListBucketAnalyticsConfigurationsCommandOutput | ListBucketIntelligentTieringConfigurationsCommandOutput | ListBucketInventoryConfigurationsCommandOutput | ListBucketMetricsConfigurationsCommandOutput | ListBucketsCommandOutput | ListDirectoryBucketsCommandOutput | ListMultipartUploadsCommandOutput | ListObjectVersionsCommandOutput | ListObjectsCommandOutput | ListObjectsV2CommandOutput | ListPartsCommandOutput | PutBucketAccelerateConfigurationCommandOutput | PutBucketAclCommandOutput | PutBucketAnalyticsConfigurationCommandOutput | PutBucketCorsCommandOutput | PutBucketEncryptionCommandOutput | PutBucketIntelligentTieringConfigurationCommandOutput | PutBucketInventoryConfigurationCommandOutput | PutBucketLifecycleConfigurationCommandOutput | PutBucketLoggingCommandOutput | PutBucketMetricsConfigurationCommandOutput | PutBucketNotificationConfigurationCommandOutput | PutBucketOwnershipControlsCommandOutput | PutBucketPolicyCommandOutput | PutBucketReplicationCommandOutput | PutBucketRequestPaymentCommandOutput | PutBucketTaggingCommandOutput | PutBucketVersioningCommandOutput | PutBucketWebsiteCommandOutput | PutObjectAclCommandOutput | PutObjectCommandOutput | PutObjectLegalHoldCommandOutput | PutObjectLockConfigurationCommandOutput | PutObjectRetentionCommandOutput | PutObjectTaggingCommandOutput | PutPublicAccessBlockCommandOutput | RestoreObjectCommandOutput | SelectObjectContentCommandOutput | UploadPartCommandOutput | UploadPartCopyCommandOutput | WriteGetObjectResponseCommandOutput;
|
|
122
125
|
/**
|
|
123
126
|
* @public
|
|
124
127
|
*/
|