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/client.rbs CHANGED
@@ -20,6 +20,7 @@ module Aws
20
20
  ?account_id: String,
21
21
  ?active_endpoint_cache: bool,
22
22
  ?adaptive_retry_wait_to_fill: bool,
23
+ ?auth_scheme_preference: Array[String],
23
24
  ?client_side_monitoring: bool,
24
25
  ?client_side_monitoring_client_id: String,
25
26
  ?client_side_monitoring_host: String,
@@ -49,8 +50,10 @@ module Aws
49
50
  ?max_attempts: Integer,
50
51
  ?output_event_stream_handler: Proc,
51
52
  ?profile: String,
53
+ ?request_checksum_calculation: String,
52
54
  ?request_min_compression_size_bytes: Integer,
53
55
  ?require_https_for_sse_cpk: bool,
56
+ ?response_checksum_validation: String,
54
57
  ?retry_backoff: Proc,
55
58
  ?retry_base_delay: Float,
56
59
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
@@ -100,7 +103,8 @@ module Aws
100
103
  key: ::String,
101
104
  upload_id: ::String,
102
105
  ?request_payer: ("requester"),
103
- ?expected_bucket_owner: ::String
106
+ ?expected_bucket_owner: ::String,
107
+ ?if_match_initiated_time: ::Time
104
108
  ) -> _AbortMultipartUploadResponseSuccess
105
109
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AbortMultipartUploadResponseSuccess
106
110
 
@@ -113,9 +117,11 @@ module Aws
113
117
  def etag: () -> ::String
114
118
  def checksum_crc32: () -> ::String
115
119
  def checksum_crc32c: () -> ::String
120
+ def checksum_crc64nvme: () -> ::String
116
121
  def checksum_sha1: () -> ::String
117
122
  def checksum_sha256: () -> ::String
118
- def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
123
+ def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
124
+ def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
119
125
  def version_id: () -> ::String
120
126
  def ssekms_key_id: () -> ::String
121
127
  def bucket_key_enabled: () -> bool
@@ -131,6 +137,7 @@ module Aws
131
137
  etag: ::String?,
132
138
  checksum_crc32: ::String?,
133
139
  checksum_crc32c: ::String?,
140
+ checksum_crc64nvme: ::String?,
134
141
  checksum_sha1: ::String?,
135
142
  checksum_sha256: ::String?,
136
143
  part_number: ::Integer?
@@ -140,10 +147,14 @@ module Aws
140
147
  upload_id: ::String,
141
148
  ?checksum_crc32: ::String,
142
149
  ?checksum_crc32c: ::String,
150
+ ?checksum_crc64nvme: ::String,
143
151
  ?checksum_sha1: ::String,
144
152
  ?checksum_sha256: ::String,
153
+ ?checksum_type: ("COMPOSITE" | "FULL_OBJECT"),
154
+ ?mpu_object_size: ::Integer,
145
155
  ?request_payer: ("requester"),
146
156
  ?expected_bucket_owner: ::String,
157
+ ?if_match: ::String,
147
158
  ?if_none_match: ::String,
148
159
  ?sse_customer_algorithm: ::String,
149
160
  ?sse_customer_key: ::String,
@@ -157,7 +168,7 @@ module Aws
157
168
  def expiration: () -> ::String
158
169
  def copy_source_version_id: () -> ::String
159
170
  def version_id: () -> ::String
160
- def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
171
+ def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
161
172
  def sse_customer_algorithm: () -> ::String
162
173
  def sse_customer_key_md5: () -> ::String
163
174
  def ssekms_key_id: () -> ::String
@@ -170,7 +181,7 @@ module Aws
170
181
  ?acl: ("private" | "public-read" | "public-read-write" | "authenticated-read" | "aws-exec-read" | "bucket-owner-read" | "bucket-owner-full-control"),
171
182
  bucket: ::String,
172
183
  ?cache_control: ::String,
173
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
184
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
174
185
  ?content_disposition: ::String,
175
186
  ?content_encoding: ::String,
176
187
  ?content_language: ::String,
@@ -185,12 +196,14 @@ module Aws
185
196
  ?grant_read: ::String,
186
197
  ?grant_read_acp: ::String,
187
198
  ?grant_write_acp: ::String,
199
+ ?if_match: ::String,
200
+ ?if_none_match: ::String,
188
201
  key: ::String,
189
202
  ?metadata: Hash[::String, ::String],
190
203
  ?metadata_directive: ("COPY" | "REPLACE"),
191
204
  ?tagging_directive: ("COPY" | "REPLACE"),
192
- ?server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse"),
193
- ?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE"),
205
+ ?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
206
+ ?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP"),
194
207
  ?website_redirect_location: ::String,
195
208
  ?sse_customer_algorithm: ::String,
196
209
  ?sse_customer_key: ::String,
@@ -214,21 +227,28 @@ module Aws
214
227
  interface _CreateBucketResponseSuccess
215
228
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateBucketOutput]
216
229
  def location: () -> ::String
230
+ def bucket_arn: () -> ::String
217
231
  end
