aws-sdk-s3 1.213.0 → 1.224.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 (58) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +62 -0
  3. data/VERSION +1 -1
  4. data/lib/aws-sdk-s3/bucket.rb +106 -3
  5. data/lib/aws-sdk-s3/bucket_acl.rb +1 -1
  6. data/lib/aws-sdk-s3/bucket_cors.rb +1 -1
  7. data/lib/aws-sdk-s3/bucket_lifecycle.rb +1 -1
  8. data/lib/aws-sdk-s3/bucket_lifecycle_configuration.rb +1 -1
  9. data/lib/aws-sdk-s3/bucket_logging.rb +1 -1
  10. data/lib/aws-sdk-s3/bucket_policy.rb +11 -1
  11. data/lib/aws-sdk-s3/bucket_request_payment.rb +1 -1
  12. data/lib/aws-sdk-s3/bucket_tagging.rb +1 -1
  13. data/lib/aws-sdk-s3/bucket_versioning.rb +3 -3
  14. data/lib/aws-sdk-s3/bucket_website.rb +1 -1
  15. data/lib/aws-sdk-s3/client.rb +1115 -268
  16. data/lib/aws-sdk-s3/client_api.rb +84 -2
  17. data/lib/aws-sdk-s3/customizations.rb +8 -2
  18. data/lib/aws-sdk-s3/directory_download_error.rb +16 -0
  19. data/lib/aws-sdk-s3/directory_downloader.rb +230 -0
  20. data/lib/aws-sdk-s3/directory_upload_error.rb +16 -0
  21. data/lib/aws-sdk-s3/directory_uploader.rb +270 -0
  22. data/lib/aws-sdk-s3/endpoint_provider.rb +6 -3
  23. data/lib/aws-sdk-s3/endpoints.rb +1 -0
  24. data/lib/aws-sdk-s3/multipart_upload.rb +60 -0
  25. data/lib/aws-sdk-s3/multipart_upload_part.rb +121 -1
  26. data/lib/aws-sdk-s3/object.rb +140 -5
  27. data/lib/aws-sdk-s3/object_acl.rb +1 -1
  28. data/lib/aws-sdk-s3/object_summary.rb +80 -5
  29. data/lib/aws-sdk-s3/object_version.rb +11 -1
  30. data/lib/aws-sdk-s3/plugins/http_200_errors.rb +1 -1
  31. data/lib/aws-sdk-s3/plugins/sse_cpk.rb +3 -0
  32. data/lib/aws-sdk-s3/resource.rb +29 -1
  33. data/lib/aws-sdk-s3/transfer_manager.rb +237 -18
  34. data/lib/aws-sdk-s3/types.rb +1250 -114
  35. data/lib/aws-sdk-s3.rb +1 -1
  36. data/sig/bucket.rbs +12 -6
  37. data/sig/bucket_acl.rbs +2 -2
  38. data/sig/bucket_cors.rbs +2 -2
  39. data/sig/bucket_lifecycle.rbs +2 -2
  40. data/sig/bucket_lifecycle_configuration.rbs +5 -5
  41. data/sig/bucket_logging.rbs +2 -2
  42. data/sig/bucket_notification.rbs +6 -6
  43. data/sig/bucket_policy.rbs +1 -1
  44. data/sig/bucket_request_payment.rbs +1 -1
  45. data/sig/bucket_tagging.rbs +2 -2
  46. data/sig/bucket_versioning.rbs +3 -3
  47. data/sig/bucket_website.rbs +2 -2
  48. data/sig/client.rbs +125 -198
  49. data/sig/multipart_upload.rbs +12 -2
  50. data/sig/multipart_upload_part.rbs +21 -1
  51. data/sig/object.rbs +28 -8
  52. data/sig/object_acl.rbs +2 -2
  53. data/sig/object_summary.rbs +14 -9
  54. data/sig/object_version.rbs +2 -2
  55. data/sig/params.rbs +78 -0
  56. data/sig/resource.rbs +4 -3
  57. data/sig/types.rbs +116 -40
  58. metadata +8 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 438515448f62837952b523ea5cb8f41592cb39e2afa557b30c33c521a307db0c
