aws-sdk-s3 1.167.0 → 1.208.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 (100) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +257 -0
  3. data/VERSION +1 -1
  4. data/lib/aws-sdk-s3/bucket.rb +145 -39
  5. data/lib/aws-sdk-s3/bucket_acl.rb +7 -6
  6. data/lib/aws-sdk-s3/bucket_cors.rb +6 -5
  7. data/lib/aws-sdk-s3/bucket_lifecycle.rb +7 -2
  8. data/lib/aws-sdk-s3/bucket_lifecycle_configuration.rb +22 -2
  9. data/lib/aws-sdk-s3/bucket_logging.rb +2 -2
  10. data/lib/aws-sdk-s3/bucket_policy.rb +6 -5
  11. data/lib/aws-sdk-s3/bucket_request_payment.rb +3 -3
  12. data/lib/aws-sdk-s3/bucket_tagging.rb +3 -3
  13. data/lib/aws-sdk-s3/bucket_versioning.rb +42 -9
  14. data/lib/aws-sdk-s3/bucket_website.rb +3 -3
  15. data/lib/aws-sdk-s3/client.rb +4313 -1871
  16. data/lib/aws-sdk-s3/client_api.rb +619 -160
  17. data/lib/aws-sdk-s3/customizations/object.rb +76 -86
  18. data/lib/aws-sdk-s3/customizations.rb +4 -1
  19. data/lib/aws-sdk-s3/default_executor.rb +103 -0
  20. data/lib/aws-sdk-s3/encryption/client.rb +2 -2
  21. data/lib/aws-sdk-s3/encryption/default_cipher_provider.rb +2 -0
  22. data/lib/aws-sdk-s3/encryption/encrypt_handler.rb +2 -0
  23. data/lib/aws-sdk-s3/encryption/kms_cipher_provider.rb +2 -0
  24. data/lib/aws-sdk-s3/encryptionV2/client.rb +98 -23
  25. data/lib/aws-sdk-s3/encryptionV2/decrypt_handler.rb +7 -162
  26. data/lib/aws-sdk-s3/encryptionV2/decryption.rb +205 -0
  27. data/lib/aws-sdk-s3/encryptionV2/default_cipher_provider.rb +17 -0
  28. data/lib/aws-sdk-s3/encryptionV2/encrypt_handler.rb +2 -0
  29. data/lib/aws-sdk-s3/encryptionV2/io_encrypter.rb +2 -0
  30. data/lib/aws-sdk-s3/encryptionV2/kms_cipher_provider.rb +8 -0
  31. data/lib/aws-sdk-s3/encryptionV2/utils.rb +5 -0
  32. data/lib/aws-sdk-s3/encryptionV3/client.rb +885 -0
  33. data/lib/aws-sdk-s3/encryptionV3/decrypt_handler.rb +98 -0
  34. data/lib/aws-sdk-s3/encryptionV3/decryption.rb +244 -0
  35. data/lib/aws-sdk-s3/encryptionV3/default_cipher_provider.rb +159 -0
  36. data/lib/aws-sdk-s3/encryptionV3/default_key_provider.rb +35 -0
  37. data/lib/aws-sdk-s3/encryptionV3/encrypt_handler.rb +98 -0
  38. data/lib/aws-sdk-s3/encryptionV3/errors.rb +47 -0
  39. data/lib/aws-sdk-s3/encryptionV3/io_auth_decrypter.rb +60 -0
  40. data/lib/aws-sdk-s3/encryptionV3/io_decrypter.rb +35 -0
  41. data/lib/aws-sdk-s3/encryptionV3/io_encrypter.rb +84 -0
  42. data/lib/aws-sdk-s3/encryptionV3/key_provider.rb +28 -0
  43. data/lib/aws-sdk-s3/encryptionV3/kms_cipher_provider.rb +159 -0
  44. data/lib/aws-sdk-s3/encryptionV3/materials.rb +58 -0
  45. data/lib/aws-sdk-s3/encryptionV3/utils.rb +321 -0
  46. data/lib/aws-sdk-s3/encryption_v2.rb +1 -0
  47. data/lib/aws-sdk-s3/encryption_v3.rb +24 -0
  48. data/lib/aws-sdk-s3/endpoint_parameters.rb +30 -35
  49. data/lib/aws-sdk-s3/endpoint_provider.rb +572 -278
  50. data/lib/aws-sdk-s3/endpoints.rb +555 -1403
  51. data/lib/aws-sdk-s3/errors.rb +55 -0
  52. data/lib/aws-sdk-s3/file_downloader.rb +189 -143
  53. data/lib/aws-sdk-s3/file_uploader.rb +9 -13
  54. data/lib/aws-sdk-s3/legacy_signer.rb +2 -1
  55. data/lib/aws-sdk-s3/multipart_download_error.rb +8 -0
  56. data/lib/aws-sdk-s3/multipart_file_uploader.rb +105 -102
  57. data/lib/aws-sdk-s3/multipart_stream_uploader.rb +96 -107
  58. data/lib/aws-sdk-s3/multipart_upload.rb +83 -6
  59. data/lib/aws-sdk-s3/multipart_upload_error.rb +3 -4
  60. data/lib/aws-sdk-s3/multipart_upload_part.rb +50 -34
  61. data/lib/aws-sdk-s3/object.rb +357 -131
  62. data/lib/aws-sdk-s3/object_acl.rb +12 -6
  63. data/lib/aws-sdk-s3/object_multipart_copier.rb +2 -1
  64. data/lib/aws-sdk-s3/object_summary.rb +269 -96
  65. data/lib/aws-sdk-s3/object_version.rb +58 -13
  66. data/lib/aws-sdk-s3/plugins/checksum_algorithm.rb +31 -0
  67. data/lib/aws-sdk-s3/plugins/endpoints.rb +2 -205
  68. data/lib/aws-sdk-s3/plugins/express_session_auth.rb +11 -20
  69. data/lib/aws-sdk-s3/plugins/http_200_errors.rb +3 -3
  70. data/lib/aws-sdk-s3/plugins/md5s.rb +10 -71
  71. data/lib/aws-sdk-s3/plugins/streaming_retry.rb +5 -7
  72. data/lib/aws-sdk-s3/plugins/url_encoded_keys.rb +2 -1
  73. data/lib/aws-sdk-s3/presigner.rb +5 -5
  74. data/lib/aws-sdk-s3/resource.rb +41 -10
  75. data/lib/aws-sdk-s3/transfer_manager.rb +303 -0
  76. data/lib/aws-sdk-s3/types.rb +3758 -1264
  77. data/lib/aws-sdk-s3.rb +1 -1
  78. data/sig/bucket.rbs +27 -9
  79. data/sig/bucket_acl.rbs +1 -1
  80. data/sig/bucket_cors.rbs +1 -1
  81. data/sig/bucket_lifecycle.rbs +1 -1
  82. data/sig/bucket_lifecycle_configuration.rbs +1 -1
  83. data/sig/bucket_logging.rbs +1 -1
  84. data/sig/bucket_policy.rbs +1 -1
  85. data/sig/bucket_request_payment.rbs +1 -1
  86. data/sig/bucket_tagging.rbs +1 -1
  87. data/sig/bucket_versioning.rbs +3 -3
  88. data/sig/bucket_website.rbs +1 -1
  89. data/sig/client.rbs +279 -70
  90. data/sig/errors.rbs +10 -0
  91. data/sig/multipart_upload.rbs +12 -3
  92. data/sig/multipart_upload_part.rbs +5 -1
  93. data/sig/object.rbs +37 -16
  94. data/sig/object_acl.rbs +1 -1
  95. data/sig/object_summary.rbs +28 -16
  96. data/sig/object_version.rbs +9 -3
  97. data/sig/resource.rbs +15 -4
  98. data/sig/types.rbs +373 -66
  99. metadata +26 -10
  100. data/lib/aws-sdk-s3/plugins/skip_whole_multipart_get_checksums.rb +0 -31