218
232
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#create_bucket-instance_method
219
233
  def create_bucket: (
220
234
  ?acl: ("private" | "public-read" | "public-read-write" | "authenticated-read"),
221
235
  bucket: ::String,
222
236
  ?create_bucket_configuration: {
223
- 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")?,
237
+ 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")?,
224
238
  location: {
225
- type: ("AvailabilityZone")?,
239
+ type: ("AvailabilityZone" | "LocalZone")?,
226
240
  name: ::String?
227
241
  }?,
228
242
  bucket: {
229
- data_redundancy: ("SingleAvailabilityZone")?,
243
+ data_redundancy: ("SingleAvailabilityZone" | "SingleLocalZone")?,
230
244
  type: ("Directory")?
231
- }?
245
+ }?,
246
+ tags: Array[
247
+ {
248
+ key: ::String,
249
+ value: ::String
250
+ },
251
+ ]?
232
252
  },
233
253
  ?grant_full_control: ::String,
234
254
  ?grant_read: ::String,
@@ -240,6 +260,49 @@ module Aws
240
260
  ) -> _CreateBucketResponseSuccess
241
261
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateBucketResponseSuccess
242
262
 
263
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#create_bucket_metadata_configuration-instance_method
264
+ def create_bucket_metadata_configuration: (
265
+ bucket: ::String,
266
+ ?content_md5: ::String,
267
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
268
+ metadata_configuration: {
269
+ journal_table_configuration: {
270
+ record_expiration: {
271
+ expiration: ("ENABLED" | "DISABLED"),
272
+ days: ::Integer?
273
+ },
274
+ encryption_configuration: {
275
+ sse_algorithm: ("aws:kms" | "AES256"),
276
+ kms_key_arn: ::String?
277
+ }?
278
+ },
279
+ inventory_table_configuration: {
280
+ configuration_state: ("ENABLED" | "DISABLED"),
281
+ encryption_configuration: {
282
+ sse_algorithm: ("aws:kms" | "AES256"),
283
+ kms_key_arn: ::String?
284
+ }?
285
+ }?
286
+ },
287
+ ?expected_bucket_owner: ::String
288
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
289
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
290
+
291
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#create_bucket_metadata_table_configuration-instance_method
292
+ def create_bucket_metadata_table_configuration: (
293
+ bucket: ::String,
294
+ ?content_md5: ::String,
295
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
296
+ metadata_table_configuration: {
297
+ s3_tables_destination: {
298
+ table_bucket_arn: ::String,
299
+ table_name: ::String
300
+ }
301
+ },
302
+ ?expected_bucket_owner: ::String
303
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
304
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
305
+
243
306
  interface _CreateMultipartUploadResponseSuccess
244
307
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateMultipartUploadOutput]
245
308
  def abort_date: () -> ::Time
@@ -247,14 +310,15 @@ module Aws
247
310
  def bucket: () -> ::String
248
311
  def key: () -> ::String
249
312
  def upload_id: () -> ::String
250
- def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
313
+ def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
251
314
  def sse_customer_algorithm: () -> ::String
252
315
  def sse_customer_key_md5: () -> ::String
253
316
  def ssekms_key_id: () -> ::String
254
317
  def ssekms_encryption_context: () -> ::String
255
318
  def bucket_key_enabled: () -> bool
256
319
  def request_charged: () -> ("requester")
257
- def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
320
+ def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
321
+ def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
258
322
  end
259
323
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#create_multipart_upload-instance_method
260
324
  def create_multipart_upload: (
@@ -272,8 +336,8 @@ module Aws
272
336
  ?grant_write_acp: ::String,
273
337
  key: ::String,
274
338
  ?metadata: Hash[::String, ::String],
275
- ?server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse"),
276
- ?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE"),
339
+ ?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
340
+ ?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP"),
277
341
  ?website_redirect_location: ::String,
278
342
  ?sse_customer_algorithm: ::String,
279
343
  ?sse_customer_key: ::String,
@@ -287,13 +351,14 @@ module Aws
287
351
  ?object_lock_retain_until_date: ::Time,
288
352
  ?object_lock_legal_hold_status: ("ON" | "OFF"),
289
353
  ?expected_bucket_owner: ::String,
290
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
354
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
355
+ ?checksum_type: ("COMPOSITE" | "FULL_OBJECT")
291
356
  ) -> _CreateMultipartUploadResponseSuccess
292
357
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMultipartUploadResponseSuccess
293
358
 
294
359
  interface _CreateSessionResponseSuccess
295
360
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateSessionOutput]
296
- def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
361
+ def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
297
362
  def ssekms_key_id: () -> ::String
298
363
  def ssekms_encryption_context: () -> ::String
299
364
  def bucket_key_enabled: () -> bool