4
- data.tar.gz: fcb1cc7e9cc73429393692857809f2dc156bec4e6b93eba0ccf7824e4ede0d35
3
+ metadata.gz: f590763587bdfecca7200bff0bb0d43b34fd50ed69c25fb2663ace8aa428bc48
4
+ data.tar.gz: 55b92624ee6ef67b34f7efbed8e5f669ed0ded17189aac5ce1bf08fb7aa3abaa
5
5
  SHA512:
6
- metadata.gz: 7d2ae919bc1d2e451538e35c2e4a61ed087266cf4b3205eb64aba047a6a75039e2c431cd74844a71176eec93ec3b9fbe387effd734c3342c7aef76a4571c949d
7
- data.tar.gz: cf67bd5b39c6cd5264a86f71103324c6f19bca24b7ff355b1ab81a70a4d9f2d41c195043e96fcf56f6fcba563f7161b7e17ecd163fd53a941b096bfb3f8b5410
6
+ metadata.gz: 3b54c11016c129129d9640caa7054c30af656596b32625d6700fb8e7ab9dc8b2a0a3cd787ded59306e2f584544f6748dc8e84195f251806d3cf8bb0622c7086f
7
+ data.tar.gz: acc753999dbba794fa4663051b3b5e6a3bd78d4ee74ab98d629ba27dc756acce846eaa08d106468b2962a8fd27c9d03e638117a85a2db0f2918d962b696fd6d3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,68 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.224.0 (2026-05-21)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.223.0 (2026-05-19)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.222.0 (2026-05-13)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.221.0 (2026-05-06)
20
+ ------------------
21
+
22
+ * Feature - Validate outpost access point resource name
23
+
24
+ 1.220.0 (2026-04-22)
25
+ ------------------
26
+
27
+ * Feature - This release adds five additional checksum algorithms for S3 data integrity (MD5, SHA-512, XXHash3, XXHash64, XXHash128) and support for S3 Inventory on directory buckets (S3 Express One Zone).
28
+
29
+ 1.219.0 (2026-04-07)
30
+ ------------------
31
+
32
+ * Feature - Updated list of the valid AWS Region values for the LocationConstraint parameter for general purpose buckets.
33
+
34
+ 1.218.0 (2026-03-31)
35
+ ------------------
36
+
37
+ * Feature - Add Bucket Metrics configuration support to directory buckets
38
+
39
+ 1.217.1 (2026-03-30)
40
+ ------------------
41
+
42
+ * Issue - Fix `require_https_for_sse_cpk` option being ignored; the HTTPS enforcement for SSE-CPK operations now correctly respects the configured value, allowing it to be disabled for local development.
43
+
44
+ 1.217.0 (2026-03-18)
45
+ ------------------
46
+
47
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
48
+
49
+ 1.216.0 (2026-03-12)
50
+ ------------------
51
+
52
+ * Feature - Adds support for account regional namespaces for general purpose buckets. The account regional namespace is a reserved subdivision of the global bucket namespace where only your account can create general purpose buckets.
53
+
54
+ 1.215.0 (2026-03-05)
55
+ ------------------
56
+
57
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
58
+
59
+ * Issue - Fix `LoadError` when requiring `aws-sdk-s3` due to missing `directory_progress` file.
60
+
61
+ 1.214.0 (2026-03-04)
62
+ ------------------
63
+
64
+ * Feature - Added `#upload_directory` and `#download_directory` to `Aws::S3::TransferManager` for bulk directory transfers.
65
+
4
66
  1.213.0 (2026-01-28)
5
67
  ------------------
6
68
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.213.0
1
+ 1.224.0
@@ -254,7 +254,7 @@ module Aws::S3
254
254
  # bucket.create({
255
255
  # acl: "private", # accepts private, public-read, public-read-write, authenticated-read
256
256
  # create_bucket_configuration: {