data/sig/types.rbs CHANGED
@@ -8,6 +8,11 @@
8
8
  module Aws::S3
9
9
  module Types
10
10
 
11
+ class AbacStatus
12
+ attr_accessor status: ("Enabled" | "Disabled")
13
+ SENSITIVE: []
14
+ end
15
+
11
16
  class AbortIncompleteMultipartUpload
12
17
  attr_accessor days_after_initiation: ::Integer
13
18
  SENSITIVE: []
@@ -24,6 +29,7 @@ module Aws::S3
24
29
  attr_accessor upload_id: ::String
25
30
  attr_accessor request_payer: ("requester")
26
31
  attr_accessor expected_bucket_owner: ::String
32
+ attr_accessor if_match_initiated_time: ::Time
27
33
  SENSITIVE: []
28
34
  end
29
35
 
@@ -76,9 +82,16 @@ module Aws::S3
76
82
  SENSITIVE: []
77
83
  end
78
84
 
85
+ class BlockedEncryptionTypes
86
+ attr_accessor encryption_type: ::Array[("NONE" | "SSE-C")]
87
+ SENSITIVE: []
88
+ end
89
+
79
90
  class Bucket
80
91
  attr_accessor name: ::String
81
92
  attr_accessor creation_date: ::Time
93
+ attr_accessor bucket_region: ::String
94
+ attr_accessor bucket_arn: ::String
82
95
  SENSITIVE: []
83
96
  end
84
97
 
@@ -89,7 +102,7 @@ module Aws::S3
89
102
  end
90
103
 
91
104
  class BucketInfo
92
- attr_accessor data_redundancy: ("SingleAvailabilityZone")
105
+ attr_accessor data_redundancy: ("SingleAvailabilityZone" | "SingleLocalZone")
93
106
  attr_accessor type: ("Directory")
94
107
  SENSITIVE: []
95
108
  end
@@ -142,8 +155,10 @@ module Aws::S3
142
155
  class Checksum
143
156
  attr_accessor checksum_crc32: ::String
144
157
  attr_accessor checksum_crc32c: ::String
158
+ attr_accessor checksum_crc64nvme: ::String
145
159
  attr_accessor checksum_sha1: ::String
146
160
  attr_accessor checksum_sha256: ::String
161
+ attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
147
162
  SENSITIVE: []
148
163
  end
149
164
 
@@ -169,9 +184,11 @@ module Aws::S3
169
184
  attr_accessor etag: ::String
170
185
  attr_accessor checksum_crc32: ::String
171
186
  attr_accessor checksum_crc32c: ::String
187
+ attr_accessor checksum_crc64nvme: ::String
172
188
  attr_accessor checksum_sha1: ::String
173
189
  attr_accessor checksum_sha256: ::String
174
- attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
190
+ attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
191
+ attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
175
192
  attr_accessor version_id: ::String
176
193
  attr_accessor ssekms_key_id: ::String
177
194
  attr_accessor bucket_key_enabled: bool
@@ -186,10 +203,14 @@ module Aws::S3
186
203
  attr_accessor upload_id: ::String
187
204
  attr_accessor checksum_crc32: ::String
188
205
  attr_accessor checksum_crc32c: ::String
206
+ attr_accessor checksum_crc64nvme: ::String
189
207
  attr_accessor checksum_sha1: ::String
190
208
  attr_accessor checksum_sha256: ::String
209
+ attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
210
+ attr_accessor mpu_object_size: ::Integer
191
211
  attr_accessor request_payer: ("requester")
192
212
  attr_accessor expected_bucket_owner: ::String
213
+ attr_accessor if_match: ::String
193
214
  attr_accessor if_none_match: ::String
194
215
  attr_accessor sse_customer_algorithm: ::String
195
216
  attr_accessor sse_customer_key: ::String
@@ -206,6 +227,7 @@ module Aws::S3
206
227
  attr_accessor etag: ::String
207
228
  attr_accessor checksum_crc32: ::String
208
229
  attr_accessor checksum_crc32c: ::String
230
+ attr_accessor checksum_crc64nvme: ::String
209
231
  attr_accessor checksum_sha1: ::String
210
232
  attr_accessor checksum_sha256: ::String
211
233
  attr_accessor part_number: ::Integer
@@ -228,7 +250,7 @@ module Aws::S3
228
250
  attr_accessor expiration: ::String
229
251
  attr_accessor copy_source_version_id: ::String
230
252
  attr_accessor version_id: ::String
231
- attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
253
+ attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
232
254
  attr_accessor sse_customer_algorithm: ::String
233
255
  attr_accessor sse_customer_key_md5: ::String
234
256
  attr_accessor ssekms_key_id: ::String
@@ -242,7 +264,7 @@ module Aws::S3
242
264
  attr_accessor acl: ("private" | "public-read" | "public-read-write" | "authenticated-read" | "aws-exec-read" | "bucket-owner-read" | "bucket-owner-full-control")
243
265
  attr_accessor bucket: ::String
244
266
  attr_accessor cache_control: ::String
245
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
267
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
246
268
  attr_accessor content_disposition: ::String
247
269
  attr_accessor content_encoding: ::String
248
270
  attr_accessor content_language: ::String
@@ -257,12 +279,14 @@ module Aws::S3
257
279
  attr_accessor grant_read: ::String
258
280
  attr_accessor grant_read_acp: ::String
259
281
  attr_accessor grant_write_acp: ::String
282
+ attr_accessor if_match: ::String
283
+ attr_accessor if_none_match: ::String
260
284
  attr_accessor key: ::String
261
285
  attr_accessor metadata: ::Hash[::String, ::String]
262
286
  attr_accessor metadata_directive: ("COPY" | "REPLACE")
263
287
  attr_accessor tagging_directive: ("COPY" | "REPLACE")
264
- attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
265
- attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
288
+ attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
289
+ attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
266
290
  attr_accessor website_redirect_location: ::String
267
291
  attr_accessor sse_customer_algorithm: ::String
268
292
  attr_accessor sse_customer_key: ::String
@@ -286,8 +310,10 @@ module Aws::S3
286
310
  class CopyObjectResult
287
311
  attr_accessor etag: ::String
288
312
  attr_accessor last_modified: ::Time
313
+ attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
289
314
  attr_accessor checksum_crc32: ::String
290
315
  attr_accessor checksum_crc32c: ::String
316
+ attr_accessor checksum_crc64nvme: ::String
291
317
  attr_accessor checksum_sha1: ::String
292
318
  attr_accessor checksum_sha256: ::String
293
319
  SENSITIVE: []
@@ -298,20 +324,41 @@ module Aws::S3
298
324
  attr_accessor last_modified: ::Time
299
325
  attr_accessor checksum_crc32: ::String
300
326
  attr_accessor checksum_crc32c: ::String
327
+ attr_accessor checksum_crc64nvme: ::String
301
328
  attr_accessor checksum_sha1: ::String
302
329
  attr_accessor checksum_sha256: ::String
303
330
  SENSITIVE: []
304
331
  end
305
332
 
306
333
  class CreateBucketConfiguration
307
- attr_accessor location_constraint: ("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" | "ca-central-1" | "cn-north-1" | "cn-northwest-1" | "EU" | "eu-central-1" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "me-south-1" | "sa-east-1" | "us-east-2" | "us-gov-east-1" | "us-gov-west-1" | "us-west-1" | "us-west-2")
334
+ attr_accessor location_constraint: ("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")
308
335
  attr_accessor location: Types::LocationInfo
309
336
  attr_accessor bucket: Types::BucketInfo