@@ -303,7 +368,7 @@ module Aws
303
368
  def create_session: (
304
369
  ?session_mode: ("ReadOnly" | "ReadWrite"),
305
370
  bucket: ::String,
306
- ?server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse"),
371
+ ?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
307
372
  ?ssekms_key_id: ::String,
308
373
  ?ssekms_encryption_context: ::String,
309
374
  ?bucket_key_enabled: bool
@@ -342,7 +407,8 @@ module Aws
342
407
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#delete_bucket_intelligent_tiering_configuration-instance_method
343
408
  def delete_bucket_intelligent_tiering_configuration: (
344
409
  bucket: ::String,
345
- id: ::String
410
+ id: ::String,
411
+ ?expected_bucket_owner: ::String
346
412
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
347
413
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
348
414
 
@@ -361,6 +427,20 @@ module Aws
361
427
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
362
428
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
363
429
 
430
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#delete_bucket_metadata_configuration-instance_method
431
+ def delete_bucket_metadata_configuration: (
432
+ bucket: ::String,
433
+ ?expected_bucket_owner: ::String
434
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
435
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
436
+
437
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#delete_bucket_metadata_table_configuration-instance_method
438
+ def delete_bucket_metadata_table_configuration: (
439
+ bucket: ::String,
440
+ ?expected_bucket_owner: ::String
441
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
442
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
443
+
364
444
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#delete_bucket_metrics_configuration-instance_method
365
445
  def delete_bucket_metrics_configuration: (
366
446
  bucket: ::String,
@@ -418,7 +498,10 @@ module Aws
418
498
  ?version_id: ::String,
419
499
  ?request_payer: ("requester"),
420
500
  ?bypass_governance_retention: bool,
421
- ?expected_bucket_owner: ::String
501
+ ?expected_bucket_owner: ::String,
502
+ ?if_match: ::String,
503
+ ?if_match_last_modified_time: ::Time,
504
+ ?if_match_size: ::Integer
422
505
  ) -> _DeleteObjectResponseSuccess
423
506
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteObjectResponseSuccess
424
507
 
@@ -448,7 +531,10 @@ module Aws
448
531
  objects: Array[
449
532
  {
450
533
  key: ::String,
451
- version_id: ::String?
534
+ version_id: ::String?,
535
+ etag: ::String?,
536
+ last_modified_time: ::Time?,
537
+ size: ::Integer?
452
538
  },
453
539
  ],
454
540
  quiet: bool?
@@ -457,7 +543,7 @@ module Aws
457
543
  ?request_payer: ("requester"),
458
544
  ?bypass_governance_retention: bool,
459
545
  ?expected_bucket_owner: ::String,
460
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
546
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
461
547
  ) -> _DeleteObjectsResponseSuccess
462
548
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteObjectsResponseSuccess
463
549
 
@@ -468,6 +554,17 @@ module Aws
468
554
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
469
555
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
470
556
 
557
+ interface _GetBucketAbacResponseSuccess
558
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetBucketAbacOutput]
559
+ def abac_status: () -> Types::AbacStatus
560
+ end
561
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#get_bucket_abac-instance_method
562
+ def get_bucket_abac: (
563
+ bucket: ::String,
564
+ ?expected_bucket_owner: ::String
565
+ ) -> _GetBucketAbacResponseSuccess
566
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBucketAbacResponseSuccess
567
+
471
568
  interface _GetBucketAccelerateConfigurationResponseSuccess
472
569
  include ::Seahorse::Client::_ResponseSuccess[Types::GetBucketAccelerateConfigurationOutput]
473
570
  def status: () -> ("Enabled" | "Suspended")
@@ -534,7 +631,8 @@ module Aws
534
631
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#get_bucket_intelligent_tiering_configuration-instance_method
535
632
  def get_bucket_intelligent_tiering_configuration: (
536
633
  bucket: ::String,
537
- id: ::String
634
+ id: ::String,
635
+ ?expected_bucket_owner: ::String
538
636
  ) -> _GetBucketIntelligentTieringConfigurationResponseSuccess
539
637
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBucketIntelligentTieringConfigurationResponseSuccess
540
638
 
@@ -575,7 +673,7 @@ module Aws
575
673
 
576
674
  interface _GetBucketLocationResponseSuccess
577
675
  include ::Seahorse::Client::_ResponseSuccess[Types::GetBucketLocationOutput]
578
- def 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")
676
+ def 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")
579
677
  end
580
678
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#get_bucket_location-instance_method
581
679
  def get_bucket_location: (
@@ -595,6 +693,28 @@ module Aws
595
693
  ) -> _GetBucketLoggingResponseSuccess
596
694
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBucketLoggingResponseSuccess
597
695
 
696
+ interface _GetBucketMetadataConfigurationResponseSuccess
697
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetBucketMetadataConfigurationOutput]
698
+ def get_bucket_metadata_configuration_result: () -> Types::GetBucketMetadataConfigurationResult
699
+ end
700
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#get_bucket_metadata_configuration-instance_method
701
+ def get_bucket_metadata_configuration: (
702
+ bucket: ::String,
703
+ ?expected_bucket_owner: ::String
704
+ ) -> _GetBucketMetadataConfigurationResponseSuccess
705
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBucketMetadataConfigurationResponseSuccess
706
+
707
+ interface _GetBucketMetadataTableConfigurationResponseSuccess
708
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetBucketMetadataTableConfigurationOutput]
709
+ def get_bucket_metadata_table_configuration_result: () -> Types::GetBucketMetadataTableConfigurationResult
710
+ end
711
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#get_bucket_metadata_table_configuration-instance_method
712
+ def get_bucket_metadata_table_configuration: (
713
+ bucket: ::String,
714
+ ?expected_bucket_owner: ::String
715
+ ) -> _GetBucketMetadataTableConfigurationResponseSuccess
716
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBucketMetadataTableConfigurationResponseSuccess
717
+
598
718
  interface _GetBucketMetricsConfigurationResponseSuccess
