aws-sdk-s3 1.167.0 → 1.194.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 (64) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +158 -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 +6 -5
  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 +9 -9
  14. data/lib/aws-sdk-s3/bucket_website.rb +3 -3
  15. data/lib/aws-sdk-s3/client.rb +3670 -1773
  16. data/lib/aws-sdk-s3/client_api.rb +558 -160
  17. data/lib/aws-sdk-s3/endpoint_parameters.rb +13 -18
  18. data/lib/aws-sdk-s3/endpoint_provider.rb +400 -276
  19. data/lib/aws-sdk-s3/endpoints.rb +529 -1403
  20. data/lib/aws-sdk-s3/errors.rb +55 -0
  21. data/lib/aws-sdk-s3/file_downloader.rb +14 -31
  22. data/lib/aws-sdk-s3/legacy_signer.rb +2 -1
  23. data/lib/aws-sdk-s3/multipart_file_uploader.rb +31 -13
  24. data/lib/aws-sdk-s3/multipart_upload.rb +83 -6
  25. data/lib/aws-sdk-s3/multipart_upload_part.rb +50 -34
  26. data/lib/aws-sdk-s3/object.rb +326 -129
  27. data/lib/aws-sdk-s3/object_acl.rb +11 -5
  28. data/lib/aws-sdk-s3/object_multipart_copier.rb +2 -1
  29. data/lib/aws-sdk-s3/object_summary.rb +240 -96
  30. data/lib/aws-sdk-s3/object_version.rb +60 -13
  31. data/lib/aws-sdk-s3/plugins/checksum_algorithm.rb +31 -0
  32. data/lib/aws-sdk-s3/plugins/endpoints.rb +1 -204
  33. data/lib/aws-sdk-s3/plugins/express_session_auth.rb +11 -20
  34. data/lib/aws-sdk-s3/plugins/http_200_errors.rb +3 -3
  35. data/lib/aws-sdk-s3/plugins/md5s.rb +10 -71
  36. data/lib/aws-sdk-s3/plugins/streaming_retry.rb +5 -7
  37. data/lib/aws-sdk-s3/plugins/url_encoded_keys.rb +2 -1
  38. data/lib/aws-sdk-s3/presigner.rb +5 -5
  39. data/lib/aws-sdk-s3/resource.rb +41 -10
  40. data/lib/aws-sdk-s3/types.rb +3423 -1093
  41. data/lib/aws-sdk-s3.rb +1 -1
  42. data/sig/bucket.rbs +27 -9
  43. data/sig/bucket_acl.rbs +1 -1
  44. data/sig/bucket_cors.rbs +1 -1
  45. data/sig/bucket_lifecycle.rbs +1 -1
  46. data/sig/bucket_lifecycle_configuration.rbs +1 -1
  47. data/sig/bucket_logging.rbs +1 -1
  48. data/sig/bucket_policy.rbs +1 -1
  49. data/sig/bucket_request_payment.rbs +1 -1
  50. data/sig/bucket_tagging.rbs +1 -1
  51. data/sig/bucket_versioning.rbs +3 -3
  52. data/sig/bucket_website.rbs +1 -1
  53. data/sig/client.rbs +249 -68
  54. data/sig/errors.rbs +10 -0
  55. data/sig/multipart_upload.rbs +12 -3
  56. data/sig/multipart_upload_part.rbs +5 -1
  57. data/sig/object.rbs +35 -16
  58. data/sig/object_acl.rbs +1 -1
  59. data/sig/object_summary.rbs +26 -16
  60. data/sig/object_version.rbs +9 -3
  61. data/sig/resource.rbs +15 -4
  62. data/sig/types.rbs +339 -65
  63. metadata +7 -10
  64. 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,
@@ -189,8 +200,8 @@ module Aws
189
200
  ?metadata: Hash[::String, ::String],
190
201
  ?metadata_directive: ("COPY" | "REPLACE"),
191
202
  ?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"),
203
+ ?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
204
+ ?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS"),
194
205
  ?website_redirect_location: ::String,
195
206
  ?sse_customer_algorithm: ::String,
196
207
  ?sse_customer_key: ::String,
@@ -214,21 +225,28 @@ module Aws
214
225
  interface _CreateBucketResponseSuccess
215
226
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateBucketOutput]
216
227
  def location: () -> ::String
228
+ def bucket_arn: () -> ::String
217
229
  end