337
+ attr_accessor tags: ::Array[Types::Tag]
338
+ SENSITIVE: []
339
+ end
340
+
341
+ class CreateBucketMetadataConfigurationRequest
342
+ attr_accessor bucket: ::String
343
+ attr_accessor content_md5: ::String
344
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
345
+ attr_accessor metadata_configuration: Types::MetadataConfiguration
346
+ attr_accessor expected_bucket_owner: ::String
347
+ SENSITIVE: []
348
+ end
349
+
350
+ class CreateBucketMetadataTableConfigurationRequest
351
+ attr_accessor bucket: ::String
352
+ attr_accessor content_md5: ::String
353
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
354
+ attr_accessor metadata_table_configuration: Types::MetadataTableConfiguration
355
+ attr_accessor expected_bucket_owner: ::String
310
356
  SENSITIVE: []
311
357
  end
312
358
 
313
359
  class CreateBucketOutput
314
360
  attr_accessor location: ::String
361
+ attr_accessor bucket_arn: ::String
315
362
  SENSITIVE: []
316
363
  end
317
364
 
@@ -335,14 +382,15 @@ module Aws::S3
335
382
  attr_accessor bucket: ::String
336
383
  attr_accessor key: ::String
337
384
  attr_accessor upload_id: ::String
338
- attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
385
+ attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
339
386
  attr_accessor sse_customer_algorithm: ::String
340
387
  attr_accessor sse_customer_key_md5: ::String
341
388
  attr_accessor ssekms_key_id: ::String
342
389
  attr_accessor ssekms_encryption_context: ::String
343
390
  attr_accessor bucket_key_enabled: bool
344
391
  attr_accessor request_charged: ("requester")
345
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
392
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
393
+ attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
346
394
  SENSITIVE: [:ssekms_key_id, :ssekms_encryption_context]
347
395
  end
348
396
 
@@ -361,8 +409,8 @@ module Aws::S3
361
409
  attr_accessor grant_write_acp: ::String
362
410
  attr_accessor key: ::String
363
411
  attr_accessor metadata: ::Hash[::String, ::String]
364
- attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
365
- attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
412
+ attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
413
+ attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
366
414
  attr_accessor website_redirect_location: ::String
367
415
  attr_accessor sse_customer_algorithm: ::String
368
416
  attr_accessor sse_customer_key: ::String
@@ -376,12 +424,13 @@ module Aws::S3
376
424
  attr_accessor object_lock_retain_until_date: ::Time
377
425
  attr_accessor object_lock_legal_hold_status: ("ON" | "OFF")
378
426
  attr_accessor expected_bucket_owner: ::String
379
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
427
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
428
+ attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
380
429
  SENSITIVE: [:sse_customer_key, :ssekms_key_id, :ssekms_encryption_context]
381
430
  end
382
431
 
383
432
  class CreateSessionOutput
384
- attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
433
+ attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
385
434
  attr_accessor ssekms_key_id: ::String
386
435
  attr_accessor ssekms_encryption_context: ::String
387
436
  attr_accessor bucket_key_enabled: bool
@@ -392,7 +441,7 @@ module Aws::S3
392
441
  class CreateSessionRequest
393
442
  attr_accessor session_mode: ("ReadOnly" | "ReadWrite")
394
443
  attr_accessor bucket: ::String
395
- attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
444
+ attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
396
445
  attr_accessor ssekms_key_id: ::String
397
446
  attr_accessor ssekms_encryption_context: ::String
398
447
  attr_accessor bucket_key_enabled: bool
@@ -434,6 +483,7 @@ module Aws::S3
434
483
  class DeleteBucketIntelligentTieringConfigurationRequest
435
484
  attr_accessor bucket: ::String
436
485
  attr_accessor id: ::String
486
+ attr_accessor expected_bucket_owner: ::String
437
487
  SENSITIVE: []
438
488
  end
439
489
 
@@ -450,6 +500,18 @@ module Aws::S3
450
500
  SENSITIVE: []
451
501
  end
452
502
 
503
+ class DeleteBucketMetadataConfigurationRequest
504
+ attr_accessor bucket: ::String
505
+ attr_accessor expected_bucket_owner: ::String
506
+ SENSITIVE: []
507
+ end
508
+
509
+ class DeleteBucketMetadataTableConfigurationRequest
510
+ attr_accessor bucket: ::String
511
+ attr_accessor expected_bucket_owner: ::String
512
+ SENSITIVE: []
513
+ end
514
+
453
515
  class DeleteBucketMetricsConfigurationRequest
454
516
  attr_accessor bucket: ::String
455
517
  attr_accessor id: ::String
@@ -522,6 +584,9 @@ module Aws::S3
522
584
  attr_accessor request_payer: ("requester")
523
585
  attr_accessor bypass_governance_retention: bool
524
586
  attr_accessor expected_bucket_owner: ::String
587
+ attr_accessor if_match: ::String
588
+ attr_accessor if_match_last_modified_time: ::Time
589
+ attr_accessor if_match_size: ::Integer
525
590
  SENSITIVE: []
526
591
  end
527
592
 
@@ -552,7 +617,7 @@ module Aws::S3
552
617
  attr_accessor request_payer: ("requester")
553
618
  attr_accessor bypass_governance_retention: bool
554
619
  attr_accessor expected_bucket_owner: ::String
555
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
620
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
556
621
  SENSITIVE: []
557
622
  end
558
623
 
@@ -573,7 +638,7 @@ module Aws::S3
573
638
  class Destination
574
639
  attr_accessor bucket: ::String
575
640
  attr_accessor account: ::String
576
- attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
641
+ attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
577
642
  attr_accessor access_control_translation: Types::AccessControlTranslation
578
643
  attr_accessor encryption_configuration: Types::EncryptionConfiguration
579
644
  attr_accessor replication_time: Types::ReplicationTime
@@ -581,8 +646,15 @@ module Aws::S3
581
646
  SENSITIVE: []
582
647
  end
583
648
 
649
+ class DestinationResult
650
+ attr_accessor table_bucket_type: ("aws" | "customer")
651
+ attr_accessor table_bucket_arn: ::String
652
+ attr_accessor table_namespace: ::String
653
+ SENSITIVE: []
654
+ end
655
+
584
656
  class Encryption
585
- attr_accessor encryption_type: ("AES256" | "aws:kms" | "aws:kms:dsse")
657
+ attr_accessor encryption_type: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
586
658
  attr_accessor kms_key_id: ::String
587
659
  attr_accessor kms_context: ::String
588
660
  SENSITIVE: [:kms_key_id]
@@ -593,6 +665,9 @@ module Aws::S3
593
665
  SENSITIVE: []
594
666
  end
595
667
 
668
+ class EncryptionTypeMismatch < Aws::EmptyStructure
669
+ end
670
+
596
671
  class EndEvent
597
672
  attr_accessor event_type: untyped
598
673
  SENSITIVE: []
@@ -606,6 +681,12 @@ module Aws::S3
606
681
  SENSITIVE: []
607
682
  end
608
683
 
684
+ class ErrorDetails
685
+ attr_accessor error_code: ::String
686
+ attr_accessor error_message: ::String
687
+ SENSITIVE: []
688
+ end
689
+
609
690
  class ErrorDocument
610
691
  attr_accessor key: ::String
611
692
  SENSITIVE: []
@@ -625,6 +706,17 @@ module Aws::S3
625
706
  SENSITIVE: []
626
707
  end
627
708
 
709
+ class GetBucketAbacOutput
710
+ attr_accessor abac_status: Types::AbacStatus
711
+ SENSITIVE: []
712
+ end
713
+
714
+ class GetBucketAbacRequest
715
+ attr_accessor bucket: ::String
716
+ attr_accessor expected_bucket_owner: ::String
717
+ SENSITIVE: []
718
+ end
719
+
628
720
  class GetBucketAccelerateConfigurationOutput
629
721
  attr_accessor status: ("Enabled" | "Suspended")
630
722
  attr_accessor request_charged: ("requester")
@@ -692,6 +784,7 @@ module Aws::S3
692
784
  class GetBucketIntelligentTieringConfigurationRequest
693
785
  attr_accessor bucket: ::String
694
786
  attr_accessor id: ::String
