@aws-sdk/client-s3 3.1034.0 → 3.1035.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/index.js +7 -6
- package/dist-cjs/schemas/schemas_0.js +75 -60
- package/dist-es/commands/GetBucketPolicyCommand.js +1 -5
- package/dist-es/commands/GetObjectCommand.js +1 -1
- package/dist-es/commands/SelectObjectContentCommand.js +0 -2
- package/dist-es/models/enums.js +5 -0
- package/dist-es/schemas/schemas_0.js +75 -60
- package/dist-types/commands/CompleteMultipartUploadCommand.d.ts +15 -0
- package/dist-types/commands/CopyObjectCommand.d.ts +6 -1
- package/dist-types/commands/CreateBucketMetadataConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/CreateBucketMetadataTableConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/CreateMultipartUploadCommand.d.ts +2 -2
- package/dist-types/commands/DeleteBucketInventoryConfigurationCommand.d.ts +38 -7
- package/dist-types/commands/DeleteObjectsCommand.d.ts +1 -1
- package/dist-types/commands/GetBucketInventoryConfigurationCommand.d.ts +39 -8
- package/dist-types/commands/GetObjectAttributesCommand.d.ts +10 -0
- package/dist-types/commands/GetObjectCommand.d.ts +5 -0
- package/dist-types/commands/HeadObjectCommand.d.ts +5 -0
- package/dist-types/commands/ListBucketInventoryConfigurationsCommand.d.ts +39 -8
- package/dist-types/commands/ListMultipartUploadsCommand.d.ts +1 -1
- package/dist-types/commands/ListObjectVersionsCommand.d.ts +1 -1
- package/dist-types/commands/ListObjectsCommand.d.ts +1 -1
- package/dist-types/commands/ListObjectsV2Command.d.ts +1 -1
- package/dist-types/commands/ListPartsCommand.d.ts +6 -1
- package/dist-types/commands/PutBucketAbacCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketAccelerateConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketAclCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketCorsCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketEncryptionCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketInventoryConfigurationCommand.d.ts +31 -5
- package/dist-types/commands/PutBucketLifecycleConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketLoggingCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketOwnershipControlsCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketPolicyCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketReplicationCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketRequestPaymentCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketTaggingCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketVersioningCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketWebsiteCommand.d.ts +1 -1
- package/dist-types/commands/PutObjectAclCommand.d.ts +1 -1
- package/dist-types/commands/PutObjectCommand.d.ts +11 -1
- package/dist-types/commands/PutObjectLegalHoldCommand.d.ts +1 -1
- package/dist-types/commands/PutObjectLockConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/PutObjectRetentionCommand.d.ts +1 -1
- package/dist-types/commands/PutObjectTaggingCommand.d.ts +1 -1
- package/dist-types/commands/PutPublicAccessBlockCommand.d.ts +1 -1
- package/dist-types/commands/RestoreObjectCommand.d.ts +1 -1
- package/dist-types/commands/UpdateBucketMetadataInventoryTableConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/UpdateBucketMetadataJournalTableConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/UpdateObjectEncryptionCommand.d.ts +1 -1
- package/dist-types/commands/UploadPartCommand.d.ts +11 -1
- package/dist-types/commands/UploadPartCopyCommand.d.ts +5 -0
- package/dist-types/commands/WriteGetObjectResponseCommand.d.ts +5 -0
- package/dist-types/models/enums.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +546 -2
- package/dist-types/models/models_1.d.ts +194 -34
- package/dist-types/ts3.4/models/enums.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +55 -0
- package/dist-types/ts3.4/models/models_1.d.ts +20 -0
- package/package.json +9 -9
|
@@ -27,15 +27,46 @@ declare const GetBucketInventoryConfigurationCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <
|
|
31
|
-
* <p>This operation is not supported for directory buckets.</p>
|
|
32
|
-
* </note>
|
|
33
|
-
* <p>Returns an S3 Inventory configuration (identified by the inventory configuration ID) from the
|
|
30
|
+
* <p>Returns an S3 Inventory configuration (identified by the inventory configuration ID) from the
|
|
34
31
|
* bucket.</p>
|
|
35
|
-
* <
|
|
36
|
-
*
|
|
37
|
-
*
|
|
38
|
-
*
|
|
32
|
+
* <note>
|
|
33
|
+
* <p>
|
|
34
|
+
* <b>Directory buckets </b> - For directory buckets, you must make requests for this API operation to the Regional endpoint. These endpoints support path-style requests in the format <code>https://s3express-control.<i>region-code</i>.amazonaws.com/<i>bucket-name</i>
|
|
35
|
+
* </code>. Virtual-hosted-style requests aren't supported.
|
|
36
|
+
* For more information about endpoints in Availability Zones, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/endpoint-directory-buckets-AZ.html">Regional and Zonal endpoints for directory buckets in Availability Zones</a> in the
|
|
37
|
+
* <i>Amazon S3 User Guide</i>. For more information about endpoints in Local Zones, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-lzs-for-directory-buckets.html">Concepts for directory buckets in Local Zones</a> in the
|
|
38
|
+
* <i>Amazon S3 User Guide</i>.</p>
|
|
39
|
+
* </note>
|
|
40
|
+
* <dl>
|
|
41
|
+
* <dt>Permissions</dt>
|
|
42
|
+
* <dd>
|
|
43
|
+
* <p>To use this operation, you must have permissions to perform the
|
|
44
|
+
* <code>s3:GetInventoryConfiguration</code> action. The bucket owner has this permission by default. The
|
|
45
|
+
* bucket owner can grant this permission to others. For more information about permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources">Permissions Related to Bucket Subresource Operations</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-access-control.html">Managing Access Permissions to Your Amazon S3
|
|
46
|
+
* Resources</a>.</p>
|
|
47
|
+
* <ul>
|
|
48
|
+
* <li>
|
|
49
|
+
* <p>
|
|
50
|
+
* <b>General purpose bucket permissions</b> - The
|
|
51
|
+
* <code>s3:GetInventoryConfiguration</code> permission is required in a policy. For more information
|
|
52
|
+
* about general purpose buckets permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/using-iam-policies.html">Using Bucket Policies and User
|
|
53
|
+
* Policies</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
54
|
+
* </li>
|
|
55
|
+
* <li>
|
|
56
|
+
* <p>
|
|
57
|
+
* <b>Directory bucket permissions</b> - To grant access to
|
|
58
|
+
* this API operation, you must have the <code>s3express:GetInventoryConfiguration</code> permission in
|
|
59
|
+
* an IAM identity-based policy instead of a bucket policy.
|
|
60
|
+
* For more information about directory bucket policies and permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-express-security-iam.html">Amazon Web Services Identity and Access Management (IAM) for S3 Express One Zone</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
61
|
+
* </li>
|
|
62
|
+
* </ul>
|
|
63
|
+
* </dd>
|
|
64
|
+
* <dt>HTTP Host header syntax</dt>
|
|
65
|
+
* <dd>
|
|
66
|
+
* <p>
|
|
67
|
+
* <b>Directory buckets </b> - The HTTP Host header syntax is <code>s3express-control.<i>region-code</i>.amazonaws.com</code>.</p>
|
|
68
|
+
* </dd>
|
|
69
|
+
* </dl>
|
|
39
70
|
* <p>For information about the Amazon S3 inventory feature, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html">Amazon S3 Inventory</a>.</p>
|
|
40
71
|
* <p>The following operations are related to <code>GetBucketInventoryConfiguration</code>:</p>
|
|
41
72
|
* <ul>
|
|
@@ -272,6 +272,11 @@ declare const GetObjectAttributesCommand_base: {
|
|
|
272
272
|
* // ChecksumCRC64NVME: "STRING_VALUE",
|
|
273
273
|
* // ChecksumSHA1: "STRING_VALUE",
|
|
274
274
|
* // ChecksumSHA256: "STRING_VALUE",
|
|
275
|
+
* // ChecksumSHA512: "STRING_VALUE",
|
|
276
|
+
* // ChecksumMD5: "STRING_VALUE",
|
|
277
|
+
* // ChecksumXXHASH64: "STRING_VALUE",
|
|
278
|
+
* // ChecksumXXHASH3: "STRING_VALUE",
|
|
279
|
+
* // ChecksumXXHASH128: "STRING_VALUE",
|
|
275
280
|
* // ChecksumType: "COMPOSITE" || "FULL_OBJECT",
|
|
276
281
|
* // },
|
|
277
282
|
* // ObjectParts: { // GetObjectAttributesParts
|
|
@@ -289,6 +294,11 @@ declare const GetObjectAttributesCommand_base: {
|
|
|
289
294
|
* // ChecksumCRC64NVME: "STRING_VALUE",
|
|
290
295
|
* // ChecksumSHA1: "STRING_VALUE",
|
|
291
296
|
* // ChecksumSHA256: "STRING_VALUE",
|
|
297
|
+
* // ChecksumSHA512: "STRING_VALUE",
|
|
298
|
+
* // ChecksumMD5: "STRING_VALUE",
|
|
299
|
+
* // ChecksumXXHASH64: "STRING_VALUE",
|
|
300
|
+
* // ChecksumXXHASH3: "STRING_VALUE",
|
|
301
|
+
* // ChecksumXXHASH128: "STRING_VALUE",
|
|
292
302
|
* // },
|
|
293
303
|
* // ],
|
|
294
304
|
* // },
|
|
@@ -245,6 +245,11 @@ declare const GetObjectCommand_base: {
|
|
|
245
245
|
* // ChecksumCRC64NVME: "STRING_VALUE",
|
|
246
246
|
* // ChecksumSHA1: "STRING_VALUE",
|
|
247
247
|
* // ChecksumSHA256: "STRING_VALUE",
|
|
248
|
+
* // ChecksumSHA512: "STRING_VALUE",
|
|
249
|
+
* // ChecksumMD5: "STRING_VALUE",
|
|
250
|
+
* // ChecksumXXHASH64: "STRING_VALUE",
|
|
251
|
+
* // ChecksumXXHASH3: "STRING_VALUE",
|
|
252
|
+
* // ChecksumXXHASH128: "STRING_VALUE",
|
|
248
253
|
* // ChecksumType: "COMPOSITE" || "FULL_OBJECT",
|
|
249
254
|
* // MissingMeta: Number("int"),
|
|
250
255
|
* // VersionId: "STRING_VALUE",
|
|
@@ -227,6 +227,11 @@ declare const HeadObjectCommand_base: {
|
|
|
227
227
|
* // ChecksumCRC64NVME: "STRING_VALUE",
|
|
228
228
|
* // ChecksumSHA1: "STRING_VALUE",
|
|
229
229
|
* // ChecksumSHA256: "STRING_VALUE",
|
|
230
|
+
* // ChecksumSHA512: "STRING_VALUE",
|
|
231
|
+
* // ChecksumMD5: "STRING_VALUE",
|
|
232
|
+
* // ChecksumXXHASH64: "STRING_VALUE",
|
|
233
|
+
* // ChecksumXXHASH3: "STRING_VALUE",
|
|
234
|
+
* // ChecksumXXHASH128: "STRING_VALUE",
|
|
230
235
|
* // ChecksumType: "COMPOSITE" || "FULL_OBJECT",
|
|
231
236
|
* // ETag: "STRING_VALUE",
|
|
232
237
|
* // MissingMeta: Number("int"),
|
|
@@ -27,10 +27,7 @@ declare const ListBucketInventoryConfigurationsCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <
|
|
31
|
-
* <p>This operation is not supported for directory buckets.</p>
|
|
32
|
-
* </note>
|
|
33
|
-
* <p>Returns a list of S3 Inventory configurations for the bucket. You can have up to 1,000 inventory
|
|
30
|
+
* <p>Returns a list of S3 Inventory configurations for the bucket. You can have up to 1,000 inventory
|
|
34
31
|
* configurations per bucket.</p>
|
|
35
32
|
* <p>This action supports list pagination and does not return more than 100 configurations at a time.
|
|
36
33
|
* Always check the <code>IsTruncated</code> element in the response. If there are no more configurations
|
|
@@ -38,10 +35,44 @@ declare const ListBucketInventoryConfigurationsCommand_base: {
|
|
|
38
35
|
* <code>IsTruncated</code> is set to true, and there is a value in <code>NextContinuationToken</code>.
|
|
39
36
|
* You use the <code>NextContinuationToken</code> value to continue the pagination of the list by passing
|
|
40
37
|
* the value in continuation-token in the request to <code>GET</code> the next page.</p>
|
|
41
|
-
* <
|
|
42
|
-
*
|
|
43
|
-
*
|
|
44
|
-
*
|
|
38
|
+
* <note>
|
|
39
|
+
* <p>
|
|
40
|
+
* <b>Directory buckets </b> - For directory buckets, you must make requests for this API operation to the Regional endpoint. These endpoints support path-style requests in the format <code>https://s3express-control.<i>region-code</i>.amazonaws.com/<i>bucket-name</i>
|
|
41
|
+
* </code>. Virtual-hosted-style requests aren't supported.
|
|
42
|
+
* For more information about endpoints in Availability Zones, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/endpoint-directory-buckets-AZ.html">Regional and Zonal endpoints for directory buckets in Availability Zones</a> in the
|
|
43
|
+
* <i>Amazon S3 User Guide</i>. For more information about endpoints in Local Zones, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-lzs-for-directory-buckets.html">Concepts for directory buckets in Local Zones</a> in the
|
|
44
|
+
* <i>Amazon S3 User Guide</i>.</p>
|
|
45
|
+
* </note>
|
|
46
|
+
* <dl>
|
|
47
|
+
* <dt>Permissions</dt>
|
|
48
|
+
* <dd>
|
|
49
|
+
* <p>To use this operation, you must have permissions to perform the
|
|
50
|
+
* <code>s3:GetInventoryConfiguration</code> action. The bucket owner has this permission by default. The
|
|
51
|
+
* bucket owner can grant this permission to others. For more information about permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources">Permissions Related to Bucket Subresource Operations</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-access-control.html">Managing Access Permissions to Your Amazon S3
|
|
52
|
+
* Resources</a>.</p>
|
|
53
|
+
* <ul>
|
|
54
|
+
* <li>
|
|
55
|
+
* <p>
|
|
56
|
+
* <b>General purpose bucket permissions</b> - The
|
|
57
|
+
* <code>s3:GetInventoryConfiguration</code> permission is required in a policy. For more information
|
|
58
|
+
* about general purpose buckets permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/using-iam-policies.html">Using Bucket Policies and User
|
|
59
|
+
* Policies</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
60
|
+
* </li>
|
|
61
|
+
* <li>
|
|
62
|
+
* <p>
|
|
63
|
+
* <b>Directory bucket permissions</b> - To grant access to
|
|
64
|
+
* this API operation, you must have the <code>s3express:GetInventoryConfiguration</code> permission in
|
|
65
|
+
* an IAM identity-based policy instead of a bucket policy.
|
|
66
|
+
* For more information about directory bucket policies and permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-express-security-iam.html">Amazon Web Services Identity and Access Management (IAM) for S3 Express One Zone</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
67
|
+
* </li>
|
|
68
|
+
* </ul>
|
|
69
|
+
* </dd>
|
|
70
|
+
* <dt>HTTP Host header syntax</dt>
|
|
71
|
+
* <dd>
|
|
72
|
+
* <p>
|
|
73
|
+
* <b>Directory buckets </b> - The HTTP Host header syntax is <code>s3express-control.<i>region-code</i>.amazonaws.com</code>.</p>
|
|
74
|
+
* </dd>
|
|
75
|
+
* </dl>
|
|
45
76
|
* <p>For information about the Amazon S3 inventory feature, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html">Amazon S3 Inventory</a>
|
|
46
77
|
* </p>
|
|
47
78
|
* <p>The following operations are related to <code>ListBucketInventoryConfigurations</code>:</p>
|
|
@@ -201,7 +201,7 @@ declare const ListMultipartUploadsCommand_base: {
|
|
|
201
201
|
* // ID: "STRING_VALUE",
|
|
202
202
|
* // DisplayName: "STRING_VALUE",
|
|
203
203
|
* // },
|
|
204
|
-
* // ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME",
|
|
204
|
+
* // ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME" || "SHA512" || "MD5" || "XXHASH64" || "XXHASH3" || "XXHASH128",
|
|
205
205
|
* // ChecksumType: "COMPOSITE" || "FULL_OBJECT",
|
|
206
206
|
* // },
|
|
207
207
|
* // ],
|
|
@@ -101,7 +101,7 @@ declare const ListObjectVersionsCommand_base: {
|
|
|
101
101
|
* // { // ObjectVersion
|
|
102
102
|
* // ETag: "STRING_VALUE",
|
|
103
103
|
* // ChecksumAlgorithm: [ // ChecksumAlgorithmList
|
|
104
|
-
* // "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME",
|
|
104
|
+
* // "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME" || "SHA512" || "MD5" || "XXHASH64" || "XXHASH3" || "XXHASH128",
|
|
105
105
|
* // ],
|
|
106
106
|
* // ChecksumType: "COMPOSITE" || "FULL_OBJECT",
|
|
107
107
|
* // Size: Number("long"),
|
|
@@ -103,7 +103,7 @@ declare const ListObjectsCommand_base: {
|
|
|
103
103
|
* // LastModified: new Date("TIMESTAMP"),
|
|
104
104
|
* // ETag: "STRING_VALUE",
|
|
105
105
|
* // ChecksumAlgorithm: [ // ChecksumAlgorithmList
|
|
106
|
-
* // "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME",
|
|
106
|
+
* // "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME" || "SHA512" || "MD5" || "XXHASH64" || "XXHASH3" || "XXHASH128",
|
|
107
107
|
* // ],
|
|
108
108
|
* // ChecksumType: "COMPOSITE" || "FULL_OBJECT",
|
|
109
109
|
* // Size: Number("long"),
|
|
@@ -163,7 +163,7 @@ declare const ListObjectsV2Command_base: {
|
|
|
163
163
|
* // LastModified: new Date("TIMESTAMP"),
|
|
164
164
|
* // ETag: "STRING_VALUE",
|
|
165
165
|
* // ChecksumAlgorithm: [ // ChecksumAlgorithmList
|
|
166
|
-
* // "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME",
|
|
166
|
+
* // "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME" || "SHA512" || "MD5" || "XXHASH64" || "XXHASH3" || "XXHASH128",
|
|
167
167
|
* // ],
|
|
168
168
|
* // ChecksumType: "COMPOSITE" || "FULL_OBJECT",
|
|
169
169
|
* // Size: Number("long"),
|
|
@@ -158,6 +158,11 @@ declare const ListPartsCommand_base: {
|
|
|
158
158
|
* // ChecksumCRC64NVME: "STRING_VALUE",
|
|
159
159
|
* // ChecksumSHA1: "STRING_VALUE",
|
|
160
160
|
* // ChecksumSHA256: "STRING_VALUE",
|
|
161
|
+
* // ChecksumSHA512: "STRING_VALUE",
|
|
162
|
+
* // ChecksumMD5: "STRING_VALUE",
|
|
163
|
+
* // ChecksumXXHASH64: "STRING_VALUE",
|
|
164
|
+
* // ChecksumXXHASH3: "STRING_VALUE",
|
|
165
|
+
* // ChecksumXXHASH128: "STRING_VALUE",
|
|
161
166
|
* // },
|
|
162
167
|
* // ],
|
|
163
168
|
* // Initiator: { // Initiator
|
|
@@ -170,7 +175,7 @@ declare const ListPartsCommand_base: {
|
|
|
170
175
|
* // },
|
|
171
176
|
* // StorageClass: "STANDARD" || "REDUCED_REDUNDANCY" || "STANDARD_IA" || "ONEZONE_IA" || "INTELLIGENT_TIERING" || "GLACIER" || "DEEP_ARCHIVE" || "OUTPOSTS" || "GLACIER_IR" || "SNOW" || "EXPRESS_ONEZONE" || "FSX_OPENZFS" || "FSX_ONTAP",
|
|
172
177
|
* // RequestCharged: "requester",
|
|
173
|
-
* // ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME",
|
|
178
|
+
* // ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME" || "SHA512" || "MD5" || "XXHASH64" || "XXHASH3" || "XXHASH128",
|
|
174
179
|
* // ChecksumType: "COMPOSITE" || "FULL_OBJECT",
|
|
175
180
|
* // };
|
|
176
181
|
*
|
|
@@ -39,7 +39,7 @@ declare const PutBucketAbacCommand_base: {
|
|
|
39
39
|
* const input = { // PutBucketAbacRequest
|
|
40
40
|
* Bucket: "STRING_VALUE", // required
|
|
41
41
|
* ContentMD5: "STRING_VALUE",
|
|
42
|
-
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME",
|
|
42
|
+
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME" || "SHA512" || "MD5" || "XXHASH64" || "XXHASH3" || "XXHASH128",
|
|
43
43
|
* ExpectedBucketOwner: "STRING_VALUE",
|
|
44
44
|
* AbacStatus: { // AbacStatus
|
|
45
45
|
* Status: "Enabled" || "Disabled",
|
|
@@ -82,7 +82,7 @@ declare const PutBucketAccelerateConfigurationCommand_base: {
|
|
|
82
82
|
* Status: "Enabled" || "Suspended",
|
|
83
83
|
* },
|
|
84
84
|
* ExpectedBucketOwner: "STRING_VALUE",
|
|
85
|
-
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME",
|
|
85
|
+
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME" || "SHA512" || "MD5" || "XXHASH64" || "XXHASH3" || "XXHASH128",
|
|
86
86
|
* };
|
|
87
87
|
* const command = new PutBucketAccelerateConfigurationCommand(input);
|
|
88
88
|
* const response = await client.send(command);
|
|
@@ -258,7 +258,7 @@ declare const PutBucketAclCommand_base: {
|
|
|
258
258
|
* },
|
|
259
259
|
* Bucket: "STRING_VALUE", // required
|
|
260
260
|
* ContentMD5: "STRING_VALUE",
|
|
261
|
-
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME",
|
|
261
|
+
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME" || "SHA512" || "MD5" || "XXHASH64" || "XXHASH3" || "XXHASH128",
|
|
262
262
|
* GrantFullControl: "STRING_VALUE",
|
|
263
263
|
* GrantRead: "STRING_VALUE",
|
|
264
264
|
* GrantReadACP: "STRING_VALUE",
|
|
@@ -114,7 +114,7 @@ declare const PutBucketCorsCommand_base: {
|
|
|
114
114
|
* ],
|
|
115
115
|
* },
|
|
116
116
|
* ContentMD5: "STRING_VALUE",
|
|
117
|
-
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME",
|
|
117
|
+
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME" || "SHA512" || "MD5" || "XXHASH64" || "XXHASH3" || "XXHASH128",
|
|
118
118
|
* ExpectedBucketOwner: "STRING_VALUE",
|
|
119
119
|
* };
|
|
120
120
|
* const command = new PutBucketCorsCommand(input);
|
|
@@ -160,7 +160,7 @@ declare const PutBucketEncryptionCommand_base: {
|
|
|
160
160
|
* const input = { // PutBucketEncryptionRequest
|
|
161
161
|
* Bucket: "STRING_VALUE", // required
|
|
162
162
|
* ContentMD5: "STRING_VALUE",
|
|
163
|
-
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME",
|
|
163
|
+
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME" || "SHA512" || "MD5" || "XXHASH64" || "XXHASH3" || "XXHASH128",
|
|
164
164
|
* ServerSideEncryptionConfiguration: { // ServerSideEncryptionConfiguration
|
|
165
165
|
* Rules: [ // ServerSideEncryptionRules // required
|
|
166
166
|
* { // ServerSideEncryptionRule
|
|
@@ -27,10 +27,7 @@ declare const PutBucketInventoryConfigurationCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <
|
|
31
|
-
* <p>This operation is not supported for directory buckets.</p>
|
|
32
|
-
* </note>
|
|
33
|
-
* <p>This implementation of the <code>PUT</code> action adds an S3 Inventory configuration (identified by
|
|
30
|
+
* <p>This implementation of the <code>PUT</code> action adds an S3 Inventory configuration (identified by
|
|
34
31
|
* the inventory ID) to the bucket. You can have up to 1,000 inventory configurations per bucket. </p>
|
|
35
32
|
* <p>Amazon S3 inventory generates inventories of the objects in the bucket on a daily or weekly basis, and
|
|
36
33
|
* the results are published to a flat file. The bucket that is inventoried is called the
|
|
@@ -48,6 +45,14 @@ declare const PutBucketInventoryConfigurationCommand_base: {
|
|
|
48
45
|
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/example-bucket-policies.html#example-bucket-policies-use-case-9"> Granting
|
|
49
46
|
* Permissions for Amazon S3 Inventory and Storage Class Analysis</a>.</p>
|
|
50
47
|
* </important>
|
|
48
|
+
* <note>
|
|
49
|
+
* <p>
|
|
50
|
+
* <b>Directory buckets </b> - For directory buckets, you must make requests for this API operation to the Regional endpoint. These endpoints support path-style requests in the format <code>https://s3express-control.<i>region-code</i>.amazonaws.com/<i>bucket-name</i>
|
|
51
|
+
* </code>. Virtual-hosted-style requests aren't supported.
|
|
52
|
+
* For more information about endpoints in Availability Zones, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/endpoint-directory-buckets-AZ.html">Regional and Zonal endpoints for directory buckets in Availability Zones</a> in the
|
|
53
|
+
* <i>Amazon S3 User Guide</i>. For more information about endpoints in Local Zones, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-lzs-for-directory-buckets.html">Concepts for directory buckets in Local Zones</a> in the
|
|
54
|
+
* <i>Amazon S3 User Guide</i>.</p>
|
|
55
|
+
* </note>
|
|
51
56
|
* <dl>
|
|
52
57
|
* <dt>Permissions</dt>
|
|
53
58
|
* <dd>
|
|
@@ -58,13 +63,34 @@ declare const PutBucketInventoryConfigurationCommand_base: {
|
|
|
58
63
|
* report that includes all object metadata fields available and to specify the destination bucket to
|
|
59
64
|
* store the inventory. A user with read access to objects in the destination bucket can also access
|
|
60
65
|
* all object metadata fields that are available in the inventory report. </p>
|
|
61
|
-
* <
|
|
66
|
+
* <ul>
|
|
67
|
+
* <li>
|
|
68
|
+
* <p>
|
|
69
|
+
* <b>General purpose bucket permissions</b> - The
|
|
70
|
+
* <code>s3:PutInventoryConfiguration</code> permission is required in a policy. For more information
|
|
71
|
+
* about general purpose buckets permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/using-iam-policies.html">Using Bucket Policies and User
|
|
72
|
+
* Policies</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
73
|
+
* </li>
|
|
74
|
+
* <li>
|
|
75
|
+
* <p>
|
|
76
|
+
* <b>Directory bucket permissions</b> - To grant access to
|
|
77
|
+
* this API operation, you must have the <code>s3express:PutInventoryConfiguration</code> permission in
|
|
78
|
+
* an IAM identity-based policy instead of a bucket policy.
|
|
79
|
+
* For more information about directory bucket policies and permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-express-security-iam.html">Amazon Web Services Identity and Access Management (IAM) for S3 Express One Zone</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
80
|
+
* </li>
|
|
81
|
+
* </ul>
|
|
82
|
+
* <p>To restrict access to an inventory report, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/example-bucket-policies.html#example-bucket-policies-s3-inventory">Restricting access to an Amazon S3 Inventory report</a> in the
|
|
62
83
|
* <i>Amazon S3 User Guide</i>. For more information about the metadata fields available
|
|
63
84
|
* in S3 Inventory, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage-inventory.html#storage-inventory-contents">Amazon S3 Inventory
|
|
64
85
|
* lists</a> in the <i>Amazon S3 User Guide</i>. For more information about
|
|
65
86
|
* permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources">Permissions related to bucket subresource operations</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-access-control.html">Identity and access management in
|
|
66
87
|
* Amazon S3</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
67
88
|
* </dd>
|
|
89
|
+
* <dt>HTTP Host header syntax</dt>
|
|
90
|
+
* <dd>
|
|
91
|
+
* <p>
|
|
92
|
+
* <b>Directory buckets </b> - The HTTP Host header syntax is <code>s3express-control.<i>region-code</i>.amazonaws.com</code>.</p>
|
|
93
|
+
* </dd>
|
|
68
94
|
* </dl>
|
|
69
95
|
* <p>
|
|
70
96
|
* <code>PutBucketInventoryConfiguration</code> has the following special errors:</p>
|
|
@@ -165,7 +165,7 @@ declare const PutBucketLifecycleConfigurationCommand_base: {
|
|
|
165
165
|
* const client = new S3Client(config);
|
|
166
166
|
* const input = { // PutBucketLifecycleConfigurationRequest
|
|
167
167
|
* Bucket: "STRING_VALUE", // required
|
|
168
|
-
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME",
|
|
168
|
+
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME" || "SHA512" || "MD5" || "XXHASH64" || "XXHASH3" || "XXHASH128",
|
|
169
169
|
* LifecycleConfiguration: { // BucketLifecycleConfiguration
|
|
170
170
|
* Rules: [ // LifecycleRules // required
|
|
171
171
|
* { // LifecycleRule
|
|
@@ -154,7 +154,7 @@ declare const PutBucketLoggingCommand_base: {
|
|
|
154
154
|
* },
|
|
155
155
|
* },
|
|
156
156
|
* ContentMD5: "STRING_VALUE",
|
|
157
|
-
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME",
|
|
157
|
+
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME" || "SHA512" || "MD5" || "XXHASH64" || "XXHASH3" || "XXHASH128",
|
|
158
158
|
* ExpectedBucketOwner: "STRING_VALUE",
|
|
159
159
|
* };
|
|
160
160
|
* const command = new PutBucketLoggingCommand(input);
|
|
@@ -69,7 +69,7 @@ declare const PutBucketOwnershipControlsCommand_base: {
|
|
|
69
69
|
* },
|
|
70
70
|
* ],
|
|
71
71
|
* },
|
|
72
|
-
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME",
|
|
72
|
+
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME" || "SHA512" || "MD5" || "XXHASH64" || "XXHASH3" || "XXHASH128",
|
|
73
73
|
* };
|
|
74
74
|
* const command = new PutBucketOwnershipControlsCommand(input);
|
|
75
75
|
* const response = await client.send(command);
|
|
@@ -113,7 +113,7 @@ declare const PutBucketPolicyCommand_base: {
|
|
|
113
113
|
* const input = { // PutBucketPolicyRequest
|
|
114
114
|
* Bucket: "STRING_VALUE", // required
|
|
115
115
|
* ContentMD5: "STRING_VALUE",
|
|
116
|
-
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME",
|
|
116
|
+
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME" || "SHA512" || "MD5" || "XXHASH64" || "XXHASH3" || "XXHASH128",
|
|
117
117
|
* ConfirmRemoveSelfBucketAccess: true || false,
|
|
118
118
|
* Policy: "STRING_VALUE", // required
|
|
119
119
|
* ExpectedBucketOwner: "STRING_VALUE",
|
|
@@ -107,7 +107,7 @@ declare const PutBucketReplicationCommand_base: {
|
|
|
107
107
|
* const input = { // PutBucketReplicationRequest
|
|
108
108
|
* Bucket: "STRING_VALUE", // required
|
|
109
109
|
* ContentMD5: "STRING_VALUE",
|
|
110
|
-
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME",
|
|
110
|
+
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME" || "SHA512" || "MD5" || "XXHASH64" || "XXHASH3" || "XXHASH128",
|
|
111
111
|
* ReplicationConfiguration: { // ReplicationConfiguration
|
|
112
112
|
* Role: "STRING_VALUE", // required
|
|
113
113
|
* Rules: [ // ReplicationRules // required
|
|
@@ -61,7 +61,7 @@ declare const PutBucketRequestPaymentCommand_base: {
|
|
|
61
61
|
* const input = { // PutBucketRequestPaymentRequest
|
|
62
62
|
* Bucket: "STRING_VALUE", // required
|
|
63
63
|
* ContentMD5: "STRING_VALUE",
|
|
64
|
-
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME",
|
|
64
|
+
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME" || "SHA512" || "MD5" || "XXHASH64" || "XXHASH3" || "XXHASH128",
|
|
65
65
|
* RequestPaymentConfiguration: { // RequestPaymentConfiguration
|
|
66
66
|
* Payer: "Requester" || "BucketOwner", // required
|
|
67
67
|
* },
|
|
@@ -96,7 +96,7 @@ declare const PutBucketTaggingCommand_base: {
|
|
|
96
96
|
* const input = { // PutBucketTaggingRequest
|
|
97
97
|
* Bucket: "STRING_VALUE", // required
|
|
98
98
|
* ContentMD5: "STRING_VALUE",
|
|
99
|
-
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME",
|
|
99
|
+
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME" || "SHA512" || "MD5" || "XXHASH64" || "XXHASH3" || "XXHASH128",
|
|
100
100
|
* Tagging: { // Tagging
|
|
101
101
|
* TagSet: [ // TagSet // required
|
|
102
102
|
* { // Tag
|
|
@@ -90,7 +90,7 @@ declare const PutBucketVersioningCommand_base: {
|
|
|
90
90
|
* const input = { // PutBucketVersioningRequest
|
|
91
91
|
* Bucket: "STRING_VALUE", // required
|
|
92
92
|
* ContentMD5: "STRING_VALUE",
|
|
93
|
-
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME",
|
|
93
|
+
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME" || "SHA512" || "MD5" || "XXHASH64" || "XXHASH3" || "XXHASH128",
|
|
94
94
|
* MFA: "STRING_VALUE",
|
|
95
95
|
* VersioningConfiguration: { // VersioningConfiguration
|
|
96
96
|
* MFADelete: "Enabled" || "Disabled",
|
|
@@ -168,7 +168,7 @@ declare const PutBucketWebsiteCommand_base: {
|
|
|
168
168
|
* const input = { // PutBucketWebsiteRequest
|
|
169
169
|
* Bucket: "STRING_VALUE", // required
|
|
170
170
|
* ContentMD5: "STRING_VALUE",
|
|
171
|
-
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME",
|
|
171
|
+
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME" || "SHA512" || "MD5" || "XXHASH64" || "XXHASH3" || "XXHASH128",
|
|
172
172
|
* WebsiteConfiguration: { // WebsiteConfiguration
|
|
173
173
|
* ErrorDocument: { // ErrorDocument
|
|
174
174
|
* Key: "STRING_VALUE", // required
|
|
@@ -249,7 +249,7 @@ declare const PutObjectAclCommand_base: {
|
|
|
249
249
|
* },
|
|
250
250
|
* Bucket: "STRING_VALUE", // required
|
|
251
251
|
* ContentMD5: "STRING_VALUE",
|
|
252
|
-
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME",
|
|
252
|
+
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME" || "SHA512" || "MD5" || "XXHASH64" || "XXHASH3" || "XXHASH128",
|
|
253
253
|
* GrantFullControl: "STRING_VALUE",
|
|
254
254
|
* GrantRead: "STRING_VALUE",
|
|
255
255
|
* GrantReadACP: "STRING_VALUE",
|
|
@@ -227,12 +227,17 @@ declare const PutObjectCommand_base: {
|
|
|
227
227
|
* ContentLength: Number("long"),
|
|
228
228
|
* ContentMD5: "STRING_VALUE",
|
|
229
229
|
* ContentType: "STRING_VALUE",
|
|
230
|
-
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME",
|
|
230
|
+
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME" || "SHA512" || "MD5" || "XXHASH64" || "XXHASH3" || "XXHASH128",
|
|
231
231
|
* ChecksumCRC32: "STRING_VALUE",
|
|
232
232
|
* ChecksumCRC32C: "STRING_VALUE",
|
|
233
233
|
* ChecksumCRC64NVME: "STRING_VALUE",
|
|
234
234
|
* ChecksumSHA1: "STRING_VALUE",
|
|
235
235
|
* ChecksumSHA256: "STRING_VALUE",
|
|
236
|
+
* ChecksumSHA512: "STRING_VALUE",
|
|
237
|
+
* ChecksumMD5: "STRING_VALUE",
|
|
238
|
+
* ChecksumXXHASH64: "STRING_VALUE",
|
|
239
|
+
* ChecksumXXHASH3: "STRING_VALUE",
|
|
240
|
+
* ChecksumXXHASH128: "STRING_VALUE",
|
|
236
241
|
* Expires: new Date("TIMESTAMP"),
|
|
237
242
|
* IfMatch: "STRING_VALUE",
|
|
238
243
|
* IfNoneMatch: "STRING_VALUE",
|
|
@@ -271,6 +276,11 @@ declare const PutObjectCommand_base: {
|
|
|
271
276
|
* // ChecksumCRC64NVME: "STRING_VALUE",
|
|
272
277
|
* // ChecksumSHA1: "STRING_VALUE",
|
|
273
278
|
* // ChecksumSHA256: "STRING_VALUE",
|
|
279
|
+
* // ChecksumSHA512: "STRING_VALUE",
|
|
280
|
+
* // ChecksumMD5: "STRING_VALUE",
|
|
281
|
+
* // ChecksumXXHASH64: "STRING_VALUE",
|
|
282
|
+
* // ChecksumXXHASH3: "STRING_VALUE",
|
|
283
|
+
* // ChecksumXXHASH128: "STRING_VALUE",
|
|
274
284
|
* // ChecksumType: "COMPOSITE" || "FULL_OBJECT",
|
|
275
285
|
* // ServerSideEncryption: "AES256" || "aws:fsx" || "aws:kms" || "aws:kms:dsse",
|
|
276
286
|
* // VersionId: "STRING_VALUE",
|
|
@@ -52,7 +52,7 @@ declare const PutObjectLegalHoldCommand_base: {
|
|
|
52
52
|
* RequestPayer: "requester",
|
|
53
53
|
* VersionId: "STRING_VALUE",
|
|
54
54
|
* ContentMD5: "STRING_VALUE",
|
|
55
|
-
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME",
|
|
55
|
+
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME" || "SHA512" || "MD5" || "XXHASH64" || "XXHASH3" || "XXHASH128",
|
|
56
56
|
* ExpectedBucketOwner: "STRING_VALUE",
|
|
57
57
|
* };
|
|
58
58
|
* const command = new PutObjectLegalHoldCommand(input);
|
|
@@ -76,7 +76,7 @@ declare const PutObjectLockConfigurationCommand_base: {
|
|
|
76
76
|
* RequestPayer: "requester",
|
|
77
77
|
* Token: "STRING_VALUE",
|
|
78
78
|
* ContentMD5: "STRING_VALUE",
|
|
79
|
-
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME",
|
|
79
|
+
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME" || "SHA512" || "MD5" || "XXHASH64" || "XXHASH3" || "XXHASH128",
|
|
80
80
|
* ExpectedBucketOwner: "STRING_VALUE",
|
|
81
81
|
* };
|
|
82
82
|
* const command = new PutObjectLockConfigurationCommand(input);
|
|
@@ -57,7 +57,7 @@ declare const PutObjectRetentionCommand_base: {
|
|
|
57
57
|
* VersionId: "STRING_VALUE",
|
|
58
58
|
* BypassGovernanceRetention: true || false,
|
|
59
59
|
* ContentMD5: "STRING_VALUE",
|
|
60
|
-
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME",
|
|
60
|
+
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME" || "SHA512" || "MD5" || "XXHASH64" || "XXHASH3" || "XXHASH128",
|
|
61
61
|
* ExpectedBucketOwner: "STRING_VALUE",
|
|
62
62
|
* };
|
|
63
63
|
* const command = new PutObjectRetentionCommand(input);
|
|
@@ -93,7 +93,7 @@ declare const PutObjectTaggingCommand_base: {
|
|
|
93
93
|
* Key: "STRING_VALUE", // required
|
|
94
94
|
* VersionId: "STRING_VALUE",
|
|
95
95
|
* ContentMD5: "STRING_VALUE",
|
|
96
|
-
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME",
|
|
96
|
+
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME" || "SHA512" || "MD5" || "XXHASH64" || "XXHASH3" || "XXHASH128",
|
|
97
97
|
* Tagging: { // Tagging
|
|
98
98
|
* TagSet: [ // TagSet // required
|
|
99
99
|
* { // Tag
|
|
@@ -81,7 +81,7 @@ declare const PutPublicAccessBlockCommand_base: {
|
|
|
81
81
|
* const input = { // PutPublicAccessBlockRequest
|
|
82
82
|
* Bucket: "STRING_VALUE", // required
|
|
83
83
|
* ContentMD5: "STRING_VALUE",
|
|
84
|
-
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME",
|
|
84
|
+
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME" || "SHA512" || "MD5" || "XXHASH64" || "XXHASH3" || "XXHASH128",
|
|
85
85
|
* PublicAccessBlockConfiguration: { // PublicAccessBlockConfiguration
|
|
86
86
|
* BlockPublicAcls: true || false,
|
|
87
87
|
* IgnorePublicAcls: true || false,
|
|
@@ -319,7 +319,7 @@ declare const RestoreObjectCommand_base: {
|
|
|
319
319
|
* },
|
|
320
320
|
* },
|
|
321
321
|
* RequestPayer: "requester",
|
|
322
|
-
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME",
|
|
322
|
+
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME" || "SHA512" || "MD5" || "XXHASH64" || "XXHASH3" || "XXHASH128",
|
|
323
323
|
* ExpectedBucketOwner: "STRING_VALUE",
|
|
324
324
|
* };
|
|
325
325
|
* const command = new RestoreObjectCommand(input);
|
|
@@ -123,7 +123,7 @@ declare const UpdateBucketMetadataInventoryTableConfigurationCommand_base: {
|
|
|
123
123
|
* const input = { // UpdateBucketMetadataInventoryTableConfigurationRequest
|
|
124
124
|
* Bucket: "STRING_VALUE", // required
|
|
125
125
|
* ContentMD5: "STRING_VALUE",
|
|
126
|
-
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME",
|
|
126
|
+
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME" || "SHA512" || "MD5" || "XXHASH64" || "XXHASH3" || "XXHASH128",
|
|
127
127
|
* InventoryTableConfiguration: { // InventoryTableConfigurationUpdates
|
|
128
128
|
* ConfigurationState: "ENABLED" || "DISABLED", // required
|
|
129
129
|
* EncryptionConfiguration: { // MetadataTableEncryptionConfiguration
|
|
@@ -76,7 +76,7 @@ declare const UpdateBucketMetadataJournalTableConfigurationCommand_base: {
|
|
|
76
76
|
* const input = { // UpdateBucketMetadataJournalTableConfigurationRequest
|
|
77
77
|
* Bucket: "STRING_VALUE", // required
|
|
78
78
|
* ContentMD5: "STRING_VALUE",
|
|
79
|
-
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME",
|
|
79
|
+
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME" || "SHA512" || "MD5" || "XXHASH64" || "XXHASH3" || "XXHASH128",
|
|
80
80
|
* JournalTableConfiguration: { // JournalTableConfigurationUpdates
|
|
81
81
|
* RecordExpiration: { // RecordExpiration
|
|
82
82
|
* Expiration: "ENABLED" || "DISABLED", // required
|
|
@@ -210,7 +210,7 @@ declare const UpdateObjectEncryptionCommand_base: {
|
|
|
210
210
|
* RequestPayer: "requester",
|
|
211
211
|
* ExpectedBucketOwner: "STRING_VALUE",
|
|
212
212
|
* ContentMD5: "STRING_VALUE",
|
|
213
|
-
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME",
|
|
213
|
+
* ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME" || "SHA512" || "MD5" || "XXHASH64" || "XXHASH3" || "XXHASH128",
|
|
214
214
|
* };
|
|
215
215
|
* const command = new UpdateObjectEncryptionCommand(input);
|
|
216
216
|
* const response = await client.send(command);
|