218
230
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#create_bucket-instance_method
219
231
  def create_bucket: (
220
232
  ?acl: ("private" | "public-read" | "public-read-write" | "authenticated-read"),
221
233
  bucket: ::String,
222
234
  ?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")?,
235
+ 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
236
  location: {
225
- type: ("AvailabilityZone")?,
237
+ type: ("AvailabilityZone" | "LocalZone")?,
226
238
  name: ::String?
227
239
  }?,
228
240
  bucket: {
229
- data_redundancy: ("SingleAvailabilityZone")?,
241
+ data_redundancy: ("SingleAvailabilityZone" | "SingleLocalZone")?,
230
242
  type: ("Directory")?
231
- }?
243
+ }?,
244
+ tags: Array[
245
+ {
246
+ key: ::String,
247
+ value: ::String
248
+ },
249
+ ]?
232
250
  },
233
251
  ?grant_full_control: ::String,
234
252
  ?grant_read: ::String,
@@ -240,6 +258,49 @@ module Aws
240
258
  ) -> _CreateBucketResponseSuccess
241
259
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateBucketResponseSuccess
242
260
 
261
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#create_bucket_metadata_configuration-instance_method
262
+ def create_bucket_metadata_configuration: (
263
+ bucket: ::String,
264
+ ?content_md5: ::String,
265
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
266
+ metadata_configuration: {
267
+ journal_table_configuration: {
268
+ record_expiration: {
269
+ expiration: ("ENABLED" | "DISABLED"),
270
+ days: ::Integer?
271
+ },
272
+ encryption_configuration: {
273
+ sse_algorithm: ("aws:kms" | "AES256"),
274
+ kms_key_arn: ::String?
275
+ }?
276
+ },
277
+ inventory_table_configuration: {
278
+ configuration_state: ("ENABLED" | "DISABLED"),
279
+ encryption_configuration: {
280
+ sse_algorithm: ("aws:kms" | "AES256"),
281
+ kms_key_arn: ::String?
282
+ }?
283
+ }?
284
+ },
285
+ ?expected_bucket_owner: ::String
286
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
287
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
288
+
289
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#create_bucket_metadata_table_configuration-instance_method
290
+ def create_bucket_metadata_table_configuration: (
291
+ bucket: ::String,
292
+ ?content_md5: ::String,
293
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
294
+ metadata_table_configuration: {
295
+ s3_tables_destination: {
296
+ table_bucket_arn: ::String,
297
+ table_name: ::String
298
+ }
299
+ },
300
+ ?expected_bucket_owner: ::String
301
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
302
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
303
+
243
304
  interface _CreateMultipartUploadResponseSuccess
244
305
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateMultipartUploadOutput]
245
306
  def abort_date: () -> ::Time
@@ -247,14 +308,15 @@ module Aws
247
308
  def bucket: () -> ::String
248
309
  def key: () -> ::String
249
310
  def upload_id: () -> ::String
250
- def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
311
+ def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
251
312
  def sse_customer_algorithm: () -> ::String
252
313
  def sse_customer_key_md5: () -> ::String
253
314
  def ssekms_key_id: () -> ::String
254
315
  def ssekms_encryption_context: () -> ::String
255
316
  def bucket_key_enabled: () -> bool
256
317
  def request_charged: () -> ("requester")
257
- def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
318
+ def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
319
+ def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
258
320
  end
259
321
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#create_multipart_upload-instance_method
260
322
  def create_multipart_upload: (
@@ -272,8 +334,8 @@ module Aws
272
334
  ?grant_write_acp: ::String,
273
335
  key: ::String,
274
336
  ?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"),
337
+ ?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
338
+ ?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS"),
277
339
  ?website_redirect_location: ::String,
278
340
  ?sse_customer_algorithm: ::String,
279
341
  ?sse_customer_key: ::String,
@@ -287,13 +349,14 @@ module Aws
287
349
  ?object_lock_retain_until_date: ::Time,
288
350
  ?object_lock_legal_hold_status: ("ON" | "OFF"),
289
351
  ?expected_bucket_owner: ::String,
290
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
352
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
353
+ ?checksum_type: ("COMPOSITE" | "FULL_OBJECT")
291
354
  ) -> _CreateMultipartUploadResponseSuccess
292
355
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMultipartUploadResponseSuccess
293
356
 
294
357
  interface _CreateSessionResponseSuccess
295
358
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateSessionOutput]
296
- def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
359
+ def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
297
360
  def ssekms_key_id: () -> ::String
298
361
  def ssekms_encryption_context: () -> ::String
299
362
  def bucket_key_enabled: () -> bool