787
+ attr_accessor expected_bucket_owner: ::String
695
788
  SENSITIVE: []
696
789
  end
697
790
 
@@ -731,7 +824,7 @@ module Aws::S3
731
824
  end
732
825
 
733
826
  class GetBucketLocationOutput
734
- attr_accessor location_constraint: ("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" | "ca-central-1" | "cn-north-1" | "cn-northwest-1" | "EU" | "eu-central-1" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "me-south-1" | "sa-east-1" | "us-east-2" | "us-gov-east-1" | "us-gov-west-1" | "us-west-1" | "us-west-2")
827
+ attr_accessor location_constraint: ("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")
735
828
  SENSITIVE: []
736
829
  end
737
830
 
@@ -752,6 +845,40 @@ module Aws::S3
752
845
  SENSITIVE: []
753
846
  end
754
847
 
848
+ class GetBucketMetadataConfigurationOutput
849
+ attr_accessor get_bucket_metadata_configuration_result: Types::GetBucketMetadataConfigurationResult
850
+ SENSITIVE: []
851
+ end
852
+
853
+ class GetBucketMetadataConfigurationRequest
854
+ attr_accessor bucket: ::String
855
+ attr_accessor expected_bucket_owner: ::String
856
+ SENSITIVE: []
857
+ end
858
+
859
+ class GetBucketMetadataConfigurationResult
860
+ attr_accessor metadata_configuration_result: Types::MetadataConfigurationResult
861
+ SENSITIVE: []
862
+ end
863
+
864
+ class GetBucketMetadataTableConfigurationOutput
865
+ attr_accessor get_bucket_metadata_table_configuration_result: Types::GetBucketMetadataTableConfigurationResult
866
+ SENSITIVE: []
867
+ end
868
+
869
+ class GetBucketMetadataTableConfigurationRequest
870
+ attr_accessor bucket: ::String
871
+ attr_accessor expected_bucket_owner: ::String
872
+ SENSITIVE: []
873
+ end
874
+
875
+ class GetBucketMetadataTableConfigurationResult
876
+ attr_accessor metadata_table_configuration_result: Types::MetadataTableConfigurationResult
877
+ attr_accessor status: ::String
878
+ attr_accessor error: Types::ErrorDetails
879
+ SENSITIVE: []
880
+ end
881
+
755
882
  class GetBucketMetricsConfigurationOutput
756
883
  attr_accessor metrics_configuration: Types::MetricsConfiguration
757
884
  SENSITIVE: []
@@ -886,7 +1013,7 @@ module Aws::S3
886
1013
  attr_accessor etag: ::String
887
1014
  attr_accessor checksum: Types::Checksum
888
1015
  attr_accessor object_parts: Types::GetObjectAttributesParts
889
- attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
1016
+ attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
890
1017
  attr_accessor object_size: ::Integer
891
1018
  SENSITIVE: []
892
1019
  end
@@ -952,8 +1079,10 @@ module Aws::S3
952
1079
  attr_accessor etag: ::String
953
1080
  attr_accessor checksum_crc32: ::String
954
1081
  attr_accessor checksum_crc32c: ::String
1082
+ attr_accessor checksum_crc64nvme: ::String
955
1083
  attr_accessor checksum_sha1: ::String
956
1084
  attr_accessor checksum_sha256: ::String
1085
+ attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
957
1086
  attr_accessor missing_meta: ::Integer
958
1087
  attr_accessor version_id: ::String
959
1088
  attr_accessor cache_control: ::String
@@ -965,13 +1094,13 @@ module Aws::S3
965
1094
  attr_accessor expires: ::Time
966
1095
  attr_accessor expires_string: ::String
967
1096
  attr_accessor website_redirect_location: ::String
968
- attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
1097
+ attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
969
1098
  attr_accessor metadata: ::Hash[::String, ::String]
970
1099
  attr_accessor sse_customer_algorithm: ::String
971
1100
  attr_accessor sse_customer_key_md5: ::String
972
1101
  attr_accessor ssekms_key_id: ::String
973
1102
  attr_accessor bucket_key_enabled: bool
974
- attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
1103
+ attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
975
1104
  attr_accessor request_charged: ("requester")
976
1105
  attr_accessor replication_status: ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
977
1106
  attr_accessor parts_count: ::Integer
@@ -1082,7 +1211,8 @@ module Aws::S3
1082
1211
  end
1083
1212
 
1084
1213
  class HeadBucketOutput
1085
- attr_accessor bucket_location_type: ("AvailabilityZone")
1214
+ attr_accessor bucket_arn: ::String
1215
+ attr_accessor bucket_location_type: ("AvailabilityZone" | "LocalZone")
1086
1216
  attr_accessor bucket_location_name: ::String
1087
1217
  attr_accessor bucket_region: ::String
1088
1218
  attr_accessor access_point_alias: bool
@@ -1105,8 +1235,10 @@ module Aws::S3
1105
1235
  attr_accessor content_length: ::Integer
1106
1236
  attr_accessor checksum_crc32: ::String
1107
1237
  attr_accessor checksum_crc32c: ::String
1238
+ attr_accessor checksum_crc64nvme: ::String
1108
1239
  attr_accessor checksum_sha1: ::String
1109
1240
  attr_accessor checksum_sha256: ::String
1241
+ attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
1110
1242
  attr_accessor etag: ::String
1111
1243
  attr_accessor missing_meta: ::Integer
1112
1244
  attr_accessor version_id: ::String
@@ -1115,19 +1247,21 @@ module Aws::S3
1115
1247
  attr_accessor content_encoding: ::String
1116
1248
  attr_accessor content_language: ::String
1117
1249
  attr_accessor content_type: ::String
1250
+ attr_accessor content_range: ::String
1118
1251
  attr_accessor expires: ::Time
1119
1252
  attr_accessor expires_string: ::String
1120
1253
  attr_accessor website_redirect_location: ::String
1121
- attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
1254
+ attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
1122
1255
  attr_accessor metadata: ::Hash[::String, ::String]
1123
1256
  attr_accessor sse_customer_algorithm: ::String
1124
1257
  attr_accessor sse_customer_key_md5: ::String
1125
1258
  attr_accessor ssekms_key_id: ::String
1126
1259
  attr_accessor bucket_key_enabled: bool
1127
- attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
1260
+ attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
1128
1261
  attr_accessor request_charged: ("requester")
1129
1262
  attr_accessor replication_status: ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
1130
1263
  attr_accessor parts_count: ::Integer
1264
+ attr_accessor tag_count: ::Integer
1131
1265
  attr_accessor object_lock_mode: ("GOVERNANCE" | "COMPLIANCE")
1132
1266
  attr_accessor object_lock_retain_until_date: ::Time
1133
1267
  attr_accessor object_lock_legal_hold_status: ("ON" | "OFF")
@@ -1159,6 +1293,9 @@ module Aws::S3
1159
1293
  SENSITIVE: [:sse_customer_key]
1160
1294
  end
1161
1295
 
1296
+ class IdempotencyParameterMismatch < Aws::EmptyStructure
1297
+ end
1298
+
1162
1299
  class IndexDocument
1163
1300
  attr_accessor suffix: ::String
1164
1301
  SENSITIVE: []
@@ -1200,18 +1337,24 @@ module Aws::S3
1200
1337
  end
1201
1338
 
1202
1339
  class InvalidObjectState
1203
- attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
1340
+ attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
1204
1341
  attr_accessor access_tier: ("ARCHIVE_ACCESS" | "DEEP_ARCHIVE_ACCESS")
1205
1342
  SENSITIVE: []
1206
1343
  end
1207
1344
 
1345
+ class InvalidRequest < Aws::EmptyStructure
1346
+ end
1347
+
1348
+ class InvalidWriteOffset < Aws::EmptyStructure
1349
+ end
1350
+
1208
1351
  class InventoryConfiguration
1209
1352
  attr_accessor destination: Types::InventoryDestination