257
- # location_constraint: "af-south-1", # accepts af-south-1, ap-east-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, ap-south-1, ap-south-2, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-southeast-4, ap-southeast-5, ca-central-1, cn-north-1, cn-northwest-1, EU, eu-central-1, eu-central-2, eu-north-1, eu-south-1, eu-south-2, eu-west-1, eu-west-2, eu-west-3, il-central-1, me-central-1, me-south-1, sa-east-1, us-east-2, us-gov-east-1, us-gov-west-1, us-west-1, us-west-2
257
+ # location_constraint: "af-south-1", # accepts af-south-1, ap-east-1, ap-east-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, ap-south-1, ap-south-2, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-southeast-4, ap-southeast-5, ap-southeast-6, ap-southeast-7, ca-central-1, ca-west-1, cn-north-1, cn-northwest-1, EU, eu-central-1, eu-central-2, eu-north-1, eu-south-1, eu-south-2, eu-west-1, eu-west-2, eu-west-3, il-central-1, me-central-1, me-south-1, mx-central-1, sa-east-1, us-east-2, us-gov-east-1, us-gov-west-1, us-west-1, us-west-2
258
258
  # location: {
259
259
  # type: "AvailabilityZone", # accepts AvailabilityZone, LocalZone
260
260
  # name: "LocationNameAsString",
@@ -277,6 +277,7 @@ module Aws::S3
277
277
  # grant_write_acp: "GrantWriteACP",
278
278
  # object_lock_enabled_for_bucket: false,
279
279
  # object_ownership: "BucketOwnerPreferred", # accepts BucketOwnerPreferred, ObjectWriter, BucketOwnerEnforced
280
+ # bucket_namespace: "account-regional", # accepts account-regional, global
280
281
  # })
281
282
  # @param [Hash] options ({})
282
283
  # @option options [String] :acl
@@ -362,6 +363,33 @@ module Aws::S3
362
363
  #
363
364
  #
364
365
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/about-object-ownership.html
366
+ # @option options [String] :bucket_namespace
367
+ # Specifies the namespace where you want to create your general purpose
368
+ # bucket. When you create a general purpose bucket, you can choose to
369
+ # create a bucket in the shared global namespace or you can choose to
370
+ # create a bucket in your account regional namespace. Your account
371
+ # regional namespace is a subdivision of the global namespace that only
372
+ # your account can create buckets in. For more information on bucket
373
+ # namespaces, see [Namespaces for general purpose buckets][1].
374
+ #
375
+ # General purpose buckets in your account regional namespace must follow
376
+ # a specific naming convention. These buckets consist of a bucket name
377
+ # prefix that you create, and a suffix that contains your 12-digit
378
+ # Amazon Web Services Account ID, the Amazon Web Services Region code,
379
+ # and ends with `-an`. Bucket names must follow the format
380
+ # `bucket-name-prefix-accountId-region-an` (for example,
381
+ # `amzn-s3-demo-bucket-111122223333-us-west-2-an`). For information
382
+ # about bucket naming restrictions, see [Account regional namespace
383
+ # naming rules][2] in the *Amazon S3 User Guide*.
384
+ #
385
+ # <note markdown="1"> This functionality is not supported for directory buckets.
386
+ #
387
+ # </note>
388
+ #
389
+ #
390
+ #
391
+ # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/gpbucketnamespaces.html
392
+ # [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/bucketnamingrules.html#account-regional-naming-rules
365
393
  # @return [Types::CreateBucketOutput]
366
394
  def create(options = {})
367
395
  options = options.merge(bucket: @name)
@@ -415,7 +443,7 @@ module Aws::S3
415
443
  # request_payer: "requester", # accepts requester
416
444
  # bypass_governance_retention: false,
417
445
  # expected_bucket_owner: "AccountId",
418
- # checksum_algorithm: "CRC32", # accepts CRC32, CRC32C, SHA1, SHA256, CRC64NVME
446
+ # checksum_algorithm: "CRC32", # accepts CRC32, CRC32C, SHA1, SHA256, CRC64NVME, SHA512, MD5, XXHASH64, XXHASH3, XXHASH128
419
447
  # })
420
448
  # @param [Hash] options ({})
421
449
  # @option options [required, Types::Delete] :delete
@@ -487,10 +515,20 @@ module Aws::S3
487
515
  #
488
516
  # * `CRC64NVME`
489
517
  #
518
+ # * `MD5`
519
+ #
490
520
  # * `SHA1`
491
521
  #
492
522
  # * `SHA256`
493
523
  #
524
+ # * `SHA512`
525
+ #
526
+ # * `XXHASH3`
527
+ #
528
+ # * `XXHASH64`
529
+ #
530
+ # * `XXHASH128`
531
+ #
494
532
  # For more information, see [Checking object integrity][1] in the