599
719
  include ::Seahorse::Client::_ResponseSuccess[Types::GetBucketMetricsConfigurationOutput]
600
720
  def metrics_configuration: () -> Types::MetricsConfiguration
@@ -738,8 +858,10 @@ module Aws
738
858
  def etag: () -> ::String
739
859
  def checksum_crc32: () -> ::String
740
860
  def checksum_crc32c: () -> ::String
861
+ def checksum_crc64nvme: () -> ::String
741
862
  def checksum_sha1: () -> ::String
742
863
  def checksum_sha256: () -> ::String
864
+ def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
743
865
  def missing_meta: () -> ::Integer
744
866
  def version_id: () -> ::String
745
867
  def cache_control: () -> ::String
@@ -751,13 +873,13 @@ module Aws
751
873
  def expires: () -> ::Time
752
874
  def expires_string: () -> ::String
753
875
  def website_redirect_location: () -> ::String
754
- def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
876
+ def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
755
877
  def metadata: () -> ::Hash[::String, ::String]
756
878
  def sse_customer_algorithm: () -> ::String
757
879
  def sse_customer_key_md5: () -> ::String
758
880
  def ssekms_key_id: () -> ::String
759
881
  def bucket_key_enabled: () -> bool
760
- def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
882
+ def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
761
883
  def request_charged: () -> ("requester")
762
884
  def replication_status: () -> ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
763
885
  def parts_count: () -> ::Integer
@@ -817,7 +939,7 @@ module Aws
817
939
  def etag: () -> ::String
818
940
  def checksum: () -> Types::Checksum
819
941
  def object_parts: () -> Types::GetObjectAttributesParts
820
- def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
942
+ def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
821
943
  def object_size: () -> ::Integer
822
944
  end
823
945
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#get_object_attributes-instance_method
@@ -917,7 +1039,8 @@ module Aws
917
1039
 
918
1040
  interface _HeadBucketResponseSuccess
919
1041
  include ::Seahorse::Client::_ResponseSuccess[Types::HeadBucketOutput]
920
- def bucket_location_type: () -> ("AvailabilityZone")
1042
+ def bucket_arn: () -> ::String
1043
+ def bucket_location_type: () -> ("AvailabilityZone" | "LocalZone")
921
1044
  def bucket_location_name: () -> ::String
922
1045
  def bucket_region: () -> ::String
923
1046
  def access_point_alias: () -> bool
@@ -940,8 +1063,10 @@ module Aws
940
1063
  def content_length: () -> ::Integer
941
1064
  def checksum_crc32: () -> ::String
942
1065
  def checksum_crc32c: () -> ::String
1066
+ def checksum_crc64nvme: () -> ::String
943
1067
  def checksum_sha1: () -> ::String
944
1068
  def checksum_sha256: () -> ::String
1069
+ def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
945
1070
  def etag: () -> ::String
946
1071
  def missing_meta: () -> ::Integer
947
1072
  def version_id: () -> ::String
@@ -950,19 +1075,21 @@ module Aws
950
1075
  def content_encoding: () -> ::String
951
1076
  def content_language: () -> ::String
952
1077
  def content_type: () -> ::String
1078
+ def content_range: () -> ::String
953
1079
  def expires: () -> ::Time
954
1080
  def expires_string: () -> ::String
955
1081
  def website_redirect_location: () -> ::String
956
- def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
1082
+ def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
957
1083
  def metadata: () -> ::Hash[::String, ::String]
958
1084
  def sse_customer_algorithm: () -> ::String
959
1085
  def sse_customer_key_md5: () -> ::String
960
1086
  def ssekms_key_id: () -> ::String
961
1087
  def bucket_key_enabled: () -> bool
962
- def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
1088
+ def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
963
1089
  def request_charged: () -> ("requester")
964
1090
  def replication_status: () -> ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
965
1091
  def parts_count: () -> ::Integer
1092
+ def tag_count: () -> ::Integer
966
1093
  def object_lock_mode: () -> ("GOVERNANCE" | "COMPLIANCE")
967
1094
  def object_lock_retain_until_date: () -> ::Time
968
1095
  def object_lock_legal_hold_status: () -> ("ON" | "OFF")
@@ -1018,7 +1145,8 @@ module Aws
1018
1145
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#list_bucket_intelligent_tiering_configurations-instance_method
1019
1146
  def list_bucket_intelligent_tiering_configurations: (
1020
1147
  bucket: ::String,
1021
- ?continuation_token: ::String
1148
+ ?continuation_token: ::String,
1149
+ ?expected_bucket_owner: ::String
1022
1150
  ) -> _ListBucketIntelligentTieringConfigurationsResponseSuccess
1023
1151
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBucketIntelligentTieringConfigurationsResponseSuccess
1024
1152
 