1210
1353
  attr_accessor is_enabled: bool
1211
1354
  attr_accessor filter: Types::InventoryFilter
1212
1355
  attr_accessor id: ::String
1213
1356
  attr_accessor included_object_versions: ("All" | "Current")
1214
- attr_accessor optional_fields: ::Array[("Size" | "LastModifiedDate" | "StorageClass" | "ETag" | "IsMultipartUploaded" | "ReplicationStatus" | "EncryptionStatus" | "ObjectLockRetainUntilDate" | "ObjectLockMode" | "ObjectLockLegalHoldStatus" | "IntelligentTieringAccessTier" | "BucketKeyStatus" | "ChecksumAlgorithm" | "ObjectAccessControlList" | "ObjectOwner")]
1357
+ attr_accessor optional_fields: ::Array[("Size" | "LastModifiedDate" | "StorageClass" | "ETag" | "IsMultipartUploaded" | "ReplicationStatus" | "EncryptionStatus" | "ObjectLockRetainUntilDate" | "ObjectLockMode" | "ObjectLockLegalHoldStatus" | "IntelligentTieringAccessTier" | "BucketKeyStatus" | "ChecksumAlgorithm" | "ObjectAccessControlList" | "ObjectOwner" | "LifecycleExpirationDate")]
1215
1358
  attr_accessor schedule: Types::InventorySchedule
1216
1359
  SENSITIVE: []
1217
1360
  end
@@ -1246,6 +1389,27 @@ module Aws::S3
1246
1389
  SENSITIVE: []
1247
1390
  end
1248
1391
 
1392
+ class InventoryTableConfiguration
1393
+ attr_accessor configuration_state: ("ENABLED" | "DISABLED")
1394
+ attr_accessor encryption_configuration: Types::MetadataTableEncryptionConfiguration
1395
+ SENSITIVE: []
1396
+ end
1397
+
1398
+ class InventoryTableConfigurationResult
1399
+ attr_accessor configuration_state: ("ENABLED" | "DISABLED")
1400
+ attr_accessor table_status: ::String
1401
+ attr_accessor error: Types::ErrorDetails
1402
+ attr_accessor table_name: ::String
1403
+ attr_accessor table_arn: ::String
1404
+ SENSITIVE: []
1405
+ end
1406
+
1407
+ class InventoryTableConfigurationUpdates
1408
+ attr_accessor configuration_state: ("ENABLED" | "DISABLED")
1409
+ attr_accessor encryption_configuration: Types::MetadataTableEncryptionConfiguration
1410
+ SENSITIVE: []
1411
+ end
1412
+
1249
1413
  class JSONInput
1250
1414
  attr_accessor type: ("DOCUMENT" | "LINES")
1251
1415
  SENSITIVE: []
@@ -1256,6 +1420,26 @@ module Aws::S3
1256
1420
  SENSITIVE: []
1257
1421
  end
1258
1422
 
1423
+ class JournalTableConfiguration
1424
+ attr_accessor record_expiration: Types::RecordExpiration
1425
+ attr_accessor encryption_configuration: Types::MetadataTableEncryptionConfiguration
1426
+ SENSITIVE: []
1427
+ end
1428
+
1429
+ class JournalTableConfigurationResult
1430
+ attr_accessor table_status: ::String
1431
+ attr_accessor error: Types::ErrorDetails
1432
+ attr_accessor table_name: ::String
1433
+ attr_accessor table_arn: ::String
1434
+ attr_accessor record_expiration: Types::RecordExpiration
1435
+ SENSITIVE: []
1436
+ end
1437
+
1438
+ class JournalTableConfigurationUpdates
1439
+ attr_accessor record_expiration: Types::RecordExpiration
1440
+ SENSITIVE: []
1441
+ end
1442
+
1259
1443
  class LambdaFunctionConfiguration
1260
1444
  attr_accessor id: ::String
1261
1445
  attr_accessor lambda_function_arn: ::String
@@ -1332,6 +1516,7 @@ module Aws::S3
1332
1516
  class ListBucketIntelligentTieringConfigurationsRequest
1333
1517
  attr_accessor bucket: ::String
1334
1518
  attr_accessor continuation_token: ::String
1519
+ attr_accessor expected_bucket_owner: ::String
1335
1520
  SENSITIVE: []
1336
1521
  end
1337
1522
 
@@ -1369,12 +1554,15 @@ module Aws::S3
1369
1554
  attr_accessor buckets: ::Array[Types::Bucket]
1370
1555
  attr_accessor owner: Types::Owner
1371
1556
  attr_accessor continuation_token: ::String
1557
+ attr_accessor prefix: ::String
1372
1558
  SENSITIVE: []
1373
1559
  end
1374
1560
 
1375
1561
  class ListBucketsRequest
1376
1562
  attr_accessor max_buckets: ::Integer
1377
1563
  attr_accessor continuation_token: ::String
1564
+ attr_accessor prefix: ::String
1565
+ attr_accessor bucket_region: ::String
1378
1566
  SENSITIVE: []
1379
1567
  end
1380
1568
 
@@ -1525,9 +1713,10 @@ module Aws::S3
1525
1713
  attr_accessor parts: ::Array[Types::Part]
1526
1714
  attr_accessor initiator: Types::Initiator
1527
1715
  attr_accessor owner: Types::Owner
1528
- attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
1716
+ attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
1529
1717
  attr_accessor request_charged: ("requester")
1530
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
1718
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1719
+ attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
1531
1720
  SENSITIVE: []
1532
1721
  end
1533
1722
 
@@ -1546,7 +1735,7 @@ module Aws::S3
1546
1735
  end
1547
1736
 
1548
1737
  class LocationInfo
1549
- attr_accessor type: ("AvailabilityZone")
1738
+ attr_accessor type: ("AvailabilityZone" | "LocalZone")
1550
1739
  attr_accessor name: ::String
1551
1740
  SENSITIVE: []
1552
1741
  end
@@ -1559,12 +1748,41 @@ module Aws::S3
1559
1748
  SENSITIVE: []
1560
1749
  end
1561
1750
 
1751
+ class MetadataConfiguration
1752
+ attr_accessor journal_table_configuration: Types::JournalTableConfiguration
1753
+ attr_accessor inventory_table_configuration: Types::InventoryTableConfiguration
1754
+ SENSITIVE: []
1755
+ end
1756
+
1757
+ class MetadataConfigurationResult
1758
+ attr_accessor destination_result: Types::DestinationResult
1759
+ attr_accessor journal_table_configuration_result: Types::JournalTableConfigurationResult
1760
+ attr_accessor inventory_table_configuration_result: Types::InventoryTableConfigurationResult
1761
+ SENSITIVE: []
1762
+ end
1763
+
1562
1764
  class MetadataEntry
1563
1765
  attr_accessor name: ::String
1564
1766
  attr_accessor value: ::String
1565
1767
  SENSITIVE: []
1566
1768
  end
1567
1769
 
1770
+ class MetadataTableConfiguration
1771
+ attr_accessor s3_tables_destination: Types::S3TablesDestination
1772
+ SENSITIVE: []
1773
+ end
1774
+
1775
+ class MetadataTableConfigurationResult
1776
+ attr_accessor s3_tables_destination_result: Types::S3TablesDestinationResult
1777
+ SENSITIVE: []
1778
+ end
1779
+
1780
+ class MetadataTableEncryptionConfiguration
1781
+ attr_accessor sse_algorithm: ("aws:kms" | "AES256")
1782
+ attr_accessor kms_key_arn: ::String
1783
+ SENSITIVE: []
1784
+ end
1785
+
1568
1786
  class Metrics
1569
1787
  attr_accessor status: ("Enabled" | "Disabled")
1570
1788
  attr_accessor event_threshold: Types::ReplicationTimeValue
@@ -1596,10 +1814,11 @@ module Aws::S3
1596
1814
  attr_accessor upload_id: ::String
1597
1815
  attr_accessor key: ::String