495
533
  # *Amazon S3 User Guide*.
496
534
  #
@@ -526,12 +564,17 @@ module Aws::S3
526
564
  # content_length: 1,
527
565
  # content_md5: "ContentMD5",
528
566
  # content_type: "ContentType",
529
- # checksum_algorithm: "CRC32", # accepts CRC32, CRC32C, SHA1, SHA256, CRC64NVME
567
+ # checksum_algorithm: "CRC32", # accepts CRC32, CRC32C, SHA1, SHA256, CRC64NVME, SHA512, MD5, XXHASH64, XXHASH3, XXHASH128
530
568
  # checksum_crc32: "ChecksumCRC32",
531
569
  # checksum_crc32c: "ChecksumCRC32C",
532
570
  # checksum_crc64nvme: "ChecksumCRC64NVME",
533
571
  # checksum_sha1: "ChecksumSHA1",
534
572
  # checksum_sha256: "ChecksumSHA256",
573
+ # checksum_sha512: "ChecksumSHA512",
574
+ # checksum_md5: "ChecksumMD5",
575
+ # checksum_xxhash64: "ChecksumXXHASH64",
576
+ # checksum_xxhash3: "ChecksumXXHASH3",
577
+ # checksum_xxhash128: "ChecksumXXHASH128",
535
578
  # expires: Time.now,
536
579
  # if_match: "IfMatch",
537
580
  # if_none_match: "IfNoneMatch",
@@ -685,10 +728,20 @@ module Aws::S3
685
728
  #
686
729
  # * `CRC64NVME`
687
730
  #
731
+ # * `MD5`
732
+ #
688
733
  # * `SHA1`
689
734
  #
690
735
  # * `SHA256`
691
736
  #
737
+ # * `SHA512`
738
+ #
739
+ # * `XXHASH3`
740
+ #
741
+ # * `XXHASH64`
742
+ #
743
+ # * `XXHASH128`
744
+ #
692
745
  # For more information, see [Checking object integrity][1] in the
693
746
  # *Amazon S3 User Guide*.
694
747
  #
@@ -763,6 +816,56 @@ module Aws::S3
763
816
  #
764
817
  #
765
818
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
819
+ # @option options [String] :checksum_sha512
820
+ # This header can be used as a data integrity check to verify that the
821
+ # data received is the same data that was originally sent. This header
822
+ # specifies the Base64 encoded, 512-bit `SHA512` digest of the object.
823
+ # For more information, see [Checking object integrity in the Amazon S3
824
+ # User Guide][1].
825
+ #
826
+ #
827
+ #
828
+ # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
829
+ # @option options [String] :checksum_md5
830
+ # This header can be used as a data integrity check to verify that the
831
+ # data received is the same data that was originally sent. This header
832
+ # specifies the Base64 encoded, 128-bit `MD5` digest of the object. For
833
+ # more information, see [Checking object integrity in the Amazon S3 User
834
+ # Guide][1].
835
+ #
836
+ #
837
+ #
838
+ # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
839
+ # @option options [String] :checksum_xxhash64
840
+ # This header can be used as a data integrity check to verify that the
841
+ # data received is the same data that was originally sent. This header
842
+ # specifies the Base64 encoded, 64-bit `XXHASH64` checksum of the
843
+ # object. For more information, see [Checking object integrity in the
844
+ # Amazon S3 User Guide][1].
845
+ #
846
+ #
847
+ #
848
+ # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
849
+ # @option options [String] :checksum_xxhash3
850
+ # This header can be used as a data integrity check to verify that the
851
+ # data received is the same data that was originally sent. This header
852
+ # specifies the Base64 encoded, 64-bit `XXHASH3` checksum of the object.
853
+ # For more information, see [Checking object integrity in the Amazon S3
854
+ # User Guide][1].
855
+ #
856
+ #
857
+ #
858
+ # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
859
+ # @option options [String] :checksum_xxhash128
860
+ # This header can be used as a data integrity check to verify that the
861
+ # data received is the same data that was originally sent. This header
862
+ # specifies the Base64 encoded, 128-bit `XXHASH128` checksum of the
863
+ # object. For more information, see [Checking object integrity in the
864
+ # Amazon S3 User Guide][1].
865
+ #
866
+ #
867
+ #
868
+ # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
766
869
  # @option options [Time,DateTime,Date,Integer,String] :expires