@@ -303,7 +366,7 @@ module Aws
303
366
  def create_session: (
304
367
  ?session_mode: ("ReadOnly" | "ReadWrite"),
305
368
  bucket: ::String,
306
- ?server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse"),
369
+ ?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
307
370
  ?ssekms_key_id: ::String,
308
371
  ?ssekms_encryption_context: ::String,
309
372
  ?bucket_key_enabled: bool
@@ -342,7 +405,8 @@ module Aws
342
405
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#delete_bucket_intelligent_tiering_configuration-instance_method
343
406
  def delete_bucket_intelligent_tiering_configuration: (
344
407
  bucket: ::String,
345
- id: ::String
408
+ id: ::String,
409
+ ?expected_bucket_owner: ::String
346
410
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
347
411
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
348
412
 
@@ -361,6 +425,20 @@ module Aws
361
425
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
362
426
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
363
427
 
428
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#delete_bucket_metadata_configuration-instance_method
429
+ def delete_bucket_metadata_configuration: (
430
+ bucket: ::String,
431
+ ?expected_bucket_owner: ::String
432
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
433
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
434
+
435
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#delete_bucket_metadata_table_configuration-instance_method
436
+ def delete_bucket_metadata_table_configuration: (
437
+ bucket: ::String,
438
+ ?expected_bucket_owner: ::String
439
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
440
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
441
+
364
442
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#delete_bucket_metrics_configuration-instance_method
365
443
  def delete_bucket_metrics_configuration: (
366
444
  bucket: ::String,
@@ -418,7 +496,10 @@ module Aws
418
496
  ?version_id: ::String,
419
497
  ?request_payer: ("requester"),
420
498
  ?bypass_governance_retention: bool,
421
- ?expected_bucket_owner: ::String
499
+ ?expected_bucket_owner: ::String,
500
+ ?if_match: ::String,
501
+ ?if_match_last_modified_time: ::Time,
502
+ ?if_match_size: ::Integer
422
503
  ) -> _DeleteObjectResponseSuccess
423
504
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteObjectResponseSuccess
424
505
 
@@ -448,7 +529,10 @@ module Aws
448
529
  objects: Array[
449
530
  {
450
531
  key: ::String,
451
- version_id: ::String?
532
+ version_id: ::String?,
533
+ etag: ::String?,
534
+ last_modified_time: ::Time?,
535
+ size: ::Integer?
452
536
  },
453
537
  ],
454
538
  quiet: bool?
@@ -457,7 +541,7 @@ module Aws
457
541
  ?request_payer: ("requester"),
458
542
  ?bypass_governance_retention: bool,
459
543
  ?expected_bucket_owner: ::String,
460
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
544
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
461
545
  ) -> _DeleteObjectsResponseSuccess
462
546
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteObjectsResponseSuccess
463
547
 
@@ -534,7 +618,8 @@ module Aws
534
618
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#get_bucket_intelligent_tiering_configuration-instance_method
535
619
  def get_bucket_intelligent_tiering_configuration: (
536
620
  bucket: ::String,
537
- id: ::String
621
+ id: ::String,
622
+ ?expected_bucket_owner: ::String
538
623
  ) -> _GetBucketIntelligentTieringConfigurationResponseSuccess
539
624
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBucketIntelligentTieringConfigurationResponseSuccess
540
625
 
@@ -575,7 +660,7 @@ module Aws
575
660
 
576
661
  interface _GetBucketLocationResponseSuccess
577
662
  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")
663
+ 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
664
  end
580
665
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#get_bucket_location-instance_method
581
666
  def get_bucket_location: (
@@ -595,6 +680,28 @@ module Aws
595
680
  ) -> _GetBucketLoggingResponseSuccess
596
681
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBucketLoggingResponseSuccess
597
682
 
683
+ interface _GetBucketMetadataConfigurationResponseSuccess
684
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetBucketMetadataConfigurationOutput]
685
+ def get_bucket_metadata_configuration_result: () -> Types::GetBucketMetadataConfigurationResult
686
+ end
687
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#get_bucket_metadata_configuration-instance_method
688
+ def get_bucket_metadata_configuration: (
689
+ bucket: ::String,
690
+ ?expected_bucket_owner: ::String
691
+ ) -> _GetBucketMetadataConfigurationResponseSuccess
692
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBucketMetadataConfigurationResponseSuccess
693
+
694
+ interface _GetBucketMetadataTableConfigurationResponseSuccess
695
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetBucketMetadataTableConfigurationOutput]
696
+ def get_bucket_metadata_table_configuration_result: () -> Types::GetBucketMetadataTableConfigurationResult
697
+ end
698
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#get_bucket_metadata_table_configuration-instance_method
699
+ def get_bucket_metadata_table_configuration: (
700
+ bucket: ::String,
701
+ ?expected_bucket_owner: ::String
702
+ ) -> _GetBucketMetadataTableConfigurationResponseSuccess
703
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBucketMetadataTableConfigurationResponseSuccess
704
+
598
705
  interface _GetBucketMetricsConfigurationResponseSuccess
599
706
  include ::Seahorse::Client::_ResponseSuccess[Types::GetBucketMetricsConfigurationOutput]
600
707
  def metrics_configuration: () -> Types::MetricsConfiguration
@@ -738,8 +845,10 @@ module Aws
738
845
  def etag: () -> ::String
739
846
  def checksum_crc32: () -> ::String
740
847
  def checksum_crc32c: () -> ::String
848
+ def checksum_crc64nvme: () -> ::String
741
849
  def checksum_sha1: () -> ::String
742
850
  def checksum_sha256: () -> ::String
851
+ def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
743
852
  def missing_meta: () -> ::Integer
744
853
  def version_id: () -> ::String
745
854
  def cache_control: () -> ::String
@@ -751,13 +860,13 @@ module Aws
751
860
  def expires: () -> ::Time
752
861
  def expires_string: () -> ::String
753
862
  def website_redirect_location: () -> ::String
754
- def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
863
+ def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
755
864
  def metadata: () -> ::Hash[::String, ::String]
756
865
  def sse_customer_algorithm: () -> ::String
757
866
  def sse_customer_key_md5: () -> ::String
758
867
  def ssekms_key_id: () -> ::String
759
868
  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")
869
+ def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
761
870
  def request_charged: () -> ("requester")
762
871
  def replication_status: () -> ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
763
872
  def parts_count: () -> ::Integer
@@ -817,7 +926,7 @@ module Aws
817
926
  def etag: () -> ::String
818
927
  def checksum: () -> Types::Checksum
819
928
  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")
929
+ def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
821
930
  def object_size: () -> ::Integer
822
931
  end
823
932
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#get_object_attributes-instance_method
@@ -917,7 +1026,8 @@ module Aws
917
1026
 
918
1027
  interface _HeadBucketResponseSuccess
919
1028
  include ::Seahorse::Client::_ResponseSuccess[Types::HeadBucketOutput]
920
- def bucket_location_type: () -> ("AvailabilityZone")
1029
+ def bucket_arn: () -> ::String
1030
+ def bucket_location_type: () -> ("AvailabilityZone" | "LocalZone")
921
1031
  def bucket_location_name: () -> ::String
922
1032
  def bucket_region: () -> ::String
923
1033
  def access_point_alias: () -> bool
@@ -940,8 +1050,10 @@ module Aws
940
1050
  def content_length: () -> ::Integer
941
1051
  def checksum_crc32: () -> ::String
942
1052
  def checksum_crc32c: () -> ::String
1053
+ def checksum_crc64nvme: () -> ::String
943
1054
  def checksum_sha1: () -> ::String
944
1055
  def checksum_sha256: () -> ::String
1056
+ def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
945
1057
  def etag: () -> ::String
946
1058
  def missing_meta: () -> ::Integer
947
1059
  def version_id: () -> ::String
@@ -950,19 +1062,21 @@ module Aws
950
1062
  def content_encoding: () -> ::String
951
1063
  def content_language: () -> ::String
952
1064
  def content_type: () -> ::String
1065
+ def content_range: () -> ::String
953
1066
  def expires: () -> ::Time
954
1067
  def expires_string: () -> ::String
955
1068
  def website_redirect_location: () -> ::String
956
- def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
1069
+ def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
957
1070
  def metadata: () -> ::Hash[::String, ::String]
958
1071
  def sse_customer_algorithm: () -> ::String
959
1072
  def sse_customer_key_md5: () -> ::String
960
1073
  def ssekms_key_id: () -> ::String
961
1074
  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")
1075
+ def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
963
1076
  def request_charged: () -> ("requester")
964
1077
  def replication_status: () -> ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
965
1078
  def parts_count: () -> ::Integer
1079
+ def tag_count: () -> ::Integer
966
1080
  def object_lock_mode: () -> ("GOVERNANCE" | "COMPLIANCE")
967
1081
  def object_lock_retain_until_date: () -> ::Time
968
1082
  def object_lock_legal_hold_status: () -> ("ON" | "OFF")
@@ -1018,7 +1132,8 @@ module Aws
1018
1132
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#list_bucket_intelligent_tiering_configurations-instance_method
1019
1133
  def list_bucket_intelligent_tiering_configurations: (
1020
1134
  bucket: ::String,
1021
- ?continuation_token: ::String
1135
+ ?continuation_token: ::String,
1136
+ ?expected_bucket_owner: ::String
1022
1137
  ) -> _ListBucketIntelligentTieringConfigurationsResponseSuccess
1023
1138
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBucketIntelligentTieringConfigurationsResponseSuccess
1024
1139
 
@@ -1057,11 +1172,14 @@ module Aws
1057
1172
  def buckets: () -> ::Array[Types::Bucket]
1058
1173
  def owner: () -> Types::Owner
1059
1174
  def continuation_token: () -> ::String
1175
+ def prefix: () -> ::String
1060
1176
  end
1061
1177
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#list_buckets-instance_method
1062
1178
  def list_buckets: (
1063
1179
  ?max_buckets: ::Integer,
1064
- ?continuation_token: ::String
1180
+ ?continuation_token: ::String,
1181
+ ?prefix: ::String,
1182
+ ?bucket_region: ::String
1065
1183
  ) -> _ListBucketsResponseSuccess
1066
1184
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBucketsResponseSuccess
1067
1185
 
@@ -1213,9 +1331,10 @@ module Aws
1213
1331
  def parts: () -> ::Array[Types::Part]
1214
1332
  def initiator: () -> Types::Initiator
1215
1333
  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")
1334
+ def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
1217
1335
  def request_charged: () -> ("requester")
1218
- def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
1336
+ def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1337
+ def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
1219
1338
  end
1220
1339
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#list_parts-instance_method
1221
1340
  def list_parts: (
@@ -1239,7 +1358,7 @@ module Aws
1239
1358
  status: ("Enabled" | "Suspended")?
1240
1359
  },
1241
1360
  ?expected_bucket_owner: ::String,
1242
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
1361
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1243
1362
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1244
1363
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1245
1364
 
@@ -1266,7 +1385,7 @@ module Aws
1266
1385
  },
