@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.
Files changed (60) hide show
  1. package/dist-cjs/index.js +7 -6
  2. package/dist-cjs/schemas/schemas_0.js +75 -60
  3. package/dist-es/commands/GetBucketPolicyCommand.js +1 -5
  4. package/dist-es/commands/GetObjectCommand.js +1 -1
  5. package/dist-es/commands/SelectObjectContentCommand.js +0 -2
  6. package/dist-es/models/enums.js +5 -0
  7. package/dist-es/schemas/schemas_0.js +75 -60
  8. package/dist-types/commands/CompleteMultipartUploadCommand.d.ts +15 -0
  9. package/dist-types/commands/CopyObjectCommand.d.ts +6 -1
  10. package/dist-types/commands/CreateBucketMetadataConfigurationCommand.d.ts +1 -1
  11. package/dist-types/commands/CreateBucketMetadataTableConfigurationCommand.d.ts +1 -1
  12. package/dist-types/commands/CreateMultipartUploadCommand.d.ts +2 -2
  13. package/dist-types/commands/DeleteBucketInventoryConfigurationCommand.d.ts +38 -7
  14. package/dist-types/commands/DeleteObjectsCommand.d.ts +1 -1
  15. package/dist-types/commands/GetBucketInventoryConfigurationCommand.d.ts +39 -8
  16. package/dist-types/commands/GetObjectAttributesCommand.d.ts +10 -0
  17. package/dist-types/commands/GetObjectCommand.d.ts +5 -0
  18. package/dist-types/commands/HeadObjectCommand.d.ts +5 -0
  19. package/dist-types/commands/ListBucketInventoryConfigurationsCommand.d.ts +39 -8
  20. package/dist-types/commands/ListMultipartUploadsCommand.d.ts +1 -1
  21. package/dist-types/commands/ListObjectVersionsCommand.d.ts +1 -1
  22. package/dist-types/commands/ListObjectsCommand.d.ts +1 -1
  23. package/dist-types/commands/ListObjectsV2Command.d.ts +1 -1
  24. package/dist-types/commands/ListPartsCommand.d.ts +6 -1
  25. package/dist-types/commands/PutBucketAbacCommand.d.ts +1 -1
  26. package/dist-types/commands/PutBucketAccelerateConfigurationCommand.d.ts +1 -1
  27. package/dist-types/commands/PutBucketAclCommand.d.ts +1 -1
  28. package/dist-types/commands/PutBucketCorsCommand.d.ts +1 -1
  29. package/dist-types/commands/PutBucketEncryptionCommand.d.ts +1 -1
  30. package/dist-types/commands/PutBucketInventoryConfigurationCommand.d.ts +31 -5
  31. package/dist-types/commands/PutBucketLifecycleConfigurationCommand.d.ts +1 -1
  32. package/dist-types/commands/PutBucketLoggingCommand.d.ts +1 -1
  33. package/dist-types/commands/PutBucketOwnershipControlsCommand.d.ts +1 -1
  34. package/dist-types/commands/PutBucketPolicyCommand.d.ts +1 -1
  35. package/dist-types/commands/PutBucketReplicationCommand.d.ts +1 -1
  36. package/dist-types/commands/PutBucketRequestPaymentCommand.d.ts +1 -1
  37. package/dist-types/commands/PutBucketTaggingCommand.d.ts +1 -1
  38. package/dist-types/commands/PutBucketVersioningCommand.d.ts +1 -1
  39. package/dist-types/commands/PutBucketWebsiteCommand.d.ts +1 -1
  40. package/dist-types/commands/PutObjectAclCommand.d.ts +1 -1
  41. package/dist-types/commands/PutObjectCommand.d.ts +11 -1
  42. package/dist-types/commands/PutObjectLegalHoldCommand.d.ts +1 -1
  43. package/dist-types/commands/PutObjectLockConfigurationCommand.d.ts +1 -1
  44. package/dist-types/commands/PutObjectRetentionCommand.d.ts +1 -1
  45. package/dist-types/commands/PutObjectTaggingCommand.d.ts +1 -1
  46. package/dist-types/commands/PutPublicAccessBlockCommand.d.ts +1 -1
  47. package/dist-types/commands/RestoreObjectCommand.d.ts +1 -1
  48. package/dist-types/commands/UpdateBucketMetadataInventoryTableConfigurationCommand.d.ts +1 -1
  49. package/dist-types/commands/UpdateBucketMetadataJournalTableConfigurationCommand.d.ts +1 -1
  50. package/dist-types/commands/UpdateObjectEncryptionCommand.d.ts +1 -1
  51. package/dist-types/commands/UploadPartCommand.d.ts +11 -1
  52. package/dist-types/commands/UploadPartCopyCommand.d.ts +5 -0
  53. package/dist-types/commands/WriteGetObjectResponseCommand.d.ts +5 -0
  54. package/dist-types/models/enums.d.ts +5 -0
  55. package/dist-types/models/models_0.d.ts +546 -2
  56. package/dist-types/models/models_1.d.ts +194 -34
  57. package/dist-types/ts3.4/models/enums.d.ts +5 -0
  58. package/dist-types/ts3.4/models/models_0.d.ts +55 -0
  59. package/dist-types/ts3.4/models/models_1.d.ts +20 -0
  60. package/package.json +9 -9