@@ -1057,11 +1185,14 @@ module Aws
1057
1185
  def buckets: () -> ::Array[Types::Bucket]
1058
1186
  def owner: () -> Types::Owner
1059
1187
  def continuation_token: () -> ::String
1188
+ def prefix: () -> ::String
1060
1189
  end
1061
1190
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#list_buckets-instance_method
1062
1191
  def list_buckets: (
1063
1192
  ?max_buckets: ::Integer,
1064
- ?continuation_token: ::String
1193
+ ?continuation_token: ::String,
1194
+ ?prefix: ::String,
1195
+ ?bucket_region: ::String
1065
1196
  ) -> _ListBucketsResponseSuccess
1066
1197
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBucketsResponseSuccess
1067
1198
 
@@ -1213,9 +1344,10 @@ module Aws
1213
1344
  def parts: () -> ::Array[Types::Part]
1214
1345
  def initiator: () -> Types::Initiator
1215
1346
  def owner: () -> Types::Owner
1216
- def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
1347
+ def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
1217
1348
  def request_charged: () -> ("requester")
1218
- def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
1349
+ def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1350
+ def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
1219
1351
  end
1220
1352
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#list_parts-instance_method
1221
1353
  def list_parts: (
@@ -1232,6 +1364,18 @@ module Aws
1232
1364
  ) -> _ListPartsResponseSuccess
1233
1365
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPartsResponseSuccess
1234
1366
 
1367
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#put_bucket_abac-instance_method
1368
+ def put_bucket_abac: (
1369
+ bucket: ::String,
1370
+ ?content_md5: ::String,
1371
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1372
+ ?expected_bucket_owner: ::String,
1373
+ abac_status: {
1374
+ status: ("Enabled" | "Disabled")?
1375
+ }
1376
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1377
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1378
+
1235
1379
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#put_bucket_accelerate_configuration-instance_method
1236
1380
  def put_bucket_accelerate_configuration: (
1237
1381
  bucket: ::String,
@@ -1239,7 +1383,7 @@ module Aws
1239
1383
  status: ("Enabled" | "Suspended")?
1240
1384
  },
1241
1385
  ?expected_bucket_owner: ::String,
1242
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
1386
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1243
1387
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1244
1388
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1245
1389
 
@@ -1266,7 +1410,7 @@ module Aws
1266
1410
  },
1267
1411
  bucket: ::String,
1268
1412
  ?content_md5: ::String,
1269
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1413
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1270
1414
  ?grant_full_control: ::String,
1271
1415
  ?grant_read: ::String,
1272
1416
  ?grant_read_acp: ::String,
@@ -1332,7 +1476,7 @@ module Aws
1332
1476
  ]
1333
1477
  },
1334
1478
  ?content_md5: ::String,
1335
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1479
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1336
1480
  ?expected_bucket_owner: ::String