1267
1386
  bucket: ::String,
1268
1387
  ?content_md5: ::String,
1269
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1388
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1270
1389
  ?grant_full_control: ::String,
1271
1390
  ?grant_read: ::String,
1272
1391
  ?grant_read_acp: ::String,
@@ -1332,7 +1451,7 @@ module Aws
1332
1451
  ]
1333
1452
  },
1334
1453
  ?content_md5: ::String,
1335
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1454
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1336
1455
  ?expected_bucket_owner: ::String
1337
1456
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1338
1457
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
@@ -1341,12 +1460,12 @@ module Aws
1341
1460
  def put_bucket_encryption: (
1342
1461
  bucket: ::String,
1343
1462
  ?content_md5: ::String,
1344
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1463
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1345
1464
  server_side_encryption_configuration: {
1346
1465
  rules: Array[
1347
1466
  {
1348
1467
  apply_server_side_encryption_by_default: {
1349
- sse_algorithm: ("AES256" | "aws:kms" | "aws:kms:dsse"),
1468
+ sse_algorithm: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
1350
1469
  kms_master_key_id: ::String?
1351
1470
  }?,
1352
1471
  bucket_key_enabled: bool?
@@ -1361,6 +1480,7 @@ module Aws
1361
1480
  def put_bucket_intelligent_tiering_configuration: (
1362
1481
  bucket: ::String,
1363
1482
  id: ::String,
1483
+ ?expected_bucket_owner: ::String,
1364
1484
  intelligent_tiering_configuration: {
1365
1485
  id: ::String,
1366
1486
  filter: {
@@ -1429,7 +1549,7 @@ module Aws
1429
1549
  def put_bucket_lifecycle: (
1430
1550
  bucket: ::String,
1431
1551
  ?content_md5: ::String,
1432
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1552
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1433
1553
  ?lifecycle_configuration: {
1434
1554
  rules: Array[
1435
1555
  {
@@ -1472,7 +1592,7 @@ module Aws
1472
1592
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#put_bucket_lifecycle_configuration-instance_method
1473
1593
  def put_bucket_lifecycle_configuration: (
1474
1594
  bucket: ::String,
1475
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1595
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1476
1596
  ?lifecycle_configuration: {
1477
1597
  rules: Array[
1478
1598
  {
@@ -1562,7 +1682,7 @@ module Aws
1562
1682
  }?
1563
1683
  },
1564
1684
  ?content_md5: ::String,
1565
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1685
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1566
1686
  ?expected_bucket_owner: ::String
1567
1687
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1568
1688
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
@@ -1600,7 +1720,7 @@ module Aws
1600
1720
  def put_bucket_notification: (
1601
1721
  bucket: ::String,
1602
1722
  ?content_md5: ::String,
1603
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1723
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1604
1724
  notification_configuration: {
1605
1725
  topic_configuration: {
1606
1726
  id: ::String?,
@@ -1700,7 +1820,8 @@ module Aws
1700
1820
  object_ownership: ("BucketOwnerPreferred" | "ObjectWriter" | "BucketOwnerEnforced")
1701
1821
  },
1702
1822
  ]
1703
- }
1823
+ },
1824
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1704
1825
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1705
1826
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1706
1827
 
@@ -1708,7 +1829,7 @@ module Aws
1708
1829
  def put_bucket_policy: (
1709
1830
  bucket: ::String,
1710
1831
  ?content_md5: ::String,
1711
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1832
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1712
1833
  ?confirm_remove_self_bucket_access: bool,
1713
1834
  policy: ::String,
1714
1835
  ?expected_bucket_owner: ::String
@@ -1719,7 +1840,7 @@ module Aws
1719
1840
  def put_bucket_replication: (
1720
1841
  bucket: ::String,
1721
1842
  ?content_md5: ::String,
1722
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1843
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1723
1844
  replication_configuration: {
1724
1845
  role: ::String,
1725
1846
  rules: Array[
@@ -1758,7 +1879,7 @@ module Aws
1758
1879
  destination: {
1759
1880
  bucket: ::String,
1760
1881
  account: ::String?,
1761
- storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")?,
1882
+ storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")?,
1762
1883
  access_control_translation: {
1763
1884
  owner: ("Destination")
1764
1885
  }?,
@@ -1793,7 +1914,7 @@ module Aws
1793
1914
  def put_bucket_request_payment: (
1794
1915
  bucket: ::String,
1795
1916
  ?content_md5: ::String,
1796
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1917
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1797
1918
  request_payment_configuration: {
1798
1919
  payer: ("Requester" | "BucketOwner")
1799
1920
  },
@@ -1805,7 +1926,7 @@ module Aws
1805
1926
  def put_bucket_tagging: (
1806
1927
  bucket: ::String,
1807
1928
  ?content_md5: ::String,
1808
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1929
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1809
1930
  tagging: {
1810
1931
  tag_set: Array[
1811
1932
  {
@@ -1822,7 +1943,7 @@ module Aws
1822
1943
  def put_bucket_versioning: (
1823
1944
  bucket: ::String,
1824
1945
  ?content_md5: ::String,
1825
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1946
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1826
1947
  ?mfa: ::String,
1827
1948
  versioning_configuration: {
1828
1949
  mfa_delete: ("Enabled" | "Disabled")?,
@@ -1836,7 +1957,7 @@ module Aws
1836
1957
  def put_bucket_website: (
1837
1958
  bucket: ::String,
1838
1959
  ?content_md5: ::String,
1839
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1960
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1840
1961
  website_configuration: {
1841
1962
  error_document: {
1842
1963
  key: ::String
@@ -1874,15 +1995,18 @@ module Aws
1874
1995
  def etag: () -> ::String
1875
1996
  def checksum_crc32: () -> ::String
1876
1997
  def checksum_crc32c: () -> ::String
1998
+ def checksum_crc64nvme: () -> ::String
1877
1999
  def checksum_sha1: () -> ::String
1878
2000
  def checksum_sha256: () -> ::String
1879
- def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
2001
+ def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
2002
+ def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
1880
2003
  def version_id: () -> ::String
1881
2004
  def sse_customer_algorithm: () -> ::String
1882
2005
  def sse_customer_key_md5: () -> ::String
1883
2006
  def ssekms_key_id: () -> ::String
1884
2007
  def ssekms_encryption_context: () -> ::String
1885
2008
  def bucket_key_enabled: () -> bool
2009
+ def size: () -> ::Integer
1886
2010
  def request_charged: () -> ("requester")
1887
2011
  end
1888
2012
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#put_object-instance_method
@@ -1897,21 +2021,24 @@ module Aws
1897
2021
  ?content_length: ::Integer,
1898
2022
  ?content_md5: ::String,
1899
2023
  ?content_type: ::String,
1900
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
2024
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1901
2025
  ?checksum_crc32: ::String,
1902
2026
  ?checksum_crc32c: ::String,
2027
+ ?checksum_crc64nvme: ::String,
1903
2028
  ?checksum_sha1: ::String,
1904
2029
  ?checksum_sha256: ::String,
1905
2030
  ?expires: ::Time,
2031
+ ?if_match: ::String,
1906
2032
  ?if_none_match: ::String,
1907
2033
  ?grant_full_control: ::String,
1908
2034
  ?grant_read: ::String,
1909
2035
  ?grant_read_acp: ::String,
1910
2036
  ?grant_write_acp: ::String,
1911
2037
  key: ::String,
2038
+ ?write_offset_bytes: ::Integer,
1912
2039
  ?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"),
2040
+ ?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
2041
+ ?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS"),
1915
2042
  ?website_redirect_location: ::String,
1916
2043
  ?sse_customer_algorithm: ::String,
1917
2044
  ?sse_customer_key: ::String,
@@ -1955,7 +2082,7 @@ module Aws
1955
2082
  },
1956
2083
  bucket: ::String,
1957
2084
  ?content_md5: ::String,
1958
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
2085
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1959
2086
  ?grant_full_control: ::String,
1960
2087
  ?grant_read: ::String,
1961
2088
  ?grant_read_acp: ::String,
@@ -1982,7 +2109,7 @@ module Aws
1982
2109
  ?request_payer: ("requester"),
1983
2110
  ?version_id: ::String,
1984
2111
  ?content_md5: ::String,
1985
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
2112
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1986
2113
  ?expected_bucket_owner: ::String
1987
2114
  ) -> _PutObjectLegalHoldResponseSuccess
1988
2115
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutObjectLegalHoldResponseSuccess
@@ -2007,7 +2134,7 @@ module Aws
2007
2134
  ?request_payer: ("requester"),
2008
2135
  ?token: ::String,
2009
2136
  ?content_md5: ::String,
2010
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
2137
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
2011
2138
  ?expected_bucket_owner: ::String
2012
2139
  ) -> _PutObjectLockConfigurationResponseSuccess
2013
2140
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutObjectLockConfigurationResponseSuccess
@@ -2028,7 +2155,7 @@ module Aws
2028
2155
  ?version_id: ::String,
2029
2156
  ?bypass_governance_retention: bool,
2030
2157
  ?content_md5: ::String,
2031
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
2158
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
2032
2159
  ?expected_bucket_owner: ::String
2033
2160
  ) -> _PutObjectRetentionResponseSuccess
2034
2161
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutObjectRetentionResponseSuccess
@@ -2043,7 +2170,7 @@ module Aws
2043
2170
  key: ::String,
2044
2171
  ?version_id: ::String,
2045
2172
  ?content_md5: ::String,
2046
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
2173
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
2047
2174
  tagging: {
2048
2175
  tag_set: Array[
2049
2176
  {
@@ -2061,7 +2188,7 @@ module Aws
2061
2188
  def put_public_access_block: (
2062
2189
  bucket: ::String,
2063
2190
  ?content_md5: ::String,
2064
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
2191
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
2065
2192
  public_access_block_configuration: {
2066
2193
  block_public_acls: bool?,
2067
2194
  ignore_public_acls: bool?,
@@ -2072,6 +2199,26 @@ module Aws
2072
2199
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
2073
2200
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
2074
2201
 
2202
+ interface _RenameObjectResponseSuccess
2203
+ include ::Seahorse::Client::_ResponseSuccess[Types::RenameObjectOutput]
2204
+ end
2205
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#rename_object-instance_method
2206
+ def rename_object: (
2207
+ bucket: ::String,
2208
+ key: ::String,
2209
+ rename_source: ::String,
2210
+ ?destination_if_match: ::String,
2211
+ ?destination_if_none_match: ::String,
2212
+ ?destination_if_modified_since: ::Time,
2213
+ ?destination_if_unmodified_since: ::Time,
2214
+ ?source_if_match: ::String,
2215
+ ?source_if_none_match: ::String,
2216
+ ?source_if_modified_since: ::Time,
2217
+ ?source_if_unmodified_since: ::Time,
2218
+ ?client_token: ::String
2219
+ ) -> _RenameObjectResponseSuccess
2220
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RenameObjectResponseSuccess
2221
+
2075
2222
  interface _RestoreObjectResponseSuccess
2076
2223
  include ::Seahorse::Client::_ResponseSuccess[Types::RestoreObjectOutput]
2077
2224
  def request_charged: () -> ("requester")
@@ -2128,7 +2275,7 @@ module Aws
2128
2275
  bucket_name: ::String,
2129
2276
  prefix: ::String,
2130
2277
  encryption: {
2131
- encryption_type: ("AES256" | "aws:kms" | "aws:kms:dsse"),
2278
+ encryption_type: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
2132
2279
  kms_key_id: ::String?,
2133
2280
  kms_context: ::String?
2134
2281
  }?,
@@ -2159,12 +2306,12 @@ module Aws
2159
2306
  value: ::String?
2160
2307
  },
2161
2308
  ]?,
2162
- storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")?
2309
+ storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")?
2163
2310
  }?
2164
2311
  }?
2165
2312
  },
2166
2313
  ?request_payer: ("requester"),
2167
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
2314
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
2168
2315
  ?expected_bucket_owner: ::String
2169
2316
  ) -> _RestoreObjectResponseSuccess
2170
2317
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreObjectResponseSuccess
@@ -2222,12 +2369,44 @@ module Aws
2222
2369
  ) ?{ (*untyped) -> void } -> _SelectObjectContentResponseSuccess
2223
2370
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _SelectObjectContentResponseSuccess
2224
2371
 
2372
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#update_bucket_metadata_inventory_table_configuration-instance_method
2373
+ def update_bucket_metadata_inventory_table_configuration: (
2374
+ bucket: ::String,
2375
+ ?content_md5: ::String,
2376
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
2377
+ inventory_table_configuration: {
2378
+ configuration_state: ("ENABLED" | "DISABLED"),
2379
+ encryption_configuration: {
2380
+ sse_algorithm: ("aws:kms" | "AES256"),
2381
+ kms_key_arn: ::String?
2382
+ }?
2383
+ },
2384
+ ?expected_bucket_owner: ::String
2385
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
2386
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
2387
+
2388
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#update_bucket_metadata_journal_table_configuration-instance_method
2389
+ def update_bucket_metadata_journal_table_configuration: (
2390
+ bucket: ::String,
2391
+ ?content_md5: ::String,
2392
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
2393
+ journal_table_configuration: {
2394
+ record_expiration: {
2395
+ expiration: ("ENABLED" | "DISABLED"),
2396
+ days: ::Integer?
2397
+ }
2398
+ },
2399
+ ?expected_bucket_owner: ::String
2400
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
2401
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
2402
+
2225
2403
  interface _UploadPartResponseSuccess
2226
2404
  include ::Seahorse::Client::_ResponseSuccess[Types::UploadPartOutput]
2227
- def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
2405
+ def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
2228
2406
  def etag: () -> ::String
2229
2407
  def checksum_crc32: () -> ::String
2230
2408
  def checksum_crc32c: () -> ::String
2409
+ def checksum_crc64nvme: () -> ::String
2231
2410
  def checksum_sha1: () -> ::String
2232
2411
  def checksum_sha256: () -> ::String
2233
2412
  def sse_customer_algorithm: () -> ::String
@@ -2242,9 +2421,10 @@ module Aws
2242
2421
  bucket: ::String,
2243
2422
  ?content_length: ::Integer,
2244
2423
  ?content_md5: ::String,
2245
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
2424
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
2246
2425
  ?checksum_crc32: ::String,
2247
2426
  ?checksum_crc32c: ::String,
2427
+ ?checksum_crc64nvme: ::String,
2248
2428
  ?checksum_sha1: ::String,
2249
2429
  ?checksum_sha256: ::String,
2250
2430
  key: ::String,
@@ -2262,7 +2442,7 @@ module Aws
2262
2442
  include ::Seahorse::Client::_ResponseSuccess[Types::UploadPartCopyOutput]
2263
2443
  def copy_source_version_id: () -> ::String
2264
2444
  def copy_part_result: () -> Types::CopyPartResult
2265
- def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
2445
+ def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
2266
2446
  def sse_customer_algorithm: () -> ::String
2267
2447
  def sse_customer_key_md5: () -> ::String
2268
2448
  def ssekms_key_id: () -> ::String
@@ -2311,6 +2491,7 @@ module Aws
2311
2491
  ?content_type: ::String,
2312
2492
  ?checksum_crc32: ::String,
2313
2493
  ?checksum_crc32c: ::String,
2494
+ ?checksum_crc64nvme: ::String,
2314
2495
  ?checksum_sha1: ::String,
2315
2496
  ?checksum_sha256: ::String,
2316
2497
  ?delete_marker: bool,
@@ -2327,11 +2508,11 @@ module Aws
2327
2508
  ?replication_status: ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED"),
2328
2509
  ?request_charged: ("requester"),
2329
2510
  ?restore: ::String,
2330
- ?server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse"),
2511
+ ?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
2331
2512
  ?sse_customer_algorithm: ::String,
2332
2513
  ?ssekms_key_id: ::String,
2333
2514
  ?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"),
2515
+ ?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS"),
2335
2516
  ?tag_count: ::Integer,
2336
2517
  ?version_id: ::String,
2337
2518
  ?bucket_key_enabled: bool