1598
1816
  attr_accessor initiated: ::Time
1599
- attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
1817
+ attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
1600
1818
  attr_accessor owner: Types::Owner
1601
1819
  attr_accessor initiator: Types::Initiator
1602
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
1820
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1821
+ attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
1603
1822
  SENSITIVE: []
1604
1823
  end
1605
1824
 
@@ -1649,9 +1868,10 @@ module Aws::S3
1649
1868
  attr_accessor key: ::String
1650
1869
  attr_accessor last_modified: ::Time
1651
1870
  attr_accessor etag: ::String
1652
- attr_accessor checksum_algorithm: ::Array[("CRC32" | "CRC32C" | "SHA1" | "SHA256")]
1871
+ attr_accessor checksum_algorithm: ::Array[("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")]
1872
+ attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
1653
1873
  attr_accessor size: ::Integer
1654
- attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "GLACIER" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
1874
+ attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "GLACIER" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
1655
1875
  attr_accessor owner: Types::Owner
1656
1876
  attr_accessor restore_status: Types::RestoreStatus
1657
1877
  SENSITIVE: []
@@ -1663,6 +1883,9 @@ module Aws::S3
1663
1883
  class ObjectIdentifier
1664
1884
  attr_accessor key: ::String
1665
1885
  attr_accessor version_id: ::String
1886
+ attr_accessor etag: ::String
1887
+ attr_accessor last_modified_time: ::Time
1888
+ attr_accessor size: ::Integer
1666
1889
  SENSITIVE: []
1667
1890
  end
1668
1891
 
@@ -1696,6 +1919,7 @@ module Aws::S3
1696
1919
  attr_accessor size: ::Integer
1697
1920
  attr_accessor checksum_crc32: ::String
1698
1921
  attr_accessor checksum_crc32c: ::String
1922
+ attr_accessor checksum_crc64nvme: ::String
1699
1923
  attr_accessor checksum_sha1: ::String
1700
1924
  attr_accessor checksum_sha256: ::String
1701
1925
  SENSITIVE: []
@@ -1703,7 +1927,8 @@ module Aws::S3
1703
1927
 
1704
1928
  class ObjectVersion
1705
1929
  attr_accessor etag: ::String
1706
- attr_accessor checksum_algorithm: ::Array[("CRC32" | "CRC32C" | "SHA1" | "SHA256")]
1930
+ attr_accessor checksum_algorithm: ::Array[("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")]
1931
+ attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
1707
1932
  attr_accessor size: ::Integer
1708
1933
  attr_accessor storage_class: ("STANDARD")
1709
1934
  attr_accessor key: ::String
@@ -1752,6 +1977,7 @@ module Aws::S3
1752
1977
  attr_accessor size: ::Integer
1753
1978
  attr_accessor checksum_crc32: ::String
1754
1979
  attr_accessor checksum_crc32c: ::String
1980
+ attr_accessor checksum_crc64nvme: ::String
1755
1981
  attr_accessor checksum_sha1: ::String
1756
1982
  attr_accessor checksum_sha256: ::String
1757
1983
  SENSITIVE: []
@@ -1788,11 +2014,20 @@ module Aws::S3
1788
2014
  SENSITIVE: []
1789
2015
  end
1790
2016
 
2017
+ class PutBucketAbacRequest
2018
+ attr_accessor bucket: ::String
2019
+ attr_accessor content_md5: ::String
2020
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
2021
+ attr_accessor expected_bucket_owner: ::String
2022
+ attr_accessor abac_status: Types::AbacStatus
2023
+ SENSITIVE: []
2024
+ end
2025
+
1791
2026
  class PutBucketAccelerateConfigurationRequest
1792
2027
  attr_accessor bucket: ::String
1793
2028
  attr_accessor accelerate_configuration: Types::AccelerateConfiguration
1794
2029
  attr_accessor expected_bucket_owner: ::String
1795
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2030
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1796
2031
  SENSITIVE: []
1797
2032
  end
1798
2033
 
@@ -1801,7 +2036,7 @@ module Aws::S3
1801
2036
  attr_accessor access_control_policy: Types::AccessControlPolicy
1802
2037
  attr_accessor bucket: ::String
1803
2038
  attr_accessor content_md5: ::String
1804
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2039
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1805
2040
  attr_accessor grant_full_control: ::String
1806
2041
  attr_accessor grant_read: ::String
1807
2042
  attr_accessor grant_read_acp: ::String
@@ -1823,7 +2058,7 @@ module Aws::S3
1823
2058
  attr_accessor bucket: ::String
1824
2059
  attr_accessor cors_configuration: Types::CORSConfiguration
1825
2060
  attr_accessor content_md5: ::String
1826
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2061
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1827
2062
  attr_accessor expected_bucket_owner: ::String
1828
2063
  SENSITIVE: []
1829
2064
  end
@@ -1831,7 +2066,7 @@ module Aws::S3
1831
2066
  class PutBucketEncryptionRequest
1832
2067
  attr_accessor bucket: ::String
1833
2068
  attr_accessor content_md5: ::String
1834
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2069
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1835
2070
  attr_accessor server_side_encryption_configuration: Types::ServerSideEncryptionConfiguration
1836
2071
  attr_accessor expected_bucket_owner: ::String
1837
2072
  SENSITIVE: []
@@ -1840,6 +2075,7 @@ module Aws::S3
1840
2075
  class PutBucketIntelligentTieringConfigurationRequest
1841
2076
  attr_accessor bucket: ::String
1842
2077
  attr_accessor id: ::String
2078
+ attr_accessor expected_bucket_owner: ::String
1843
2079
  attr_accessor intelligent_tiering_configuration: Types::IntelligentTieringConfiguration
1844
2080
  SENSITIVE: []
1845
2081
  end
@@ -1859,7 +2095,7 @@ module Aws::S3
1859
2095
 
1860
2096
  class PutBucketLifecycleConfigurationRequest
1861
2097
  attr_accessor bucket: ::String
1862
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2098
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1863
2099
  attr_accessor lifecycle_configuration: Types::BucketLifecycleConfiguration
1864
2100
  attr_accessor expected_bucket_owner: ::String
1865
2101
  attr_accessor transition_default_minimum_object_size: ("varies_by_storage_class" | "all_storage_classes_128K")
@@ -1869,7 +2105,7 @@ module Aws::S3
1869
2105
  class PutBucketLifecycleRequest
1870
2106
  attr_accessor bucket: ::String
1871
2107
  attr_accessor content_md5: ::String
1872
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2108
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1873
2109
  attr_accessor lifecycle_configuration: Types::LifecycleConfiguration
1874
2110
  attr_accessor expected_bucket_owner: ::String
1875
2111
  SENSITIVE: []
@@ -1879,7 +2115,7 @@ module Aws::S3
1879
2115
  attr_accessor bucket: ::String
1880
2116
  attr_accessor bucket_logging_status: Types::BucketLoggingStatus
1881
2117
  attr_accessor content_md5: ::String
1882
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2118
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1883
2119
  attr_accessor expected_bucket_owner: ::String
1884
2120
  SENSITIVE: []
1885
2121
  end
@@ -1903,7 +2139,7 @@ module Aws::S3
1903
2139
  class PutBucketNotificationRequest
1904
2140
  attr_accessor bucket: ::String
1905
2141
  attr_accessor content_md5: ::String
1906
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2142
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1907
2143
  attr_accessor notification_configuration: Types::NotificationConfigurationDeprecated
1908
2144
  attr_accessor expected_bucket_owner: ::String
1909
2145
  SENSITIVE: []
@@ -1914,13 +2150,14 @@ module Aws::S3
1914
2150
  attr_accessor content_md5: ::String
1915
2151
  attr_accessor expected_bucket_owner: ::String
1916
2152
  attr_accessor ownership_controls: Types::OwnershipControls
2153
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1917
2154
  SENSITIVE: []
1918
2155
  end
1919
2156
 