1337
1481
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1338
1482
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
@@ -1341,15 +1485,18 @@ module Aws
1341
1485
  def put_bucket_encryption: (
1342
1486
  bucket: ::String,
1343
1487
  ?content_md5: ::String,
1344
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1488
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1345
1489
  server_side_encryption_configuration: {
1346
1490
  rules: Array[
1347
1491
  {
1348
1492
  apply_server_side_encryption_by_default: {
1349
- sse_algorithm: ("AES256" | "aws:kms" | "aws:kms:dsse"),
1493
+ sse_algorithm: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
1350
1494
  kms_master_key_id: ::String?
1351
1495
  }?,
1352
- bucket_key_enabled: bool?
1496
+ bucket_key_enabled: bool?,
1497
+ blocked_encryption_types: {
1498
+ encryption_type: Array[("NONE" | "SSE-C")]?
1499
+ }?
1353
1500
  },
1354
1501
  ]
1355
1502
  },
@@ -1361,6 +1508,7 @@ module Aws
1361
1508
  def put_bucket_intelligent_tiering_configuration: (
1362
1509
  bucket: ::String,
1363
1510
  id: ::String,
1511
+ ?expected_bucket_owner: ::String,
1364
1512
  intelligent_tiering_configuration: {
1365
1513
  id: ::String,
1366
1514
  filter: {
@@ -1416,7 +1564,7 @@ module Aws
1416
1564
  }?,
1417
1565
  id: ::String,
1418
1566
  included_object_versions: ("All" | "Current"),
1419
- optional_fields: Array[("Size" | "LastModifiedDate" | "StorageClass" | "ETag" | "IsMultipartUploaded" | "ReplicationStatus" | "EncryptionStatus" | "ObjectLockRetainUntilDate" | "ObjectLockMode" | "ObjectLockLegalHoldStatus" | "IntelligentTieringAccessTier" | "BucketKeyStatus" | "ChecksumAlgorithm" | "ObjectAccessControlList" | "ObjectOwner")]?,
1567
+ optional_fields: Array[("Size" | "LastModifiedDate" | "StorageClass" | "ETag" | "IsMultipartUploaded" | "ReplicationStatus" | "EncryptionStatus" | "ObjectLockRetainUntilDate" | "ObjectLockMode" | "ObjectLockLegalHoldStatus" | "IntelligentTieringAccessTier" | "BucketKeyStatus" | "ChecksumAlgorithm" | "ObjectAccessControlList" | "ObjectOwner" | "LifecycleExpirationDate")]?,
1420
1568
  schedule: {
1421
1569
  frequency: ("Daily" | "Weekly")
1422
1570
  }
@@ -1429,7 +1577,7 @@ module Aws
1429
1577
  def put_bucket_lifecycle: (
1430
1578
  bucket: ::String,
1431
1579
  ?content_md5: ::String,
1432
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1580
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1433
1581
  ?lifecycle_configuration: {
1434
1582
  rules: Array[
1435
1583
  {
@@ -1472,7 +1620,7 @@ module Aws
1472
1620
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#put_bucket_lifecycle_configuration-instance_method
1473
1621
  def put_bucket_lifecycle_configuration: (
1474
1622
  bucket: ::String,
1475
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1623
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1476
1624
  ?lifecycle_configuration: {
1477
1625
  rules: Array[
1478
1626
  {
@@ -1562,7 +1710,7 @@ module Aws
1562
1710
  }?
1563
1711
  },
1564
1712
  ?content_md5: ::String,
1565
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1713
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1566
1714
  ?expected_bucket_owner: ::String
1567
1715
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1568
1716
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
@@ -1600,7 +1748,7 @@ module Aws
1600
1748
  def put_bucket_notification: (
1601
1749
  bucket: ::String,
1602
1750
  ?content_md5: ::String,
1603
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1751
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1604
1752
  notification_configuration: {
1605
1753
  topic_configuration: {
1606
1754
  id: ::String?,
@@ -1700,7 +1848,8 @@ module Aws
1700
1848
  object_ownership: ("BucketOwnerPreferred" | "ObjectWriter" | "BucketOwnerEnforced")
1701
1849
  },
1702
1850
  ]
1703
- }
1851
+ },
1852
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1704
1853
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1705
1854
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1706
1855
 
@@ -1708,7 +1857,7 @@ module Aws
1708
1857
  def put_bucket_policy: (
1709
1858
  bucket: ::String,
1710
1859
  ?content_md5: ::String,
1711
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1860
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1712
1861
  ?confirm_remove_self_bucket_access: bool,
1713
1862
  policy: ::String,
1714
1863
  ?expected_bucket_owner: ::String
@@ -1719,7 +1868,7 @@ module Aws
1719
1868
  def put_bucket_replication: (
1720
1869
  bucket: ::String,
1721
1870
  ?content_md5: ::String,
1722
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1871
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1723
1872
  replication_configuration: {
1724
1873
  role: ::String,
1725
1874
  rules: Array[
@@ -1758,7 +1907,7 @@ module Aws
1758
1907
  destination: {
1759
1908
  bucket: ::String,
1760
1909
  account: ::String?,
1761
- storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")?,
1910
+ storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")?,
1762
1911
  access_control_translation: {
1763
1912
  owner: ("Destination")
1764
1913
  }?,
@@ -1793,7 +1942,7 @@ module Aws
1793
1942
  def put_bucket_request_payment: (
1794
1943
  bucket: ::String,
1795
1944
  ?content_md5: ::String,
1796
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1945
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1797
1946
  request_payment_configuration: {
1798
1947
  payer: ("Requester" | "BucketOwner")
1799
1948
  },
@@ -1805,7 +1954,7 @@ module Aws
1805
1954
  def put_bucket_tagging: (
1806
1955
  bucket: ::String,
1807
1956
  ?content_md5: ::String,
1808
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1957
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1809
1958
  tagging: {
1810
1959
  tag_set: Array[
1811
1960
  {
@@ -1822,7 +1971,7 @@ module Aws
1822
1971
  def put_bucket_versioning: (
1823
1972
  bucket: ::String,
1824
1973
  ?content_md5: ::String,
1825
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1974
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1826
1975
  ?mfa: ::String,
1827
1976
  versioning_configuration: {
1828
1977
  mfa_delete: ("Enabled" | "Disabled")?,
@@ -1836,7 +1985,7 @@ module Aws
1836
1985
  def put_bucket_website: (
1837
1986
  bucket: ::String,
1838
1987
  ?content_md5: ::String,
1839
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1988
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1840
1989
  website_configuration: {
1841
1990
  error_document: {
1842
1991
  key: ::String
@@ -1874,15 +2023,18 @@ module Aws
1874
2023
  def etag: () -> ::String
1875
2024
  def checksum_crc32: () -> ::String
1876
2025
  def checksum_crc32c: () -> ::String
2026
+ def checksum_crc64nvme: () -> ::String
1877
2027
  def checksum_sha1: () -> ::String
1878
2028
  def checksum_sha256: () -> ::String
1879
- def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
2029
+ def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
2030
+ def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
1880
2031
  def version_id: () -> ::String
1881
2032
  def sse_customer_algorithm: () -> ::String
1882
2033
  def sse_customer_key_md5: () -> ::String
1883
2034
  def ssekms_key_id: () -> ::String
1884
2035
  def ssekms_encryption_context: () -> ::String
1885
2036
  def bucket_key_enabled: () -> bool
2037
+ def size: () -> ::Integer
1886
2038
  def request_charged: () -> ("requester")
1887
2039
  end
1888
2040
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#put_object-instance_method
@@ -1897,21 +2049,24 @@ module Aws
1897
2049
  ?content_length: ::Integer,
1898
2050
  ?content_md5: ::String,
1899
2051
  ?content_type: ::String,
1900
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
2052
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1901
2053
  ?checksum_crc32: ::String,
1902
2054
  ?checksum_crc32c: ::String,
2055
+ ?checksum_crc64nvme: ::String,
1903
2056
  ?checksum_sha1: ::String,
1904
2057
  ?checksum_sha256: ::String,
1905
2058
  ?expires: ::Time,
2059
+ ?if_match: ::String,
1906
2060
  ?if_none_match: ::String,
1907
2061
  ?grant_full_control: ::String,
1908
2062
  ?grant_read: ::String,
1909
2063
  ?grant_read_acp: ::String,
1910
2064
  ?grant_write_acp: ::String,
1911
2065
  key: ::String,
2066
+ ?write_offset_bytes: ::Integer,
1912
2067
  ?metadata: Hash[::String, ::String],
1913
- ?server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse"),
1914
- ?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE"),
2068
+ ?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
2069
+ ?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP"),
1915
2070
  ?website_redirect_location: ::String,
1916
2071
  ?sse_customer_algorithm: ::String,
1917
2072
  ?sse_customer_key: ::String,
@@ -1955,7 +2110,7 @@ module Aws
1955
2110
  },
1956
2111
  bucket: ::String,
1957
2112
  ?content_md5: ::String,
1958
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
2113
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1959
2114
  ?grant_full_control: ::String,
1960
2115
  ?grant_read: ::String,
1961
2116
  ?grant_read_acp: ::String,
@@ -1982,7 +2137,7 @@ module Aws
1982
2137
  ?request_payer: ("requester"),
1983
2138
  ?version_id: ::String,
1984
2139
  ?content_md5: ::String,
1985
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
2140
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1986
2141
  ?expected_bucket_owner: ::String
1987
2142
  ) -> _PutObjectLegalHoldResponseSuccess
1988
2143
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutObjectLegalHoldResponseSuccess
@@ -2007,7 +2162,7 @@ module Aws
2007
2162
  ?request_payer: ("requester"),
2008
2163
  ?token: ::String,
2009
2164
  ?content_md5: ::String,
2010
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
2165
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
2011
2166
  ?expected_bucket_owner: ::String
2012
2167
  ) -> _PutObjectLockConfigurationResponseSuccess
2013
2168
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutObjectLockConfigurationResponseSuccess
@@ -2028,7 +2183,7 @@ module Aws
2028
2183
  ?version_id: ::String,
2029
2184
  ?bypass_governance_retention: bool,
2030
2185
  ?content_md5: ::String,
2031
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
2186
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
2032
2187
  ?expected_bucket_owner: ::String
2033
2188
  ) -> _PutObjectRetentionResponseSuccess
2034
2189
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutObjectRetentionResponseSuccess
@@ -2043,7 +2198,7 @@ module Aws
2043
2198
  key: ::String,
2044
2199
  ?version_id: ::String,
2045
2200
  ?content_md5: ::String,
2046
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
2201
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
2047
2202
  tagging: {
2048
2203
  tag_set: Array[
2049
2204
  {
@@ -2061,7 +2216,7 @@ module Aws
2061
2216
  def put_public_access_block: (
2062
2217
  bucket: ::String,
2063
2218
  ?content_md5: ::String,
2064
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
2219
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
2065
2220
  public_access_block_configuration: {
2066
2221
  block_public_acls: bool?,
2067
2222
  ignore_public_acls: bool?,
@@ -2072,6 +2227,26 @@ module Aws
2072
2227
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
2073
2228
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
2074
2229
 
2230
+ interface _RenameObjectResponseSuccess
2231
+ include ::Seahorse::Client::_ResponseSuccess[Types::RenameObjectOutput]
2232
+ end
2233
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#rename_object-instance_method
2234
+ def rename_object: (
2235
+ bucket: ::String,
2236
+ key: ::String,
2237
+ rename_source: ::String,
2238
+ ?destination_if_match: ::String,
2239
+ ?destination_if_none_match: ::String,
2240
+ ?destination_if_modified_since: ::Time,
2241
+ ?destination_if_unmodified_since: ::Time,
2242
+ ?source_if_match: ::String,
2243
+ ?source_if_none_match: ::String,
2244
+ ?source_if_modified_since: ::Time,
2245
+ ?source_if_unmodified_since: ::Time,
2246
+ ?client_token: ::String
2247
+ ) -> _RenameObjectResponseSuccess
2248
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RenameObjectResponseSuccess
2249
+
2075
2250
  interface _RestoreObjectResponseSuccess
2076
2251
  include ::Seahorse::Client::_ResponseSuccess[Types::RestoreObjectOutput]
2077
2252
  def request_charged: () -> ("requester")
@@ -2128,7 +2303,7 @@ module Aws
2128
2303
  bucket_name: ::String,
2129
2304
  prefix: ::String,
2130
2305
  encryption: {
2131
- encryption_type: ("AES256" | "aws:kms" | "aws:kms:dsse"),
2306
+ encryption_type: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
2132
2307
  kms_key_id: ::String?,
2133
2308
  kms_context: ::String?
2134
2309
  }?,
@@ -2159,12 +2334,12 @@ module Aws
2159
2334
  value: ::String?
2160
2335
  },
2161
2336
  ]?,
2162
- storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")?
2337
+ storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")?
2163
2338
  }?
2164
2339
  }?
2165
2340
  },
2166
2341
  ?request_payer: ("requester"),
2167
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
2342
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
2168
2343
  ?expected_bucket_owner: ::String
2169
2344
  ) -> _RestoreObjectResponseSuccess
2170
2345
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreObjectResponseSuccess
@@ -2222,12 +2397,44 @@ module Aws
2222
2397
  ) ?{ (*untyped) -> void } -> _SelectObjectContentResponseSuccess
2223
2398
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _SelectObjectContentResponseSuccess
2224
2399
 
2400
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#update_bucket_metadata_inventory_table_configuration-instance_method
2401
+ def update_bucket_metadata_inventory_table_configuration: (
2402
+ bucket: ::String,
2403
+ ?content_md5: ::String,
2404
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
2405
+ inventory_table_configuration: {
2406
+ configuration_state: ("ENABLED" | "DISABLED"),
2407
+ encryption_configuration: {
2408
+ sse_algorithm: ("aws:kms" | "AES256"),
2409
+ kms_key_arn: ::String?
2410
+ }?
2411
+ },
2412
+ ?expected_bucket_owner: ::String
2413
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
2414
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
2415
+
2416
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#update_bucket_metadata_journal_table_configuration-instance_method
2417
+ def update_bucket_metadata_journal_table_configuration: (
2418
+ bucket: ::String,
2419
+ ?content_md5: ::String,
2420
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
2421
+ journal_table_configuration: {
2422
+ record_expiration: {
2423
+ expiration: ("ENABLED" | "DISABLED"),
2424
+ days: ::Integer?
2425
+ }
2426
+ },
2427
+ ?expected_bucket_owner: ::String
2428
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
2429
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
2430
+
2225
2431
  interface _UploadPartResponseSuccess
2226
2432
  include ::Seahorse::Client::_ResponseSuccess[Types::UploadPartOutput]
2227
- def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
2433
+ def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
2228
2434
  def etag: () -> ::String
2229
2435
  def checksum_crc32: () -> ::String
2230
2436
  def checksum_crc32c: () -> ::String
2437
+ def checksum_crc64nvme: () -> ::String
2231
2438
  def checksum_sha1: () -> ::String
2232
2439
  def checksum_sha256: () -> ::String
2233
2440
  def sse_customer_algorithm: () -> ::String
@@ -2242,9 +2449,10 @@ module Aws
2242
2449
  bucket: ::String,
2243
2450
  ?content_length: ::Integer,
2244
2451
  ?content_md5: ::String,
2245
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
2452
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
2246
2453
  ?checksum_crc32: ::String,
2247
2454
  ?checksum_crc32c: ::String,
2455
+ ?checksum_crc64nvme: ::String,
2248
2456
  ?checksum_sha1: ::String,
2249
2457
  ?checksum_sha256: ::String,
2250
2458
  key: ::String,
@@ -2262,7 +2470,7 @@ module Aws
2262
2470
  include ::Seahorse::Client::_ResponseSuccess[Types::UploadPartCopyOutput]
2263
2471
  def copy_source_version_id: () -> ::String
2264
2472
  def copy_part_result: () -> Types::CopyPartResult
2265
- def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
2473
+ def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
2266
2474
  def sse_customer_algorithm: () -> ::String
2267
2475
  def sse_customer_key_md5: () -> ::String
2268
2476
  def ssekms_key_id: () -> ::String
@@ -2311,6 +2519,7 @@ module Aws
2311
2519
  ?content_type: ::String,
2312
2520
  ?checksum_crc32: ::String,
2313
2521
  ?checksum_crc32c: ::String,
2522
+ ?checksum_crc64nvme: ::String,
2314
2523
  ?checksum_sha1: ::String,
2315
2524
  ?checksum_sha256: ::String,
2316
2525
  ?delete_marker: bool,
@@ -2327,11 +2536,11 @@ module Aws
2327
2536
  ?replication_status: ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED"),
2328
2537
  ?request_charged: ("requester"),
2329
2538
  ?restore: ::String,
2330
- ?server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse"),
2539
+ ?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
2331
2540
  ?sse_customer_algorithm: ::String,
2332
2541
  ?ssekms_key_id: ::String,
2333
2542
  ?sse_customer_key_md5: ::String,
2334
- ?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE"),
2543
+ ?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP"),
2335
2544
  ?tag_count: ::Integer,
2336
2545
  ?version_id: ::String,
2337
2546
  ?bucket_key_enabled: bool