767
870
  # The date and time at which the object is no longer cacheable. For more
768
871
  # information, see
@@ -207,7 +207,7 @@ module Aws::S3
207
207
  # },
208
208
  # },
209
209
  # content_md5: "ContentMD5",
210
- # checksum_algorithm: "CRC32", # accepts CRC32, CRC32C, SHA1, SHA256, CRC64NVME
210
+ # checksum_algorithm: "CRC32", # accepts CRC32, CRC32C, SHA1, SHA256, CRC64NVME, SHA512, MD5, XXHASH64, XXHASH3, XXHASH128
211
211
  # grant_full_control: "GrantFullControl",
212
212
  # grant_read: "GrantRead",
213
213
  # grant_read_acp: "GrantReadACP",
@@ -214,7 +214,7 @@ module Aws::S3
214
214
  # ],
215
215
  # },
216
216
  # content_md5: "ContentMD5",
217
- # checksum_algorithm: "CRC32", # accepts CRC32, CRC32C, SHA1, SHA256, CRC64NVME
217
+ # checksum_algorithm: "CRC32", # accepts CRC32, CRC32C, SHA1, SHA256, CRC64NVME, SHA512, MD5, XXHASH64, XXHASH3, XXHASH128
218
218
  # expected_bucket_owner: "AccountId",
219
219
  # })
220
220
  # @param [Hash] options ({})
@@ -206,7 +206,7 @@ module Aws::S3
206
206
  #
207
207
  # bucket_lifecycle.put({
208
208
  # content_md5: "ContentMD5",
209
- # checksum_algorithm: "CRC32", # accepts CRC32, CRC32C, SHA1, SHA256, CRC64NVME
209
+ # checksum_algorithm: "CRC32", # accepts CRC32, CRC32C, SHA1, SHA256, CRC64NVME, SHA512, MD5, XXHASH64, XXHASH3, XXHASH128
210
210
  # lifecycle_configuration: {
211
211
  # rules: [ # required
212
212
  # {
@@ -230,7 +230,7 @@ module Aws::S3
230
230
  # @example Request syntax with placeholder values
231
231
  #
232
232
  # bucket_lifecycle_configuration.put({
233
- # checksum_algorithm: "CRC32", # accepts CRC32, CRC32C, SHA1, SHA256, CRC64NVME
233
+ # checksum_algorithm: "CRC32", # accepts CRC32, CRC32C, SHA1, SHA256, CRC64NVME, SHA512, MD5, XXHASH64, XXHASH3, XXHASH128
234
234
  # lifecycle_configuration: {
235
235
  # rules: [ # required
236
236
  # {
@@ -213,7 +213,7 @@ module Aws::S3
213
213
  # },
214
214
  # },
215
215
  # content_md5: "ContentMD5",
216
- # checksum_algorithm: "CRC32", # accepts CRC32, CRC32C, SHA1, SHA256, CRC64NVME
216
+ # checksum_algorithm: "CRC32", # accepts CRC32, CRC32C, SHA1, SHA256, CRC64NVME, SHA512, MD5, XXHASH64, XXHASH3, XXHASH128
217
217
  # expected_bucket_owner: "AccountId",
218
218
  # })
219
219
  # @param [Hash] options ({})
@@ -207,7 +207,7 @@ module Aws::S3
207
207
  #
208
208
  # bucket_policy.put({
209
209
  # content_md5: "ContentMD5",
210
- # checksum_algorithm: "CRC32", # accepts CRC32, CRC32C, SHA1, SHA256, CRC64NVME
210
+ # checksum_algorithm: "CRC32", # accepts CRC32, CRC32C, SHA1, SHA256, CRC64NVME, SHA512, MD5, XXHASH64, XXHASH3, XXHASH128
211
211
  # confirm_remove_self_bucket_access: false,
212
212
  # policy: "Policy", # required
213
213
  # expected_bucket_owner: "AccountId",
@@ -240,10 +240,20 @@ module Aws::S3
240
240
  #
241
241
  # * `CRC64NVME`
242
242
  #
243
+ # * `MD5`
244
+ #
243
245
  # * `SHA1`