1920
2157
  class PutBucketPolicyRequest
1921
2158
  attr_accessor bucket: ::String
1922
2159
  attr_accessor content_md5: ::String
1923
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2160
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1924
2161
  attr_accessor confirm_remove_self_bucket_access: bool
1925
2162
  attr_accessor policy: ::IO
1926
2163
  attr_accessor expected_bucket_owner: ::String
@@ -1930,7 +2167,7 @@ module Aws::S3
1930
2167
  class PutBucketReplicationRequest
1931
2168
  attr_accessor bucket: ::String
1932
2169
  attr_accessor content_md5: ::String
1933
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2170
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1934
2171
  attr_accessor replication_configuration: Types::ReplicationConfiguration
1935
2172
  attr_accessor token: ::String
1936
2173
  attr_accessor expected_bucket_owner: ::String
@@ -1940,7 +2177,7 @@ module Aws::S3
1940
2177
  class PutBucketRequestPaymentRequest
1941
2178
  attr_accessor bucket: ::String
1942
2179
  attr_accessor content_md5: ::String
1943
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2180
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1944
2181
  attr_accessor request_payment_configuration: Types::RequestPaymentConfiguration
1945
2182
  attr_accessor expected_bucket_owner: ::String
1946
2183
  SENSITIVE: []
@@ -1949,7 +2186,7 @@ module Aws::S3
1949
2186
  class PutBucketTaggingRequest
1950
2187
  attr_accessor bucket: ::String
1951
2188
  attr_accessor content_md5: ::String
1952
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2189
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1953
2190
  attr_accessor tagging: Types::Tagging
1954
2191
  attr_accessor expected_bucket_owner: ::String
1955
2192
  SENSITIVE: []
@@ -1958,7 +2195,7 @@ module Aws::S3
1958
2195
  class PutBucketVersioningRequest
1959
2196
  attr_accessor bucket: ::String
1960
2197
  attr_accessor content_md5: ::String
1961
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2198
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1962
2199
  attr_accessor mfa: ::String
1963
2200
  attr_accessor versioning_configuration: Types::VersioningConfiguration
1964
2201
  attr_accessor expected_bucket_owner: ::String
@@ -1968,7 +2205,7 @@ module Aws::S3
1968
2205
  class PutBucketWebsiteRequest
1969
2206
  attr_accessor bucket: ::String
1970
2207
  attr_accessor content_md5: ::String
1971
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2208
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1972
2209
  attr_accessor website_configuration: Types::WebsiteConfiguration
1973
2210
  attr_accessor expected_bucket_owner: ::String
1974
2211
  SENSITIVE: []
@@ -1984,7 +2221,7 @@ module Aws::S3
1984
2221
  attr_accessor access_control_policy: Types::AccessControlPolicy
1985
2222
  attr_accessor bucket: ::String
1986
2223
  attr_accessor content_md5: ::String
1987
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2224
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1988
2225
  attr_accessor grant_full_control: ::String
1989
2226
  attr_accessor grant_read: ::String
1990
2227
  attr_accessor grant_read_acp: ::String
@@ -2009,7 +2246,7 @@ module Aws::S3
2009
2246
  attr_accessor request_payer: ("requester")
2010
2247
  attr_accessor version_id: ::String
2011
2248
  attr_accessor content_md5: ::String
2012
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2249
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
2013
2250
  attr_accessor expected_bucket_owner: ::String
2014
2251
  SENSITIVE: []
2015
2252
  end
@@ -2025,7 +2262,7 @@ module Aws::S3
2025
2262
  attr_accessor request_payer: ("requester")
2026
2263
  attr_accessor token: ::String
2027
2264
  attr_accessor content_md5: ::String
2028
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2265
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
2029
2266
  attr_accessor expected_bucket_owner: ::String
2030
2267
  SENSITIVE: []
2031
2268
  end
@@ -2035,15 +2272,18 @@ module Aws::S3
2035
2272
  attr_accessor etag: ::String
2036
2273
  attr_accessor checksum_crc32: ::String
2037
2274
  attr_accessor checksum_crc32c: ::String
2275
+ attr_accessor checksum_crc64nvme: ::String
2038
2276
  attr_accessor checksum_sha1: ::String
2039
2277
  attr_accessor checksum_sha256: ::String
2040
- attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
2278
+ attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
2279
+ attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
2041
2280
  attr_accessor version_id: ::String
2042
2281
  attr_accessor sse_customer_algorithm: ::String
2043
2282
  attr_accessor sse_customer_key_md5: ::String
2044
2283
  attr_accessor ssekms_key_id: ::String
2045
2284
  attr_accessor ssekms_encryption_context: ::String
2046
2285
  attr_accessor bucket_key_enabled: bool
2286
+ attr_accessor size: ::Integer
2047
2287
  attr_accessor request_charged: ("requester")
2048
2288
  SENSITIVE: [:ssekms_key_id, :ssekms_encryption_context]
2049
2289
  end
@@ -2059,21 +2299,24 @@ module Aws::S3
2059
2299
  attr_accessor content_length: ::Integer
2060
2300
  attr_accessor content_md5: ::String
2061
2301
  attr_accessor content_type: ::String
2062
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2302
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
2063
2303
  attr_accessor checksum_crc32: ::String
2064
2304
  attr_accessor checksum_crc32c: ::String
2305
+ attr_accessor checksum_crc64nvme: ::String
2065
2306
  attr_accessor checksum_sha1: ::String
2066
2307
  attr_accessor checksum_sha256: ::String
2067
2308
  attr_accessor expires: ::Time
2309
+ attr_accessor if_match: ::String
2068
2310
  attr_accessor if_none_match: ::String
2069
2311
  attr_accessor grant_full_control: ::String
2070
2312
  attr_accessor grant_read: ::String
2071
2313
  attr_accessor grant_read_acp: ::String
2072
2314
  attr_accessor grant_write_acp: ::String
2073
2315
  attr_accessor key: ::String
2316
+ attr_accessor write_offset_bytes: ::Integer
2074
2317
  attr_accessor metadata: ::Hash[::String, ::String]
2075
- attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
2076
- attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
2318
+ attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
2319
+ attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
2077
2320
  attr_accessor website_redirect_location: ::String
2078
2321
  attr_accessor sse_customer_algorithm: ::String
2079
2322
  attr_accessor sse_customer_key: ::String
@@ -2103,7 +2346,7 @@ module Aws::S3
2103
2346
  attr_accessor version_id: ::String
2104
2347
  attr_accessor bypass_governance_retention: bool
2105
2348
  attr_accessor content_md5: ::String
2106
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2349
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
2107
2350
  attr_accessor expected_bucket_owner: ::String
2108
2351
  SENSITIVE: []
2109
2352
  end
@@ -2118,7 +2361,7 @@ module Aws::S3
2118
2361
  attr_accessor key: ::String
2119
2362
  attr_accessor version_id: ::String
2120
2363
  attr_accessor content_md5: ::String
2121
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2364
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
2122
2365
  attr_accessor tagging: Types::Tagging
2123
2366
  attr_accessor expected_bucket_owner: ::String
2124
2367
  attr_accessor request_payer: ("requester")
@@ -2128,7 +2371,7 @@ module Aws::S3
2128
2371
  class PutPublicAccessBlockRequest
2129
2372
  attr_accessor bucket: ::String
2130
2373
  attr_accessor content_md5: ::String
2131
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2374
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
2132
2375
  attr_accessor public_access_block_configuration: Types::PublicAccessBlockConfiguration
2133
2376
  attr_accessor expected_bucket_owner: ::String
2134
2377
  SENSITIVE: []
@@ -2150,6 +2393,12 @@ module Aws::S3
2150
2393
  SENSITIVE: []
2151
2394
  end
2152
2395
 
2396
+ class RecordExpiration
2397
+ attr_accessor expiration: ("ENABLED" | "DISABLED")
2398
+ attr_accessor days: ::Integer
2399
+ SENSITIVE: []
2400
+ end
2401
+
2153
2402
  class RecordsEvent