@@ -294,6 +294,41 @@ export interface CompleteMultipartUploadOutput {
294
294
  * @public
295
295
  */
296
296
  ChecksumSHA256?: string | undefined;
297
+ /**
298
+ * <p>The Base64 encoded, 512-bit <code>SHA512</code> digest of the object. For more
299
+ * information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity in the Amazon S3
300
+ * User Guide</a>.</p>
301
+ * @public
302
+ */
303
+ ChecksumSHA512?: string | undefined;
304
+ /**
305
+ * <p>The Base64 encoded, 128-bit <code>MD5</code> digest of the object. For more
306
+ * information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity in the Amazon S3
307
+ * User Guide</a>.</p>
308
+ * @public
309
+ */
310
+ ChecksumMD5?: string | undefined;
311
+ /**
312
+ * <p>The Base64 encoded, 64-bit <code>XXHASH64</code> checksum of the object. For more
313
+ * information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity in the Amazon S3
314
+ * User Guide</a>.</p>
315
+ * @public
316
+ */
317
+ ChecksumXXHASH64?: string | undefined;
318
+ /**
319
+ * <p>The Base64 encoded, 64-bit <code>XXHASH3</code> checksum of the object. For more
320
+ * information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity in the Amazon S3
321
+ * User Guide</a>.</p>
322
+ * @public
323
+ */
324
+ ChecksumXXHASH3?: string | undefined;
325
+ /**
326
+ * <p>The Base64 encoded, 128-bit <code>XXHASH128</code> checksum of the object. For more
327
+ * information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity in the Amazon S3
328
+ * User Guide</a>.</p>
329
+ * @public
330
+ */
331
+ ChecksumXXHASH128?: string | undefined;
297
332
  /**
298
333
  * <p>The checksum type, which determines how part-level checksums are combined to create an object-level
299
334
  * checksum for multipart objects. You can use this header as a data integrity check to verify that the
@@ -371,8 +406,8 @@ export interface CompletedPart {
371
406
  ChecksumCRC32C?: string | undefined;
372
407
  /**
373
408
  * <p>The Base64 encoded, 64-bit <code>CRC64NVME</code> checksum of the part. This checksum is present if
374
- * the multipart upload request was created with the <code>CRC64NVME</code> checksum algorithm to the
375
- * uploaded object). For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
409
+ * the multipart upload request was created with the <code>CRC64NVME</code> checksum algorithm. For more
410
+ * information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
376
411
  * the <i>Amazon S3 User Guide</i>.</p>
377
412
  * @public
378
413
  */
@@ -393,6 +428,46 @@ export interface CompletedPart {
393
428
  * @public
394
429
  */
395
430
  ChecksumSHA256?: string | undefined;
431
+ /**
432
+ * <p>The Base64 encoded, 512-bit <code>SHA512</code> digest of the part. This checksum is present if
433
+ * the multipart upload request was created with the <code>SHA512</code> checksum algorithm. For more
434
+ * information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
435
+ * the <i>Amazon S3 User Guide</i>.</p>
436
+ * @public
437
+ */
438
+ ChecksumSHA512?: string | undefined;
439
+ /**
440
+ * <p>The Base64 encoded, 128-bit <code>MD5</code> digest of the part. This checksum is present if
441
+ * the multipart upload request was created with the <code>MD5</code> checksum algorithm. For more
442
+ * information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
443
+ * the <i>Amazon S3 User Guide</i>.</p>
444
+ * @public
445
+ */
446
+ ChecksumMD5?: string | undefined;
447
+ /**
448
+ * <p>The Base64 encoded, 64-bit <code>XXHASH64</code> checksum of the part. This checksum is present if
449
+ * the multipart upload request was created with the <code>XXHASH64</code> checksum algorithm. For more
450
+ * information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
451
+ * the <i>Amazon S3 User Guide</i>.</p>
452
+ * @public
453
+ */
454
+ ChecksumXXHASH64?: string | undefined;
455
+ /**
456
+ * <p>The Base64 encoded, 64-bit <code>XXHASH3</code> checksum of the part. This checksum is present if
457
+ * the multipart upload request was created with the <code>XXHASH3</code> checksum algorithm. For more
458
+ * information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
459
+ * the <i>Amazon S3 User Guide</i>.</p>
460
+ * @public
461
+ */
462
+ ChecksumXXHASH3?: string | undefined;
463
+ /**
464
+ * <p>The Base64 encoded, 128-bit <code>XXHASH128</code> checksum of the part. This checksum is present if
465
+ * the multipart upload request was created with the <code>XXHASH128</code> checksum algorithm. For more
466
+ * information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
467
+ * the <i>Amazon S3 User Guide</i>.</p>
468
+ * @public
469
+ */
470
+ ChecksumXXHASH128?: string | undefined;
396
471
  /**
397
472
  * <p>Part number that identifies the part. This is a positive integer between 1 and 10,000.</p>
398
473
  * <note>
@@ -515,6 +590,46 @@ export interface CompleteMultipartUploadRequest {
515
590
  * @public
516
591
  */
517
592
  ChecksumSHA256?: string | undefined;
593
+ /**
594
+ * <p>This header can be used as a data integrity check to verify that the data received is the same data
595
+ * that was originally sent. This header specifies the Base64 encoded, 512-bit <code>SHA512</code>
596
+ * digest of the object. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity in the Amazon S3
597
+ * User Guide</a>.</p>
598
+ * @public
599
+ */
600
+ ChecksumSHA512?: string | undefined;
601
+ /**
602
+ * <p>This header can be used as a data integrity check to verify that the data received is the same data
603
+ * that was originally sent. This header specifies the Base64 encoded, 128-bit <code>MD5</code>
604
+ * digest of the object. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity in the Amazon S3
605
+ * User Guide</a>.</p>
606
+ * @public
607
+ */
608
+ ChecksumMD5?: string | undefined;
609
+ /**
610
+ * <p>This header can be used as a data integrity check to verify that the data received is the same data
611
+ * that was originally sent. This header specifies the Base64 encoded, 64-bit <code>XXHASH64</code>
612
+ * checksum of the object. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity in the Amazon S3
613
+ * User Guide</a>.</p>
614
+ * @public
615
+ */
616
+ ChecksumXXHASH64?: string | undefined;
617
+ /**
618
+ * <p>This header can be used as a data integrity check to verify that the data received is the same data
619
+ * that was originally sent. This header specifies the Base64 encoded, 64-bit <code>XXHASH3</code>
620
+ * checksum of the object. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity in the Amazon S3
621
+ * User Guide</a>.</p>
622
+ * @public
623
+ */
624
+ ChecksumXXHASH3?: string | undefined;
625
+ /**
626
+ * <p>This header can be used as a data integrity check to verify that the data received is the same data
627
+ * that was originally sent. This header specifies the Base64 encoded, 128-bit <code>XXHASH128</code>
628
+ * checksum of the object. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity in the Amazon S3
629
+ * User Guide</a>.</p>
630
+ * @public
631
+ */
632
+ ChecksumXXHASH128?: string | undefined;
518
633
  /**
519
634
  * <p>This header specifies the checksum type of the object, which determines how part-level checksums are
520
635
  * combined to create an object-level checksum for multipart objects. You can use this header as a data
@@ -668,6 +783,46 @@ export interface CopyObjectResult {
668
783
  * @public
669
784
  */
670
785
  ChecksumSHA256?: string | undefined;
786
+ /**
787
+ * <p>The Base64 encoded, 512-bit <code>SHA512</code> digest of the object. This checksum is only present
788
+ * if the object was uploaded with the <code>SHA512</code> checksum algorithm. For more information, see
789
+ * <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
790
+ * the <i>Amazon S3 User Guide</i>.</p>
791
+ * @public
792
+ */
793
+ ChecksumSHA512?: string | undefined;
794
+ /**
795
+ * <p>The Base64 encoded, 128-bit <code>MD5</code> digest of the object. This checksum is only present
796
+ * if the object was uploaded with the <code>MD5</code> checksum algorithm. For more information, see
797
+ * <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
798
+ * the <i>Amazon S3 User Guide</i>.</p>
799
+ * @public
800
+ */
801
+ ChecksumMD5?: string | undefined;
802
+ /**
803
+ * <p>The Base64 encoded, 64-bit <code>XXHASH64</code> checksum of the object. This checksum is only present
804
+ * if the object was uploaded with the <code>XXHASH64</code> checksum algorithm. For more information, see
805
+ * <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
806
+ * the <i>Amazon S3 User Guide</i>.</p>
807
+ * @public
808
+ */
809
+ ChecksumXXHASH64?: string | undefined;
810
+ /**
811
+ * <p>The Base64 encoded, 64-bit <code>XXHASH3</code> checksum of the object. This checksum is only present
812
+ * if the object was uploaded with the <code>XXHASH3</code> checksum algorithm. For more information, see
813
+ * <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
814
+ * the <i>Amazon S3 User Guide</i>.</p>
815
+ * @public
816
+ */
817
+ ChecksumXXHASH3?: string | undefined;
818
+ /**
819
+ * <p>The Base64 encoded, 128-bit <code>XXHASH128</code> checksum of the object. This checksum is only present
820
+ * if the object was uploaded with the <code>XXHASH128</code> checksum algorithm. For more information, see
821
+ * <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
822
+ * the <i>Amazon S3 User Guide</i>.</p>
823
+ * @public
824
+ */
825
+ ChecksumXXHASH128?: string | undefined;
671
826
  }
672
827
  /**
673
828
  * @public
@@ -2947,6 +3102,12 @@ export interface DeleteBucketIntelligentTieringConfigurationRequest {
2947
3102
  export interface DeleteBucketInventoryConfigurationRequest {
2948
3103
  /**
2949
3104
  * <p>The name of the bucket containing the inventory configuration to delete.</p>
3105
+ * <p>
3106
+ * <b>Directory buckets </b> - When you use this operation with a directory bucket, you must use path-style requests in the format <code>https://s3express-control.<i>region-code</i>.amazonaws.com/<i>bucket-name</i>
3107
+ * </code>. Virtual-hosted-style requests aren't supported. Directory bucket names must be unique in the chosen Zone (Availability Zone or Local Zone). Bucket names must also follow the format <code>
3108
+ * <i>bucket-base-name</i>--<i>zone-id</i>--x-s3</code> (for example, <code>
3109
+ * <i>DOC-EXAMPLE-BUCKET</i>--<i>usw2-az1</i>--x-s3</code>). For information about bucket naming restrictions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-bucket-naming-rules.html">Directory bucket naming rules</a> in the <i>Amazon S3 User Guide</i>
3110
+ * </p>
2950
3111
  * <p>Note: To supply the Multi-region Access Point (MRAP) to Bucket, you need to install the "@aws-sdk/signature-v4-crt" package to your project dependencies.
2951
3112
  * For more information, please go to https://github.com/aws/aws-sdk-js-v3#known-issues</p>
2952
3113
  * @public
@@ -2959,6 +3120,10 @@ export interface DeleteBucketInventoryConfigurationRequest {
2959
3120
  Id: string | undefined;
2960
3121
  /**
2961
3122
  * <p>The account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code <code>403 Forbidden</code> (access denied).</p>
3123
+ * <note>
3124
+ * <p>For directory buckets, this header is not supported in this API operation. If you specify this header, the request fails with the HTTP status code
3125
+ * <code>501 Not Implemented</code>.</p>
3126
+ * </note>
2962
3127
  * @public
2963
3128
  */
2964
3129
  ExpectedBucketOwner?: string | undefined;
@@ -5407,6 +5572,11 @@ export interface DeleteObjectsRequest {
5407
5572
  * </li>
5408
5573
  * <li>
5409
5574
  * <p>
5575
+ * <code>MD5</code>
5576
+ * </p>
5577
+ * </li>
5578
+ * <li>
5579
+ * <p>
5410
5580
  * <code>SHA1</code>
5411
5581
  * </p>
5412
5582
  * </li>
@@ -5415,6 +5585,26 @@ export interface DeleteObjectsRequest {
5415
5585
  * <code>SHA256</code>
5416
5586
  * </p>
5417
5587
  * </li>
5588
+ * <li>
5589
+ * <p>
5590
+ * <code>SHA512</code>
5591
+ * </p>
5592
+ * </li>
5593
+ * <li>
5594
+ * <p>
5595
+ * <code>XXHASH3</code>
5596
+ * </p>
5597
+ * </li>
5598
+ * <li>
5599
+ * <p>
5600
+ * <code>XXHASH64</code>
5601
+ * </p>
5602
+ * </li>
5603
+ * <li>
5604
+ * <p>
5605
+ * <code>XXHASH128</code>
5606
+ * </p>
5607
+ * </li>
5418
5608
  * </ul>
5419
5609
  * <p>For more
5420
5610
  * information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
@@ -6405,6 +6595,10 @@ export interface InventoryConfiguration {
6405
6595
  IncludedObjectVersions: InventoryIncludedObjectVersions | undefined;
6406
6596
  /**
6407
6597
  * <p>Contains the optional fields that are included in the inventory results.</p>
6598
+ * <note>
6599
+ * <p>The following optional fields are supported for directory buckets <code>Size | LastModifiedDate | StorageClass | ETag | IsMultipartUploaded |
6600
+ * EncryptionStatus | BucketKeyStatus | ChecksumAlgorithm | LifecycleExpirationDate.</code> Throws MalformedXML error if unsupported optional field is provided. </p>
6601
+ * </note>
6408
6602
  * @public
6409
6603
  */
6410
6604
  OptionalFields?: InventoryOptionalField[] | undefined;
@@ -6430,6 +6624,12 @@ export interface GetBucketInventoryConfigurationOutput {
6430
6624
  export interface GetBucketInventoryConfigurationRequest {
6431
6625
  /**
6432
6626
  * <p>The name of the bucket containing the inventory configuration to retrieve.</p>
6627
+ * <p>
6628
+ * <b>Directory buckets </b> - When you use this operation with a directory bucket, you must use path-style requests in the format <code>https://s3express-control.<i>region-code</i>.amazonaws.com/<i>bucket-name</i>
6629
+ * </code>. Virtual-hosted-style requests aren't supported. Directory bucket names must be unique in the chosen Zone (Availability Zone or Local Zone). Bucket names must also follow the format <code>
6630
+ * <i>bucket-base-name</i>--<i>zone-id</i>--x-s3</code> (for example, <code>
6631
+ * <i>DOC-EXAMPLE-BUCKET</i>--<i>usw2-az1</i>--x-s3</code>). For information about bucket naming restrictions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-bucket-naming-rules.html">Directory bucket naming rules</a> in the <i>Amazon S3 User Guide</i>
6632
+ * </p>
6433
6633
  * <p>Note: To supply the Multi-region Access Point (MRAP) to Bucket, you need to install the "@aws-sdk/signature-v4-crt" package to your project dependencies.
6434
6634
  * For more information, please go to https://github.com/aws/aws-sdk-js-v3#known-issues</p>
6435
6635
  * @public
@@ -6442,6 +6642,10 @@ export interface GetBucketInventoryConfigurationRequest {
6442
6642
  Id: string | undefined;
6443
6643
  /**
6444
6644
  * <p>The account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code <code>403 Forbidden</code> (access denied).</p>
6645
+ * <note>
6646
+ * <p>For directory buckets, this header is not supported in this API operation. If you specify this header, the request fails with the HTTP status code
6647
+ * <code>501 Not Implemented</code>.</p>
6648
+ * </note>
6445
6649
  * @public
6446
6650
  */
6447
6651
  ExpectedBucketOwner?: string | undefined;
@@ -8954,6 +9158,41 @@ export interface GetObjectOutput {
8954
9158
  * @public
8955
9159
  */
8956
9160
  ChecksumSHA256?: string | undefined;
9161
+ /**
9162
+ * <p>The Base64 encoded, 512-bit <code>SHA512</code> digest of the object. For more information, see
9163
+ * <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
9164
+ * object integrity in the Amazon S3 User Guide</a>.</p>
9165
+ * @public
9166
+ */
9167
+ ChecksumSHA512?: string | undefined;
9168
+ /**
9169
+ * <p>The Base64 encoded, 128-bit <code>MD5</code> digest of the object. For more information, see
9170
+ * <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
9171
+ * object integrity in the Amazon S3 User Guide</a>.</p>
9172
+ * @public
9173
+ */
9174
+ ChecksumMD5?: string | undefined;
9175
+ /**
9176
+ * <p>The Base64 encoded, 64-bit <code>XXHASH64</code> checksum of the object. For more information, see
9177
+ * <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
9178
+ * object integrity in the Amazon S3 User Guide</a>.</p>
9179
+ * @public
9180
+ */
9181
+ ChecksumXXHASH64?: string | undefined;
9182
+ /**
9183
+ * <p>The Base64 encoded, 64-bit <code>XXHASH3</code> checksum of the object. For more information, see
9184
+ * <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
9185
+ * object integrity in the Amazon S3 User Guide</a>.</p>
9186
+ * @public
9187
+ */
9188
+ ChecksumXXHASH3?: string | undefined;
9189
+ /**
9190
+ * <p>The Base64 encoded, 128-bit <code>XXHASH128</code> checksum of the object. For more information, see
9191
+ * <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
9192
+ * object integrity in the Amazon S3 User Guide</a>.</p>
9193
+ * @public
9194
+ */
9195
+ ChecksumXXHASH128?: string | undefined;
8957
9196
  /**
8958
9197
  * <p>The checksum type, which determines how part-level checksums are combined to create an object-level
8959
9198
  * checksum for multipart objects. You can use this header response to verify that the checksum type that
@@ -9536,6 +9775,46 @@ export interface Checksum {
9536
9775
  * @public
9537
9776
  */
9538
9777
  ChecksumSHA256?: string | undefined;
9778
+ /**
9779
+ * <p>The Base64 encoded, 512-bit <code>SHA512</code> digest of the object. This checksum is present
9780
+ * if the object was uploaded with the <code>SHA512</code> checksum algorithm. For more information, see
9781
+ * <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
9782
+ * the <i>Amazon S3 User Guide</i>.</p>
9783
+ * @public
9784
+ */
9785
+ ChecksumSHA512?: string | undefined;
9786
+ /**
9787
+ * <p>The Base64 encoded, 128-bit <code>MD5</code> digest of the object. This checksum is present
9788
+ * if the object was uploaded with the <code>MD5</code> checksum algorithm. For more information, see
9789
+ * <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
9790
+ * the <i>Amazon S3 User Guide</i>.</p>
9791
+ * @public
9792
+ */
9793
+ ChecksumMD5?: string | undefined;
9794
+ /**
9795
+ * <p>The Base64 encoded, 64-bit <code>XXHASH64</code> checksum of the object. This checksum is present
9796
+ * if the object was uploaded with the <code>XXHASH64</code> checksum algorithm. For more information, see
9797
+ * <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
9798
+ * the <i>Amazon S3 User Guide</i>.</p>
9799
+ * @public
9800
+ */
9801
+ ChecksumXXHASH64?: string | undefined;
9802
+ /**
9803
+ * <p>The Base64 encoded, 64-bit <code>XXHASH3</code> checksum of the object. This checksum is present
9804
+ * if the object was uploaded with the <code>XXHASH3</code> checksum algorithm. For more information, see
9805
+ * <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
9806
+ * the <i>Amazon S3 User Guide</i>.</p>
9807
+ * @public
9808
+ */
9809
+ ChecksumXXHASH3?: string | undefined;
9810
+ /**
9811
+ * <p>The Base64 encoded, 128-bit <code>XXHASH128</code> checksum of the object. This checksum is present
9812
+ * if the object was uploaded with the <code>XXHASH128</code> checksum algorithm. For more information, see
9813
+ * <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
9814
+ * the <i>Amazon S3 User Guide</i>.</p>
9815
+ * @public
9816
+ */
9817
+ ChecksumXXHASH128?: string | undefined;
9539
9818
  /**
9540
9819
  * <p>The checksum type that is used to calculate the object’s checksum value. For more information, see
9541
9820
  * <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
@@ -9600,6 +9879,46 @@ export interface ObjectPart {
9600
9879
  * @public
9601
9880
  */
9602
9881
  ChecksumSHA256?: string | undefined;
9882
+ /**
9883
+ * <p>The Base64 encoded, 512-bit <code>SHA512</code> digest of the part. This checksum is present if
9884
+ * the multipart upload request was created with the <code>SHA512</code> checksum algorithm. For more
9885
+ * information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
9886
+ * the <i>Amazon S3 User Guide</i>.</p>
9887
+ * @public
9888
+ */
9889
+ ChecksumSHA512?: string | undefined;
9890
+ /**
9891
+ * <p>The Base64 encoded, 128-bit <code>MD5</code> digest of the part. This checksum is present if
9892
+ * the multipart upload request was created with the <code>MD5</code> checksum algorithm. For more
9893
+ * information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
9894
+ * the <i>Amazon S3 User Guide</i>.</p>
9895
+ * @public
9896
+ */
9897
+ ChecksumMD5?: string | undefined;
9898
+ /**
9899
+ * <p>The Base64 encoded, 64-bit <code>XXHASH64</code> checksum of the part. This checksum is present if
9900
+ * the multipart upload request was created with the <code>XXHASH64</code> checksum algorithm. For more
9901
+ * information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
9902
+ * the <i>Amazon S3 User Guide</i>.</p>
9903
+ * @public
9904
+ */
9905
+ ChecksumXXHASH64?: string | undefined;
9906
+ /**
9907
+ * <p>The Base64 encoded, 64-bit <code>XXHASH3</code> checksum of the part. This checksum is present if
9908
+ * the multipart upload request was created with the <code>XXHASH3</code> checksum algorithm. For more
9909
+ * information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
9910
+ * the <i>Amazon S3 User Guide</i>.</p>
9911
+ * @public
9912
+ */
9913
+ ChecksumXXHASH3?: string | undefined;
9914
+ /**
9915
+ * <p>The Base64 encoded, 128-bit <code>XXHASH128</code> checksum of the part. This checksum is present if
9916
+ * the multipart upload request was created with the <code>XXHASH128</code> checksum algorithm. For more
9917
+ * information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
9918
+ * the <i>Amazon S3 User Guide</i>.</p>
9919
+ * @public
9920
+ */
9921
+ ChecksumXXHASH128?: string | undefined;
9603
9922
  }
9604
9923
  /**
9605
9924
  * <p>A collection of parts associated with a multipart upload.</p>
@@ -10453,6 +10772,41 @@ export interface HeadObjectOutput {
10453
10772
  * @public
10454
10773
  */
10455
10774
  ChecksumSHA256?: string | undefined;
10775
+ /**
10776
+ * <p>The Base64 encoded, 512-bit <code>SHA512</code> digest of the object. For more information, see
10777
+ * <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
10778
+ * object integrity in the Amazon S3 User Guide</a>.</p>
10779
+ * @public
10780
+ */
10781
+ ChecksumSHA512?: string | undefined;
10782
+ /**
10783
+ * <p>The Base64 encoded, 128-bit <code>MD5</code> digest of the object. For more information, see
10784
+ * <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
10785
+ * object integrity in the Amazon S3 User Guide</a>.</p>
10786
+ * @public
10787
+ */
10788
+ ChecksumMD5?: string | undefined;
10789
+ /**
10790
+ * <p>The Base64 encoded, 64-bit <code>XXHASH64</code> checksum of the object. For more information, see
10791
+ * <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
10792
+ * object integrity in the Amazon S3 User Guide</a>.</p>
10793
+ * @public
10794
+ */
10795
+ ChecksumXXHASH64?: string | undefined;
10796
+ /**
10797
+ * <p>The Base64 encoded, 64-bit <code>XXHASH3</code> checksum of the object. For more information, see
10798
+ * <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
10799
+ * object integrity in the Amazon S3 User Guide</a>.</p>
10800
+ * @public
10801
+ */
10802
+ ChecksumXXHASH3?: string | undefined;
10803
+ /**
10804
+ * <p>The Base64 encoded, 128-bit <code>XXHASH128</code> checksum of the object. For more information, see
10805
+ * <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
10806
+ * object integrity in the Amazon S3 User Guide</a>.</p>
10807
+ * @public
10808
+ */
10809
+ ChecksumXXHASH128?: string | undefined;
10456
10810
  /**
10457
10811
  * <p>The checksum type, which determines how part-level checksums are combined to create an object-level
10458
10812
  * checksum for multipart objects. You can use this header response to verify that the checksum type that
@@ -11064,6 +11418,12 @@ export interface ListBucketInventoryConfigurationsOutput {
11064
11418
  export interface ListBucketInventoryConfigurationsRequest {
11065
11419
  /**
11066
11420
  * <p>The name of the bucket containing the inventory configurations to retrieve.</p>
11421
+ * <p>
11422
+ * <b>Directory buckets </b> - When you use this operation with a directory bucket, you must use path-style requests in the format <code>https://s3express-control.<i>region-code</i>.amazonaws.com/<i>bucket-name</i>
11423
+ * </code>. Virtual-hosted-style requests aren't supported. Directory bucket names must be unique in the chosen Zone (Availability Zone or Local Zone). Bucket names must also follow the format <code>
11424
+ * <i>bucket-base-name</i>--<i>zone-id</i>--x-s3</code> (for example, <code>
11425
+ * <i>DOC-EXAMPLE-BUCKET</i>--<i>usw2-az1</i>--x-s3</code>). For information about bucket naming restrictions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-bucket-naming-rules.html">Directory bucket naming rules</a> in the <i>Amazon S3 User Guide</i>
11426
+ * </p>
11067
11427
  * <p>Note: To supply the Multi-region Access Point (MRAP) to Bucket, you need to install the "@aws-sdk/signature-v4-crt" package to your project dependencies.
11068
11428
  * For more information, please go to https://github.com/aws/aws-sdk-js-v3#known-issues</p>
11069
11429
  * @public
@@ -11078,6 +11438,10 @@ export interface ListBucketInventoryConfigurationsRequest {
11078
11438
  ContinuationToken?: string | undefined;
11079
11439
  /**
11080
11440
  * <p>The account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code <code>403 Forbidden</code> (access denied).</p>
11441
+ * <note>
11442
+ * <p>For directory buckets, this header is not supported in this API operation. If you specify this header, the request fails with the HTTP status code
11443
+ * <code>501 Not Implemented</code>.</p>
11444
+ * </note>
11081
11445
  * @public
11082
11446
  */
11083
11447
  ExpectedBucketOwner?: string | undefined;
@@ -12562,6 +12926,46 @@ export interface Part {
12562
12926
  * @public
12563
12927
  */
12564
12928
  ChecksumSHA256?: string | undefined;
12929
+ /**
12930
+ * <p>The Base64 encoded, 512-bit <code>SHA512</code> digest of the part. This checksum is present if
12931
+ * the multipart upload request was created with the <code>SHA512</code> checksum algorithm. For more
12932
+ * information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
12933
+ * the <i>Amazon S3 User Guide</i>.</p>
12934
+ * @public
12935
+ */
12936
+ ChecksumSHA512?: string | undefined;
12937
+ /**
12938
+ * <p>The Base64 encoded, 128-bit <code>MD5</code> digest of the part. This checksum is present if
12939
+ * the multipart upload request was created with the <code>MD5</code> checksum algorithm. For more
12940
+ * information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
12941
+ * the <i>Amazon S3 User Guide</i>.</p>
12942
+ * @public
12943
+ */
12944
+ ChecksumMD5?: string | undefined;
12945
+ /**
12946
+ * <p>The Base64 encoded, 64-bit <code>XXHASH64</code> checksum of the part. This checksum is present if
12947
+ * the multipart upload request was created with the <code>XXHASH64</code> checksum algorithm. For more
12948
+ * information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
12949
+ * the <i>Amazon S3 User Guide</i>.</p>
12950
+ * @public
12951
+ */
12952
+ ChecksumXXHASH64?: string | undefined;
12953
+ /**
12954
+ * <p>The Base64 encoded, 64-bit <code>XXHASH3</code> checksum of the part. This checksum is present if
12955
+ * the multipart upload request was created with the <code>XXHASH3</code> checksum algorithm. For more
12956
+ * information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
12957
+ * the <i>Amazon S3 User Guide</i>.</p>
12958
+ * @public
12959
+ */
12960
+ ChecksumXXHASH3?: string | undefined;
12961
+ /**
12962
+ * <p>The Base64 encoded, 128-bit <code>XXHASH128</code> checksum of the part. This checksum is present if
12963
+ * the multipart upload request was created with the <code>XXHASH128</code> checksum algorithm. For more
12964
+ * information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
12965
+ * the <i>Amazon S3 User Guide</i>.</p>
12966
+ * @public
12967
+ */
12968
+ ChecksumXXHASH128?: string | undefined;
12565
12969
  }
12566
12970
  /**
12567
12971
  * @public
@@ -13105,6 +13509,12 @@ export interface PutBucketIntelligentTieringConfigurationRequest {
13105
13509
  export interface PutBucketInventoryConfigurationRequest {
13106
13510
  /**
13107
13511
  * <p>The name of the bucket where the inventory configuration will be stored.</p>
13512
+ * <p>
13513
+ * <b>Directory buckets </b> - When you use this operation with a directory bucket, you must use path-style requests in the format <code>https://s3express-control.<i>region-code</i>.amazonaws.com/<i>bucket-name</i>
13514
+ * </code>. Virtual-hosted-style requests aren't supported. Directory bucket names must be unique in the chosen Zone (Availability Zone or Local Zone). Bucket names must also follow the format <code>
13515
+ * <i>bucket-base-name</i>--<i>zone-id</i>--x-s3</code> (for example, <code>
13516
+ * <i>DOC-EXAMPLE-BUCKET</i>--<i>usw2-az1</i>--x-s3</code>). For information about bucket naming restrictions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-bucket-naming-rules.html">Directory bucket naming rules</a> in the <i>Amazon S3 User Guide</i>
13517
+ * </p>
13108
13518
  * <p>Note: To supply the Multi-region Access Point (MRAP) to Bucket, you need to install the "@aws-sdk/signature-v4-crt" package to your project dependencies.
13109
13519
  * For more information, please go to https://github.com/aws/aws-sdk-js-v3#known-issues</p>
13110
13520
  * @public
@@ -13122,6 +13532,10 @@ export interface PutBucketInventoryConfigurationRequest {
13122
13532
  InventoryConfiguration: InventoryConfiguration | undefined;
13123
13533
  /**
13124
13534
  * <p>The account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code <code>403 Forbidden</code> (access denied).</p>
13535
+ * <note>
13536
+ * <p>For directory buckets, this header is not supported in this API operation. If you specify this header, the request fails with the HTTP status code
13537
+ * <code>501 Not Implemented</code>.</p>
13538
+ * </note>
13125
13539
  * @public
13126
13540
  */
13127
13541
  ExpectedBucketOwner?: string | undefined;
@@ -13447,6 +13861,11 @@ export interface PutBucketPolicyRequest {
13447
13861
  * </li>
13448
13862
  * <li>
13449
13863
  * <p>
13864
+ * <code>MD5</code>
13865
+ * </p>
13866
+ * </li>
13867
+ * <li>
13868
+ * <p>
13450
13869
  * <code>SHA1</code>
13451
13870
  * </p>
13452
13871
  * </li>
@@ -13455,6 +13874,26 @@ export interface PutBucketPolicyRequest {
13455
13874
  * <code>SHA256</code>
13456
13875
  * </p>
13457
13876
  * </li>
13877
+ * <li>
13878
+ * <p>
13879
+ * <code>SHA512</code>
13880
+ * </p>
13881
+ * </li>
13882
+ * <li>
13883
+ * <p>
13884
+ * <code>XXHASH3</code>
13885
+ * </p>
13886
+ * </li>
13887
+ * <li>
13888
+ * <p>
13889
+ * <code>XXHASH64</code>
13890
+ * </p>
13891
+ * </li>
13892
+ * <li>
13893
+ * <p>
13894
+ * <code>XXHASH128</code>
13895
+ * </p>
13896
+ * </li>
13458
13897
  * </ul>
13459
13898
  * <p>For more
13460
13899
  * information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
@@ -13849,6 +14288,46 @@ export interface PutObjectOutput {
13849
14288
  * @public
13850
14289
  */
13851
14290
  ChecksumSHA256?: string | undefined;
14291
+ /**
14292
+ * <p>The Base64 encoded, 512-bit <code>SHA512</code> digest of the object. This header is present if
14293
+ * the object was uploaded with the <code>SHA512</code> checksum algorithm. For more information, see
14294
+ * <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
14295
+ * object integrity in the Amazon S3 User Guide</a>.</p>
14296
+ * @public
14297
+ */
14298
+ ChecksumSHA512?: string | undefined;
14299
+ /**
14300
+ * <p>The Base64 encoded, 128-bit <code>MD5</code> digest of the object. This header is present if
14301
+ * the object was uploaded with the <code>MD5</code> checksum algorithm. For more information, see
14302
+ * <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
14303
+ * object integrity in the Amazon S3 User Guide</a>.</p>
14304
+ * @public
14305
+ */
14306
+ ChecksumMD5?: string | undefined;
14307
+ /**
14308
+ * <p>The Base64 encoded, 64-bit <code>XXHASH64</code> checksum of the object. This header is present if
14309
+ * the object was uploaded with the <code>XXHASH64</code> checksum algorithm. For more information, see
14310
+ * <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
14311
+ * object integrity in the Amazon S3 User Guide</a>.</p>
14312
+ * @public
14313
+ */
14314
+ ChecksumXXHASH64?: string | undefined;
14315
+ /**
14316
+ * <p>The Base64 encoded, 64-bit <code>XXHASH3</code> checksum of the object. This header is present if
14317
+ * the object was uploaded with the <code>XXHASH3</code> checksum algorithm. For more information, see
14318
+ * <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
14319
+ * object integrity in the Amazon S3 User Guide</a>.</p>
14320
+ * @public
14321
+ */
14322
+ ChecksumXXHASH3?: string | undefined;
14323
+ /**
14324
+ * <p>The Base64 encoded, 128-bit <code>XXHASH128</code> checksum of the object. This header is present if
14325
+ * the object was uploaded with the <code>XXHASH128</code> checksum algorithm. For more information, see
14326
+ * <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
14327
+ * object integrity in the Amazon S3 User Guide</a>.</p>
14328
+ * @public
14329
+ */
14330
+ ChecksumXXHASH128?: string | undefined;
13852
14331
  /**
13853
14332
  * <p>This header specifies the checksum type of the object, which determines how part-level checksums are
13854
14333
  * combined to create an object-level checksum for multipart objects. For <code>PutObject</code> uploads,
@@ -14082,6 +14561,11 @@ export interface PutObjectRequest {
14082
14561
  * </li>
14083
14562
  * <li>
14084
14563
  * <p>
14564
+ * <code>MD5</code>
14565
+ * </p>
14566
+ * </li>
14567
+ * <li>
14568
+ * <p>
14085
14569
  * <code>SHA1</code>
14086
14570
  * </p>
14087
14571
  * </li>
@@ -14090,6 +14574,26 @@ export interface PutObjectRequest {
14090
14574
  * <code>SHA256</code>
14091
14575
  * </p>
14092
14576
  * </li>
14577
+ * <li>
14578
+ * <p>
14579
+ * <code>SHA512</code>
14580
+ * </p>
14581
+ * </li>
14582
+ * <li>
14583
+ * <p>
14584
+ * <code>XXHASH3</code>
14585
+ * </p>
14586
+ * </li>
14587
+ * <li>
14588
+ * <p>
14589
+ * <code>XXHASH64</code>
14590
+ * </p>
14591
+ * </li>
14592
+ * <li>
14593
+ * <p>
14594
+ * <code>XXHASH128</code>
14595
+ * </p>
14596
+ * </li>
14093
14597
  * </ul>
14094
14598
  * <p>For more
14095
14599
  * information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
@@ -14147,6 +14651,46 @@ export interface PutObjectRequest {
14147
14651
  * @public
14148
14652
  */
14149
14653
  ChecksumSHA256?: string | undefined;
14654
+ /**
14655
+ * <p>This header can be used as a data integrity check to verify that the data received is the same data
14656
+ * that was originally sent. This header specifies the Base64 encoded, 512-bit <code>SHA512</code>
14657
+ * digest of the object. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity in the Amazon S3
14658
+ * User Guide</a>.</p>
14659
+ * @public
14660
+ */
14661
+ ChecksumSHA512?: string | undefined;
14662
+ /**
14663
+ * <p>This header can be used as a data integrity check to verify that the data received is the same data
14664
+ * that was originally sent. This header specifies the Base64 encoded, 128-bit <code>MD5</code>
14665
+ * digest of the object. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity in the Amazon S3
14666
+ * User Guide</a>.</p>
14667
+ * @public
14668
+ */
14669
+ ChecksumMD5?: string | undefined;
14670
+ /**
14671
+ * <p>This header can be used as a data integrity check to verify that the data received is the same data
14672
+ * that was originally sent. This header specifies the Base64 encoded, 64-bit <code>XXHASH64</code>
14673
+ * checksum of the object. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity in the Amazon S3
14674
+ * User Guide</a>.</p>
14675
+ * @public
14676
+ */
14677
+ ChecksumXXHASH64?: string | undefined;
14678
+ /**
14679
+ * <p>This header can be used as a data integrity check to verify that the data received is the same data
14680
+ * that was originally sent. This header specifies the Base64 encoded, 64-bit <code>XXHASH3</code>
14681
+ * checksum of the object. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity in the Amazon S3
14682
+ * User Guide</a>.</p>
14683
+ * @public
14684
+ */
14685
+ ChecksumXXHASH3?: string | undefined;
14686
+ /**
14687
+ * <p>This header can be used as a data integrity check to verify that the data received is the same data
14688
+ * that was originally sent. This header specifies the Base64 encoded, 128-bit <code>XXHASH128</code>
14689
+ * checksum of the object. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity in the Amazon S3
14690
+ * User Guide</a>.</p>
14691
+ * @public
14692
+ */
14693
+ ChecksumXXHASH128?: string | undefined;
14150
14694
  /**
14151
14695
  * <p>The date and time at which the object is no longer cacheable. For more information, see <a href="https://www.rfc-editor.org/rfc/rfc7234#section-5.3">https://www.rfc-editor.org/rfc/rfc7234#section-5.3</a>.</p>
14152
14696
  * @public