244
246
  #
245
247
  # * `SHA256`
246
248
  #
249
+ # * `SHA512`
250
+ #
251
+ # * `XXHASH3`
252
+ #
253
+ # * `XXHASH64`
254
+ #
255
+ # * `XXHASH128`
256
+ #
247
257
  # For more information, see [Checking object integrity][1] in the
248
258
  # *Amazon S3 User Guide*.
249
259
  #
@@ -182,7 +182,7 @@ module Aws::S3
182
182
  #
183
183
  # bucket_request_payment.put({
184
184
  # content_md5: "ContentMD5",
185
- # checksum_algorithm: "CRC32", # accepts CRC32, CRC32C, SHA1, SHA256, CRC64NVME
185
+ # checksum_algorithm: "CRC32", # accepts CRC32, CRC32C, SHA1, SHA256, CRC64NVME, SHA512, MD5, XXHASH64, XXHASH3, XXHASH128
186
186
  # request_payment_configuration: { # required
187
187
  # payer: "Requester", # required, accepts Requester, BucketOwner
188
188
  # },
@@ -201,7 +201,7 @@ module Aws::S3
201
201
  #
202
202
  # bucket_tagging.put({
203
203
  # content_md5: "ContentMD5",
204
- # checksum_algorithm: "CRC32", # accepts CRC32, CRC32C, SHA1, SHA256, CRC64NVME
204
+ # checksum_algorithm: "CRC32", # accepts CRC32, CRC32C, SHA1, SHA256, CRC64NVME, SHA512, MD5, XXHASH64, XXHASH3, XXHASH128
205
205
  # tagging: { # required
206
206
  # tag_set: [ # required
207
207
  # {
@@ -191,7 +191,7 @@ module Aws::S3
191
191
  #
192
192
  # bucket_versioning.enable({
193
193
  # content_md5: "ContentMD5",
194
- # checksum_algorithm: "CRC32", # accepts CRC32, CRC32C, SHA1, SHA256, CRC64NVME
194
+ # checksum_algorithm: "CRC32", # accepts CRC32, CRC32C, SHA1, SHA256, CRC64NVME, SHA512, MD5, XXHASH64, XXHASH3, XXHASH128
195
195
  # mfa: "MFA",
196
196
  # expected_bucket_owner: "AccountId",
197
197
  # })
@@ -260,7 +260,7 @@ module Aws::S3
260
260
  #
261
261
  # bucket_versioning.put({
262
262
  # content_md5: "ContentMD5",
263
- # checksum_algorithm: "CRC32", # accepts CRC32, CRC32C, SHA1, SHA256, CRC64NVME
263
+ # checksum_algorithm: "CRC32", # accepts CRC32, CRC32C, SHA1, SHA256, CRC64NVME, SHA512, MD5, XXHASH64, XXHASH3, XXHASH128
264
264
  # mfa: "MFA",
265
265
  # versioning_configuration: { # required
266
266
  # mfa_delete: "Enabled", # accepts Enabled, Disabled
@@ -330,7 +330,7 @@ module Aws::S3
330
330
  #
331
331
  # bucket_versioning.suspend({
332
332
  # content_md5: "ContentMD5",
333
- # checksum_algorithm: "CRC32", # accepts CRC32, CRC32C, SHA1, SHA256, CRC64NVME
333
+ # checksum_algorithm: "CRC32", # accepts CRC32, CRC32C, SHA1, SHA256, CRC64NVME, SHA512, MD5, XXHASH64, XXHASH3, XXHASH128
334
334
  # mfa: "MFA",
335
335
  # expected_bucket_owner: "AccountId",
336
336
  # })
@@ -223,7 +223,7 @@ module Aws::S3
223
223
  #
224
224
  # bucket_website.put({
225
225
  # content_md5: "ContentMD5",
226
- # checksum_algorithm: "CRC32", # accepts CRC32, CRC32C, SHA1, SHA256, CRC64NVME
226
+ # checksum_algorithm: "CRC32", # accepts CRC32, CRC32C, SHA1, SHA256, CRC64NVME, SHA512, MD5, XXHASH64, XXHASH3, XXHASH128
227
227
  # website_configuration: { # required
228
228
  # error_document: {
229
229
  # key: "ObjectKey", # required