2154
2403
  attr_accessor payload: ::IO
2155
2404
  attr_accessor event_type: untyped
@@ -2171,6 +2420,25 @@ module Aws::S3
2171
2420
  SENSITIVE: []
2172
2421
  end
2173
2422
 
2423
+ class RenameObjectOutput < Aws::EmptyStructure
2424
+ end
2425
+
2426
+ class RenameObjectRequest
2427
+ attr_accessor bucket: ::String
2428
+ attr_accessor key: ::String
2429
+ attr_accessor rename_source: ::String
2430
+ attr_accessor destination_if_match: ::String
2431
+ attr_accessor destination_if_none_match: ::String
2432
+ attr_accessor destination_if_modified_since: ::Time
2433
+ attr_accessor destination_if_unmodified_since: ::Time
2434
+ attr_accessor source_if_match: ::String
2435
+ attr_accessor source_if_none_match: ::String
2436
+ attr_accessor source_if_modified_since: ::Time
2437
+ attr_accessor source_if_unmodified_since: ::Time
2438
+ attr_accessor client_token: ::String
2439
+ SENSITIVE: []
2440
+ end
2441
+
2174
2442
  class ReplicaModifications
2175
2443
  attr_accessor status: ("Enabled" | "Disabled")
2176
2444
  SENSITIVE: []
@@ -2241,7 +2509,7 @@ module Aws::S3
2241
2509
  attr_accessor version_id: ::String
2242
2510
  attr_accessor restore_request: Types::RestoreRequest
2243
2511
  attr_accessor request_payer: ("requester")
2244
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2512
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
2245
2513
  attr_accessor expected_bucket_owner: ::String
2246
2514
  SENSITIVE: []
2247
2515
  end
@@ -2294,7 +2562,21 @@ module Aws::S3
2294
2562
  attr_accessor access_control_list: ::Array[Types::Grant]
2295
2563
  attr_accessor tagging: Types::Tagging
2296
2564
  attr_accessor user_metadata: ::Array[Types::MetadataEntry]
2297
- attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
2565
+ attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
2566
+ SENSITIVE: []
2567
+ end
2568
+
2569
+ class S3TablesDestination
2570
+ attr_accessor table_bucket_arn: ::String
2571
+ attr_accessor table_name: ::String
2572
+ SENSITIVE: []
2573
+ end
2574
+
2575
+ class S3TablesDestinationResult
2576
+ attr_accessor table_bucket_arn: ::String
2577
+ attr_accessor table_name: ::String
2578
+ attr_accessor table_arn: ::String
2579
+ attr_accessor table_namespace: ::String
2298
2580
  SENSITIVE: []
2299
2581
  end
2300
2582
 
@@ -2342,7 +2624,7 @@ module Aws::S3
2342
2624
  end
2343
2625
 
2344
2626
  class ServerSideEncryptionByDefault
2345
- attr_accessor sse_algorithm: ("AES256" | "aws:kms" | "aws:kms:dsse")
2627
+ attr_accessor sse_algorithm: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
2346
2628
  attr_accessor kms_master_key_id: ::String
2347
2629
  SENSITIVE: [:kms_master_key_id]
2348
2630
  end
@@ -2355,6 +2637,7 @@ module Aws::S3
2355
2637
  class ServerSideEncryptionRule
2356
2638
  attr_accessor apply_server_side_encryption_by_default: Types::ServerSideEncryptionByDefault
2357
2639
  attr_accessor bucket_key_enabled: bool
2640
+ attr_accessor blocked_encryption_types: Types::BlockedEncryptionTypes
2358
2641
  SENSITIVE: []
2359
2642
  end
2360
2643
 
@@ -2433,6 +2716,9 @@ module Aws::S3
2433
2716
  SENSITIVE: []
2434
2717
  end
2435
2718
 
2719
+ class TooManyParts < Aws::EmptyStructure
2720
+ end
2721
+
2436
2722
  class TopicConfiguration
2437
2723
  attr_accessor id: ::String
2438
2724
  attr_accessor topic_arn: ::String
@@ -2456,10 +2742,28 @@ module Aws::S3
2456
2742
  SENSITIVE: []
2457
2743
  end
2458
2744
 
2745
+ class UpdateBucketMetadataInventoryTableConfigurationRequest
2746
+ attr_accessor bucket: ::String
2747
+ attr_accessor content_md5: ::String
2748
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
2749
+ attr_accessor inventory_table_configuration: Types::InventoryTableConfigurationUpdates
2750
+ attr_accessor expected_bucket_owner: ::String
2751
+ SENSITIVE: []
2752
+ end
2753
+
2754
+ class UpdateBucketMetadataJournalTableConfigurationRequest
2755
+ attr_accessor bucket: ::String
2756
+ attr_accessor content_md5: ::String
2757
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
2758
+ attr_accessor journal_table_configuration: Types::JournalTableConfigurationUpdates
2759
+ attr_accessor expected_bucket_owner: ::String
2760
+ SENSITIVE: []
2761
+ end
2762
+
2459
2763
  class UploadPartCopyOutput
2460
2764
  attr_accessor copy_source_version_id: ::String
2461
2765
  attr_accessor copy_part_result: Types::CopyPartResult
2462
- attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
2766
+ attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
2463
2767
  attr_accessor sse_customer_algorithm: ::String
2464
2768
  attr_accessor sse_customer_key_md5: ::String
2465
2769
  attr_accessor ssekms_key_id: ::String
@@ -2492,10 +2796,11 @@ module Aws::S3
2492
2796
  end
2493
2797
 
2494
2798
  class UploadPartOutput
2495
- attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
2799
+ attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
2496
2800
  attr_accessor etag: ::String
2497
2801
  attr_accessor checksum_crc32: ::String
2498
2802
  attr_accessor checksum_crc32c: ::String
2803
+ attr_accessor checksum_crc64nvme: ::String
2499
2804
  attr_accessor checksum_sha1: ::String
2500
2805
  attr_accessor checksum_sha256: ::String
2501
2806
  attr_accessor sse_customer_algorithm: ::String
@@ -2511,9 +2816,10 @@ module Aws::S3
2511
2816
  attr_accessor bucket: ::String
2512
2817
  attr_accessor content_length: ::Integer
2513
2818
  attr_accessor content_md5: ::String
2514
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2819
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
2515
2820
  attr_accessor checksum_crc32: ::String
2516
2821
  attr_accessor checksum_crc32c: ::String
2822
+ attr_accessor checksum_crc64nvme: ::String
2517
2823
  attr_accessor checksum_sha1: ::String
2518
2824
  attr_accessor checksum_sha256: ::String
2519
2825
  attr_accessor key: ::String
@@ -2558,6 +2864,7 @@ module Aws::S3
2558
2864
  attr_accessor content_type: ::String
2559
2865
  attr_accessor checksum_crc32: ::String
2560
2866
  attr_accessor checksum_crc32c: ::String
2867
+ attr_accessor checksum_crc64nvme: ::String
2561
2868
  attr_accessor checksum_sha1: ::String
2562
2869
  attr_accessor checksum_sha256: ::String
2563
2870
  attr_accessor delete_marker: bool
@@ -2574,11 +2881,11 @@ module Aws::S3
2574
2881
  attr_accessor replication_status: ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
2575
2882
  attr_accessor request_charged: ("requester")
2576
2883
  attr_accessor restore: ::String
2577
- attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
2884
+ attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
2578
2885
  attr_accessor sse_customer_algorithm: ::String
2579
2886
  attr_accessor ssekms_key_id: ::String
2580
2887
  attr_accessor sse_customer_key_md5: ::String
2581
- attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
2888
+ attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
2582
2889
  attr_accessor tag_count: ::Integer
2583
2890
  attr_accessor version_id: ::String
2584
2891
  attr_accessor bucket_key_enabled: bool