aws-sdk-s3 1.156.0 → 1.190.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 (70) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +193 -0
  3. data/VERSION +1 -1
  4. data/lib/aws-sdk-s3/access_grants_credentials_provider.rb +12 -3
  5. data/lib/aws-sdk-s3/bucket.rb +304 -94
  6. data/lib/aws-sdk-s3/bucket_acl.rb +6 -5
  7. data/lib/aws-sdk-s3/bucket_cors.rb +6 -5
  8. data/lib/aws-sdk-s3/bucket_lifecycle.rb +7 -2
  9. data/lib/aws-sdk-s3/bucket_lifecycle_configuration.rb +60 -3
  10. data/lib/aws-sdk-s3/bucket_logging.rb +2 -2
  11. data/lib/aws-sdk-s3/bucket_policy.rb +10 -9
  12. data/lib/aws-sdk-s3/bucket_request_payment.rb +3 -3
  13. data/lib/aws-sdk-s3/bucket_tagging.rb +3 -3
  14. data/lib/aws-sdk-s3/bucket_versioning.rb +9 -9
  15. data/lib/aws-sdk-s3/bucket_website.rb +3 -3
  16. data/lib/aws-sdk-s3/client.rb +4081 -1812
  17. data/lib/aws-sdk-s3/client_api.rb +404 -162
  18. data/lib/aws-sdk-s3/customizations/object.rb +6 -0
  19. data/lib/aws-sdk-s3/customizations/object_summary.rb +5 -0
  20. data/lib/aws-sdk-s3/customizations/object_version.rb +13 -0
  21. data/lib/aws-sdk-s3/customizations.rb +24 -38
  22. data/lib/aws-sdk-s3/endpoint_parameters.rb +13 -18
  23. data/lib/aws-sdk-s3/endpoint_provider.rb +400 -276
  24. data/lib/aws-sdk-s3/endpoints.rb +465 -1706
  25. data/lib/aws-sdk-s3/errors.rb +58 -0
  26. data/lib/aws-sdk-s3/file_downloader.rb +14 -31
  27. data/lib/aws-sdk-s3/legacy_signer.rb +2 -1
  28. data/lib/aws-sdk-s3/multipart_file_uploader.rb +31 -13
  29. data/lib/aws-sdk-s3/multipart_upload.rb +108 -8
  30. data/lib/aws-sdk-s3/multipart_upload_part.rb +52 -36
  31. data/lib/aws-sdk-s3/object.rb +614 -203
  32. data/lib/aws-sdk-s3/object_acl.rb +11 -5
  33. data/lib/aws-sdk-s3/object_multipart_copier.rb +2 -1
  34. data/lib/aws-sdk-s3/object_summary.rb +518 -151
  35. data/lib/aws-sdk-s3/object_version.rb +81 -12
  36. data/lib/aws-sdk-s3/plugins/access_grants.rb +68 -4
  37. data/lib/aws-sdk-s3/plugins/checksum_algorithm.rb +31 -0
  38. data/lib/aws-sdk-s3/plugins/endpoints.rb +24 -212
  39. data/lib/aws-sdk-s3/plugins/express_session_auth.rb +11 -20
  40. data/lib/aws-sdk-s3/plugins/http_200_errors.rb +3 -3
  41. data/lib/aws-sdk-s3/plugins/md5s.rb +10 -71
  42. data/lib/aws-sdk-s3/plugins/streaming_retry.rb +5 -7
  43. data/lib/aws-sdk-s3/plugins/url_encoded_keys.rb +2 -1
  44. data/lib/aws-sdk-s3/presigner.rb +5 -5
  45. data/lib/aws-sdk-s3/resource.rb +45 -18
  46. data/lib/aws-sdk-s3/types.rb +3462 -1337
  47. data/lib/aws-sdk-s3.rb +35 -31
  48. data/sig/bucket.rbs +16 -6
  49. data/sig/bucket_acl.rbs +1 -1
  50. data/sig/bucket_cors.rbs +1 -1
  51. data/sig/bucket_lifecycle.rbs +1 -1
  52. data/sig/bucket_lifecycle_configuration.rbs +8 -4
  53. data/sig/bucket_logging.rbs +1 -1
  54. data/sig/bucket_policy.rbs +1 -1
  55. data/sig/bucket_request_payment.rbs +1 -1
  56. data/sig/bucket_tagging.rbs +1 -1
  57. data/sig/bucket_versioning.rbs +3 -3
  58. data/sig/bucket_website.rbs +1 -1
  59. data/sig/client.rbs +162 -45
  60. data/sig/errors.rbs +10 -0
  61. data/sig/multipart_upload.rbs +12 -2
  62. data/sig/multipart_upload_part.rbs +5 -1
  63. data/sig/object.rbs +26 -6
  64. data/sig/object_acl.rbs +1 -1
  65. data/sig/object_summary.rbs +18 -7
  66. data/sig/object_version.rbs +9 -3
  67. data/sig/resource.rbs +11 -4
  68. data/sig/types.rbs +210 -38
  69. metadata +8 -10
  70. data/lib/aws-sdk-s3/plugins/skip_whole_multipart_get_checksums.rb +0 -31
data/sig/types.rbs CHANGED
@@ -24,6 +24,7 @@ module Aws::S3
24
24
  attr_accessor upload_id: ::String
25
25
  attr_accessor request_payer: ("requester")
26
26
  attr_accessor expected_bucket_owner: ::String
27
+ attr_accessor if_match_initiated_time: ::Time
27
28
  SENSITIVE: []
28
29
  end
29
30
 
@@ -79,6 +80,7 @@ module Aws::S3
79
80
  class Bucket
80
81
  attr_accessor name: ::String
81
82
  attr_accessor creation_date: ::Time
83
+ attr_accessor bucket_region: ::String
82
84
  SENSITIVE: []
83
85
  end
84
86
 
@@ -89,7 +91,7 @@ module Aws::S3
89
91
  end
90
92
 
91
93
  class BucketInfo
92
- attr_accessor data_redundancy: ("SingleAvailabilityZone")
94
+ attr_accessor data_redundancy: ("SingleAvailabilityZone" | "SingleLocalZone")
93
95
  attr_accessor type: ("Directory")
94
96
  SENSITIVE: []
95
97
  end
@@ -142,8 +144,10 @@ module Aws::S3
142
144
  class Checksum
143
145
  attr_accessor checksum_crc32: ::String
144
146
  attr_accessor checksum_crc32c: ::String
147
+ attr_accessor checksum_crc64nvme: ::String
145
148
  attr_accessor checksum_sha1: ::String
146
149
  attr_accessor checksum_sha256: ::String
150
+ attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
147
151
  SENSITIVE: []
148
152
  end
149
153
 
@@ -169,8 +173,10 @@ module Aws::S3
169
173
  attr_accessor etag: ::String
170
174
  attr_accessor checksum_crc32: ::String
171
175
  attr_accessor checksum_crc32c: ::String
176
+ attr_accessor checksum_crc64nvme: ::String
172
177
  attr_accessor checksum_sha1: ::String
173
178
  attr_accessor checksum_sha256: ::String
179
+ attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
174
180
  attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
175
181
  attr_accessor version_id: ::String
176
182
  attr_accessor ssekms_key_id: ::String
@@ -186,10 +192,15 @@ module Aws::S3
186
192
  attr_accessor upload_id: ::String
187
193
  attr_accessor checksum_crc32: ::String
188
194
  attr_accessor checksum_crc32c: ::String
195
+ attr_accessor checksum_crc64nvme: ::String
189
196
  attr_accessor checksum_sha1: ::String
190
197
  attr_accessor checksum_sha256: ::String
198
+ attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
199
+ attr_accessor mpu_object_size: ::Integer
191
200
  attr_accessor request_payer: ("requester")
192
201
  attr_accessor expected_bucket_owner: ::String
202
+ attr_accessor if_match: ::String
203
+ attr_accessor if_none_match: ::String
193
204
  attr_accessor sse_customer_algorithm: ::String
194
205
  attr_accessor sse_customer_key: ::String
195
206
  attr_accessor sse_customer_key_md5: ::String
@@ -205,6 +216,7 @@ module Aws::S3
205
216
  attr_accessor etag: ::String
206
217
  attr_accessor checksum_crc32: ::String
207
218
  attr_accessor checksum_crc32c: ::String
219
+ attr_accessor checksum_crc64nvme: ::String
208
220
  attr_accessor checksum_sha1: ::String
209
221
  attr_accessor checksum_sha256: ::String
210
222
  attr_accessor part_number: ::Integer
@@ -241,7 +253,7 @@ module Aws::S3
241
253
  attr_accessor acl: ("private" | "public-read" | "public-read-write" | "authenticated-read" | "aws-exec-read" | "bucket-owner-read" | "bucket-owner-full-control")
242
254
  attr_accessor bucket: ::String
243
255
  attr_accessor cache_control: ::String
244
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
256
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
245
257
  attr_accessor content_disposition: ::String
246
258
  attr_accessor content_encoding: ::String
247
259
  attr_accessor content_language: ::String
@@ -285,8 +297,10 @@ module Aws::S3
285
297
  class CopyObjectResult
286
298
  attr_accessor etag: ::String
287
299
  attr_accessor last_modified: ::Time
300
+ attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
288
301
  attr_accessor checksum_crc32: ::String
289
302
  attr_accessor checksum_crc32c: ::String
303
+ attr_accessor checksum_crc64nvme: ::String
290
304
  attr_accessor checksum_sha1: ::String
291
305
  attr_accessor checksum_sha256: ::String
292
306
  SENSITIVE: []
@@ -297,18 +311,28 @@ module Aws::S3
297
311
  attr_accessor last_modified: ::Time
298
312
  attr_accessor checksum_crc32: ::String
299
313
  attr_accessor checksum_crc32c: ::String
314
+ attr_accessor checksum_crc64nvme: ::String
300
315
  attr_accessor checksum_sha1: ::String
301
316
  attr_accessor checksum_sha256: ::String
302
317
  SENSITIVE: []
303
318
  end
304
319
 
305
320
  class CreateBucketConfiguration
306
- attr_accessor location_constraint: ("af-south-1" | "ap-east-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ca-central-1" | "cn-north-1" | "cn-northwest-1" | "EU" | "eu-central-1" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "me-south-1" | "sa-east-1" | "us-east-2" | "us-gov-east-1" | "us-gov-west-1" | "us-west-1" | "us-west-2")
321
+ attr_accessor location_constraint: ("af-south-1" | "ap-east-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-4" | "ap-southeast-5" | "ca-central-1" | "cn-north-1" | "cn-northwest-1" | "EU" | "eu-central-1" | "eu-central-2" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "il-central-1" | "me-central-1" | "me-south-1" | "sa-east-1" | "us-east-2" | "us-gov-east-1" | "us-gov-west-1" | "us-west-1" | "us-west-2")
307
322
  attr_accessor location: Types::LocationInfo
308
323
  attr_accessor bucket: Types::BucketInfo
309
324
  SENSITIVE: []
310
325
  end
311
326
 
327
+ class CreateBucketMetadataTableConfigurationRequest
328
+ attr_accessor bucket: ::String
329
+ attr_accessor content_md5: ::String
330
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
331
+ attr_accessor metadata_table_configuration: Types::MetadataTableConfiguration
332
+ attr_accessor expected_bucket_owner: ::String
333
+ SENSITIVE: []
334
+ end
335
+
312
336
  class CreateBucketOutput
313
337
  attr_accessor location: ::String
314
338
  SENSITIVE: []
@@ -341,7 +365,8 @@ module Aws::S3
341
365
  attr_accessor ssekms_encryption_context: ::String
342
366
  attr_accessor bucket_key_enabled: bool
343
367
  attr_accessor request_charged: ("requester")
344
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
368
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
369
+ attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
345
370
  SENSITIVE: [:ssekms_key_id, :ssekms_encryption_context]
346
371
  end
347
372
 
@@ -375,19 +400,28 @@ module Aws::S3
375
400
  attr_accessor object_lock_retain_until_date: ::Time
376
401
  attr_accessor object_lock_legal_hold_status: ("ON" | "OFF")
377
402
  attr_accessor expected_bucket_owner: ::String
378
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
403
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
404
+ attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
379
405
  SENSITIVE: [:sse_customer_key, :ssekms_key_id, :ssekms_encryption_context]
380
406
  end
381
407
 
382
408
  class CreateSessionOutput
409
+ attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
410
+ attr_accessor ssekms_key_id: ::String
411
+ attr_accessor ssekms_encryption_context: ::String
412
+ attr_accessor bucket_key_enabled: bool
383
413
  attr_accessor credentials: Types::SessionCredentials
384
- SENSITIVE: []
414
+ SENSITIVE: [:ssekms_key_id, :ssekms_encryption_context]
385
415
  end
386
416
 
387
417
  class CreateSessionRequest
388
418
  attr_accessor session_mode: ("ReadOnly" | "ReadWrite")
389
419
  attr_accessor bucket: ::String
390
- SENSITIVE: []
420
+ attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
421
+ attr_accessor ssekms_key_id: ::String
422
+ attr_accessor ssekms_encryption_context: ::String
423
+ attr_accessor bucket_key_enabled: bool
424
+ SENSITIVE: [:ssekms_key_id, :ssekms_encryption_context]
391
425
  end
392
426
 
393
427
  class DefaultRetention
@@ -425,6 +459,7 @@ module Aws::S3
425
459
  class DeleteBucketIntelligentTieringConfigurationRequest
426
460
  attr_accessor bucket: ::String
427
461
  attr_accessor id: ::String
462
+ attr_accessor expected_bucket_owner: ::String
428
463
  SENSITIVE: []
429
464
  end
430
465
 
@@ -441,6 +476,12 @@ module Aws::S3
441
476
  SENSITIVE: []
442
477
  end
443
478
 
479
+ class DeleteBucketMetadataTableConfigurationRequest
480
+ attr_accessor bucket: ::String
481
+ attr_accessor expected_bucket_owner: ::String
482
+ SENSITIVE: []
483
+ end
484
+
444
485
  class DeleteBucketMetricsConfigurationRequest
445
486
  attr_accessor bucket: ::String
446
487
  attr_accessor id: ::String
@@ -513,6 +554,9 @@ module Aws::S3
513
554
  attr_accessor request_payer: ("requester")
514
555
  attr_accessor bypass_governance_retention: bool
515
556
  attr_accessor expected_bucket_owner: ::String
557
+ attr_accessor if_match: ::String
558
+ attr_accessor if_match_last_modified_time: ::Time
559
+ attr_accessor if_match_size: ::Integer
516
560
  SENSITIVE: []
517
561
  end
518
562
 
@@ -543,7 +587,7 @@ module Aws::S3
543
587
  attr_accessor request_payer: ("requester")
544
588
  attr_accessor bypass_governance_retention: bool
545
589
  attr_accessor expected_bucket_owner: ::String
546
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
590
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
547
591
  SENSITIVE: []
548
592
  end
549
593
 
@@ -584,6 +628,9 @@ module Aws::S3
584
628
  SENSITIVE: []
585
629
  end
586
630
 
631
+ class EncryptionTypeMismatch < Aws::EmptyStructure
632
+ end
633
+
587
634
  class EndEvent
588
635
  attr_accessor event_type: untyped
589
636
  SENSITIVE: []
@@ -597,6 +644,12 @@ module Aws::S3
597
644
  SENSITIVE: []
598
645
  end
599
646
 
647
+ class ErrorDetails
648
+ attr_accessor error_code: ::String
649
+ attr_accessor error_message: ::String
650
+ SENSITIVE: []
651
+ end
652
+
600
653
  class ErrorDocument
601
654
  attr_accessor key: ::String
602
655
  SENSITIVE: []
@@ -683,6 +736,7 @@ module Aws::S3
683
736
  class GetBucketIntelligentTieringConfigurationRequest
684
737
  attr_accessor bucket: ::String
685
738
  attr_accessor id: ::String
739
+ attr_accessor expected_bucket_owner: ::String
686
740
  SENSITIVE: []
687
741
  end
688
742
 
@@ -700,6 +754,7 @@ module Aws::S3
700
754
 
701
755
  class GetBucketLifecycleConfigurationOutput
702
756
  attr_accessor rules: ::Array[Types::LifecycleRule]
757
+ attr_accessor transition_default_minimum_object_size: ("varies_by_storage_class" | "all_storage_classes_128K")
703
758
  SENSITIVE: []
704
759
  end
705
760
 
@@ -721,7 +776,7 @@ module Aws::S3
721
776
  end
722
777
 
723
778
  class GetBucketLocationOutput
724
- attr_accessor location_constraint: ("af-south-1" | "ap-east-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ca-central-1" | "cn-north-1" | "cn-northwest-1" | "EU" | "eu-central-1" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "me-south-1" | "sa-east-1" | "us-east-2" | "us-gov-east-1" | "us-gov-west-1" | "us-west-1" | "us-west-2")
779
+ attr_accessor location_constraint: ("af-south-1" | "ap-east-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-4" | "ap-southeast-5" | "ca-central-1" | "cn-north-1" | "cn-northwest-1" | "EU" | "eu-central-1" | "eu-central-2" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "il-central-1" | "me-central-1" | "me-south-1" | "sa-east-1" | "us-east-2" | "us-gov-east-1" | "us-gov-west-1" | "us-west-1" | "us-west-2")
725
780
  SENSITIVE: []
726
781
  end
727
782
 
@@ -742,6 +797,24 @@ module Aws::S3
742
797
  SENSITIVE: []
743
798
  end
744
799
 
800
+ class GetBucketMetadataTableConfigurationOutput
801
+ attr_accessor get_bucket_metadata_table_configuration_result: Types::GetBucketMetadataTableConfigurationResult
802
+ SENSITIVE: []
803
+ end
804
+
805
+ class GetBucketMetadataTableConfigurationRequest
806
+ attr_accessor bucket: ::String
807
+ attr_accessor expected_bucket_owner: ::String
808
+ SENSITIVE: []
809
+ end
810
+
811
+ class GetBucketMetadataTableConfigurationResult
812
+ attr_accessor metadata_table_configuration_result: Types::MetadataTableConfigurationResult
813
+ attr_accessor status: ::String
814
+ attr_accessor error: Types::ErrorDetails
815
+ SENSITIVE: []
816
+ end
817
+
745
818
  class GetBucketMetricsConfigurationOutput
746
819
  attr_accessor metrics_configuration: Types::MetricsConfiguration
747
820
  SENSITIVE: []
@@ -942,8 +1015,10 @@ module Aws::S3
942
1015
  attr_accessor etag: ::String
943
1016
  attr_accessor checksum_crc32: ::String
944
1017
  attr_accessor checksum_crc32c: ::String
1018
+ attr_accessor checksum_crc64nvme: ::String
945
1019
  attr_accessor checksum_sha1: ::String
946
1020
  attr_accessor checksum_sha256: ::String
1021
+ attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
947
1022
  attr_accessor missing_meta: ::Integer
948
1023
  attr_accessor version_id: ::String
949
1024
  attr_accessor cache_control: ::String
@@ -1072,7 +1147,7 @@ module Aws::S3
1072
1147
  end
1073
1148
 
1074
1149
  class HeadBucketOutput
1075
- attr_accessor bucket_location_type: ("AvailabilityZone")
1150
+ attr_accessor bucket_location_type: ("AvailabilityZone" | "LocalZone")
1076
1151
  attr_accessor bucket_location_name: ::String
1077
1152
  attr_accessor bucket_region: ::String
1078
1153
  attr_accessor access_point_alias: bool
@@ -1095,8 +1170,10 @@ module Aws::S3
1095
1170
  attr_accessor content_length: ::Integer
1096
1171
  attr_accessor checksum_crc32: ::String
1097
1172
  attr_accessor checksum_crc32c: ::String
1173
+ attr_accessor checksum_crc64nvme: ::String
1098
1174
  attr_accessor checksum_sha1: ::String
1099
1175
  attr_accessor checksum_sha256: ::String
1176
+ attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
1100
1177
  attr_accessor etag: ::String
1101
1178
  attr_accessor missing_meta: ::Integer
1102
1179
  attr_accessor version_id: ::String
@@ -1105,6 +1182,7 @@ module Aws::S3
1105
1182
  attr_accessor content_encoding: ::String
1106
1183
  attr_accessor content_language: ::String
1107
1184
  attr_accessor content_type: ::String
1185
+ attr_accessor content_range: ::String
1108
1186
  attr_accessor expires: ::Time
1109
1187
  attr_accessor expires_string: ::String
1110
1188
  attr_accessor website_redirect_location: ::String
@@ -1118,6 +1196,7 @@ module Aws::S3
1118
1196
  attr_accessor request_charged: ("requester")
1119
1197
  attr_accessor replication_status: ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
1120
1198
  attr_accessor parts_count: ::Integer
1199
+ attr_accessor tag_count: ::Integer
1121
1200
  attr_accessor object_lock_mode: ("GOVERNANCE" | "COMPLIANCE")
1122
1201
  attr_accessor object_lock_retain_until_date: ::Time
1123
1202
  attr_accessor object_lock_legal_hold_status: ("ON" | "OFF")
@@ -1149,6 +1228,9 @@ module Aws::S3
1149
1228
  SENSITIVE: [:sse_customer_key]
1150
1229
  end
1151
1230
 
1231
+ class IdempotencyParameterMismatch < Aws::EmptyStructure
1232
+ end
1233
+
1152
1234
  class IndexDocument
1153
1235
  attr_accessor suffix: ::String
1154
1236
  SENSITIVE: []
@@ -1195,6 +1277,12 @@ module Aws::S3
1195
1277
  SENSITIVE: []
1196
1278
  end
1197
1279
 
1280
+ class InvalidRequest < Aws::EmptyStructure
1281
+ end
1282
+
1283
+ class InvalidWriteOffset < Aws::EmptyStructure
1284
+ end
1285
+
1198
1286
  class InventoryConfiguration
1199
1287
  attr_accessor destination: Types::InventoryDestination
1200
1288
  attr_accessor is_enabled: bool
@@ -1322,6 +1410,7 @@ module Aws::S3
1322
1410
  class ListBucketIntelligentTieringConfigurationsRequest
1323
1411
  attr_accessor bucket: ::String
1324
1412
  attr_accessor continuation_token: ::String
1413
+ attr_accessor expected_bucket_owner: ::String
1325
1414
  SENSITIVE: []
1326
1415
  end
1327
1416
 
@@ -1358,6 +1447,16 @@ module Aws::S3
1358
1447
  class ListBucketsOutput
1359
1448
  attr_accessor buckets: ::Array[Types::Bucket]
1360
1449
  attr_accessor owner: Types::Owner
1450
+ attr_accessor continuation_token: ::String
1451
+ attr_accessor prefix: ::String
1452
+ SENSITIVE: []
1453
+ end
1454
+
1455
+ class ListBucketsRequest
1456
+ attr_accessor max_buckets: ::Integer
1457
+ attr_accessor continuation_token: ::String
1458
+ attr_accessor prefix: ::String
1459
+ attr_accessor bucket_region: ::String
1361
1460
  SENSITIVE: []
1362
1461
  end
1363
1462
 
@@ -1510,7 +1609,8 @@ module Aws::S3
1510
1609
  attr_accessor owner: Types::Owner
1511
1610
  attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
1512
1611
  attr_accessor request_charged: ("requester")
1513
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
1612
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1613
+ attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
1514
1614
  SENSITIVE: []
1515
1615
  end
1516
1616
 
@@ -1529,7 +1629,7 @@ module Aws::S3
1529
1629
  end
1530
1630
 
1531
1631
  class LocationInfo
1532
- attr_accessor type: ("AvailabilityZone")
1632
+ attr_accessor type: ("AvailabilityZone" | "LocalZone")
1533
1633
  attr_accessor name: ::String
1534
1634
  SENSITIVE: []
1535
1635
  end
@@ -1548,6 +1648,16 @@ module Aws::S3
1548
1648
  SENSITIVE: []
1549
1649
  end
1550
1650
 
1651
+ class MetadataTableConfiguration
1652
+ attr_accessor s3_tables_destination: Types::S3TablesDestination
1653
+ SENSITIVE: []
1654
+ end
1655
+
1656
+ class MetadataTableConfigurationResult
1657
+ attr_accessor s3_tables_destination_result: Types::S3TablesDestinationResult
1658
+ SENSITIVE: []
1659
+ end
1660
+
1551
1661
  class Metrics
1552
1662
  attr_accessor status: ("Enabled" | "Disabled")
1553
1663
  attr_accessor event_threshold: Types::ReplicationTimeValue
@@ -1582,7 +1692,8 @@ module Aws::S3
1582
1692
  attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
1583
1693
  attr_accessor owner: Types::Owner
1584
1694
  attr_accessor initiator: Types::Initiator
1585
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
1695
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1696
+ attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
1586
1697
  SENSITIVE: []
1587
1698
  end
1588
1699
 
@@ -1632,7 +1743,8 @@ module Aws::S3
1632
1743
  attr_accessor key: ::String
1633
1744
  attr_accessor last_modified: ::Time
1634
1745
  attr_accessor etag: ::String
1635
- attr_accessor checksum_algorithm: ::Array[("CRC32" | "CRC32C" | "SHA1" | "SHA256")]
1746
+ attr_accessor checksum_algorithm: ::Array[("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")]
1747
+ attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
1636
1748
  attr_accessor size: ::Integer
1637
1749
  attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "GLACIER" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
1638
1750
  attr_accessor owner: Types::Owner
@@ -1646,6 +1758,9 @@ module Aws::S3
1646
1758
  class ObjectIdentifier
1647
1759
  attr_accessor key: ::String
1648
1760
  attr_accessor version_id: ::String
1761
+ attr_accessor etag: ::String
1762
+ attr_accessor last_modified_time: ::Time
1763
+ attr_accessor size: ::Integer
1649
1764
  SENSITIVE: []
1650
1765
  end
1651
1766
 
@@ -1679,6 +1794,7 @@ module Aws::S3
1679
1794
  attr_accessor size: ::Integer
1680
1795
  attr_accessor checksum_crc32: ::String
1681
1796
  attr_accessor checksum_crc32c: ::String
1797
+ attr_accessor checksum_crc64nvme: ::String
1682
1798
  attr_accessor checksum_sha1: ::String
1683
1799
  attr_accessor checksum_sha256: ::String
1684
1800
  SENSITIVE: []
@@ -1686,7 +1802,8 @@ module Aws::S3
1686
1802
 
1687
1803
  class ObjectVersion
1688
1804
  attr_accessor etag: ::String
1689
- attr_accessor checksum_algorithm: ::Array[("CRC32" | "CRC32C" | "SHA1" | "SHA256")]
1805
+ attr_accessor checksum_algorithm: ::Array[("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")]
1806
+ attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
1690
1807
  attr_accessor size: ::Integer
1691
1808
  attr_accessor storage_class: ("STANDARD")
1692
1809
  attr_accessor key: ::String
@@ -1735,6 +1852,7 @@ module Aws::S3
1735
1852
  attr_accessor size: ::Integer
1736
1853
  attr_accessor checksum_crc32: ::String
1737
1854
  attr_accessor checksum_crc32c: ::String
1855
+ attr_accessor checksum_crc64nvme: ::String
1738
1856
  attr_accessor checksum_sha1: ::String
1739
1857
  attr_accessor checksum_sha256: ::String
1740
1858
  SENSITIVE: []
@@ -1775,7 +1893,7 @@ module Aws::S3
1775
1893
  attr_accessor bucket: ::String
1776
1894
  attr_accessor accelerate_configuration: Types::AccelerateConfiguration
1777
1895
  attr_accessor expected_bucket_owner: ::String
1778
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
1896
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1779
1897
  SENSITIVE: []
1780
1898
  end
1781
1899
 
@@ -1784,7 +1902,7 @@ module Aws::S3
1784
1902
  attr_accessor access_control_policy: Types::AccessControlPolicy
1785
1903
  attr_accessor bucket: ::String
1786
1904
  attr_accessor content_md5: ::String
1787
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
1905
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1788
1906
  attr_accessor grant_full_control: ::String
1789
1907
  attr_accessor grant_read: ::String
1790
1908
  attr_accessor grant_read_acp: ::String
@@ -1806,7 +1924,7 @@ module Aws::S3
1806
1924
  attr_accessor bucket: ::String
1807
1925
  attr_accessor cors_configuration: Types::CORSConfiguration
1808
1926
  attr_accessor content_md5: ::String
1809
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
1927
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1810
1928
  attr_accessor expected_bucket_owner: ::String
1811
1929
  SENSITIVE: []
1812
1930
  end
@@ -1814,7 +1932,7 @@ module Aws::S3
1814
1932
  class PutBucketEncryptionRequest
1815
1933
  attr_accessor bucket: ::String
1816
1934
  attr_accessor content_md5: ::String
1817
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
1935
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1818
1936
  attr_accessor server_side_encryption_configuration: Types::ServerSideEncryptionConfiguration
1819
1937
  attr_accessor expected_bucket_owner: ::String
1820
1938
  SENSITIVE: []
@@ -1823,6 +1941,7 @@ module Aws::S3
1823
1941
  class PutBucketIntelligentTieringConfigurationRequest
1824
1942
  attr_accessor bucket: ::String
1825
1943
  attr_accessor id: ::String
1944
+ attr_accessor expected_bucket_owner: ::String
1826
1945
  attr_accessor intelligent_tiering_configuration: Types::IntelligentTieringConfiguration
1827
1946
  SENSITIVE: []
1828
1947
  end
@@ -1835,18 +1954,24 @@ module Aws::S3
1835
1954
  SENSITIVE: []
1836
1955
  end
1837
1956
 
1957
+ class PutBucketLifecycleConfigurationOutput
1958
+ attr_accessor transition_default_minimum_object_size: ("varies_by_storage_class" | "all_storage_classes_128K")
1959
+ SENSITIVE: []
1960
+ end
1961
+
1838
1962
  class PutBucketLifecycleConfigurationRequest
1839
1963
  attr_accessor bucket: ::String
1840
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
1964
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1841
1965
  attr_accessor lifecycle_configuration: Types::BucketLifecycleConfiguration
1842
1966
  attr_accessor expected_bucket_owner: ::String
1967
+ attr_accessor transition_default_minimum_object_size: ("varies_by_storage_class" | "all_storage_classes_128K")
1843
1968
  SENSITIVE: []
1844
1969
  end
1845
1970
 
1846
1971
  class PutBucketLifecycleRequest
1847
1972
  attr_accessor bucket: ::String
1848
1973
  attr_accessor content_md5: ::String
1849
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
1974
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1850
1975
  attr_accessor lifecycle_configuration: Types::LifecycleConfiguration
1851
1976
  attr_accessor expected_bucket_owner: ::String
1852
1977
  SENSITIVE: []
@@ -1856,7 +1981,7 @@ module Aws::S3
1856
1981
  attr_accessor bucket: ::String
1857
1982
  attr_accessor bucket_logging_status: Types::BucketLoggingStatus
1858
1983
  attr_accessor content_md5: ::String
1859
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
1984
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1860
1985
  attr_accessor expected_bucket_owner: ::String
1861
1986
  SENSITIVE: []
1862
1987
  end
@@ -1880,7 +2005,7 @@ module Aws::S3
1880
2005
  class PutBucketNotificationRequest
1881
2006
  attr_accessor bucket: ::String
1882
2007
  attr_accessor content_md5: ::String
1883
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2008
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1884
2009
  attr_accessor notification_configuration: Types::NotificationConfigurationDeprecated
1885
2010
  attr_accessor expected_bucket_owner: ::String
1886
2011
  SENSITIVE: []
@@ -1891,13 +2016,14 @@ module Aws::S3
1891
2016
  attr_accessor content_md5: ::String
1892
2017
  attr_accessor expected_bucket_owner: ::String
1893
2018
  attr_accessor ownership_controls: Types::OwnershipControls
2019
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1894
2020
  SENSITIVE: []
1895
2021
  end
1896
2022
 
1897
2023
  class PutBucketPolicyRequest
1898
2024
  attr_accessor bucket: ::String
1899
2025
  attr_accessor content_md5: ::String
1900
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2026
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1901
2027
  attr_accessor confirm_remove_self_bucket_access: bool
1902
2028
  attr_accessor policy: ::IO
1903
2029
  attr_accessor expected_bucket_owner: ::String
@@ -1907,7 +2033,7 @@ module Aws::S3
1907
2033
  class PutBucketReplicationRequest
1908
2034
  attr_accessor bucket: ::String
1909
2035
  attr_accessor content_md5: ::String
1910
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2036
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1911
2037
  attr_accessor replication_configuration: Types::ReplicationConfiguration
1912
2038
  attr_accessor token: ::String
1913
2039
  attr_accessor expected_bucket_owner: ::String
@@ -1917,7 +2043,7 @@ module Aws::S3
1917
2043
  class PutBucketRequestPaymentRequest
1918
2044
  attr_accessor bucket: ::String
1919
2045
  attr_accessor content_md5: ::String
1920
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2046
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1921
2047
  attr_accessor request_payment_configuration: Types::RequestPaymentConfiguration
1922
2048
  attr_accessor expected_bucket_owner: ::String
1923
2049
  SENSITIVE: []
@@ -1926,7 +2052,7 @@ module Aws::S3
1926
2052
  class PutBucketTaggingRequest
1927
2053
  attr_accessor bucket: ::String
1928
2054
  attr_accessor content_md5: ::String
1929
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2055
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1930
2056
  attr_accessor tagging: Types::Tagging
1931
2057
  attr_accessor expected_bucket_owner: ::String
1932
2058
  SENSITIVE: []
@@ -1935,7 +2061,7 @@ module Aws::S3
1935
2061
  class PutBucketVersioningRequest
1936
2062
  attr_accessor bucket: ::String
1937
2063
  attr_accessor content_md5: ::String
1938
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2064
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1939
2065
  attr_accessor mfa: ::String
1940
2066
  attr_accessor versioning_configuration: Types::VersioningConfiguration
1941
2067
  attr_accessor expected_bucket_owner: ::String
@@ -1945,7 +2071,7 @@ module Aws::S3
1945
2071
  class PutBucketWebsiteRequest
1946
2072
  attr_accessor bucket: ::String
1947
2073
  attr_accessor content_md5: ::String
1948
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2074
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1949
2075
  attr_accessor website_configuration: Types::WebsiteConfiguration
1950
2076
  attr_accessor expected_bucket_owner: ::String
1951
2077
  SENSITIVE: []
@@ -1961,7 +2087,7 @@ module Aws::S3
1961
2087
  attr_accessor access_control_policy: Types::AccessControlPolicy
1962
2088
  attr_accessor bucket: ::String
1963
2089
  attr_accessor content_md5: ::String
1964
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2090
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1965
2091
  attr_accessor grant_full_control: ::String
1966
2092
  attr_accessor grant_read: ::String
1967
2093
  attr_accessor grant_read_acp: ::String
@@ -1986,7 +2112,7 @@ module Aws::S3
1986
2112
  attr_accessor request_payer: ("requester")
1987
2113
  attr_accessor version_id: ::String
1988
2114
  attr_accessor content_md5: ::String
1989
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2115
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1990
2116
  attr_accessor expected_bucket_owner: ::String
1991
2117
  SENSITIVE: []
1992
2118
  end
@@ -2002,7 +2128,7 @@ module Aws::S3
2002
2128
  attr_accessor request_payer: ("requester")
2003
2129
  attr_accessor token: ::String
2004
2130
  attr_accessor content_md5: ::String
2005
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2131
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
2006
2132
  attr_accessor expected_bucket_owner: ::String
2007
2133
  SENSITIVE: []
2008
2134
  end
@@ -2012,8 +2138,10 @@ module Aws::S3
2012
2138
  attr_accessor etag: ::String
2013
2139
  attr_accessor checksum_crc32: ::String
2014
2140
  attr_accessor checksum_crc32c: ::String
2141
+ attr_accessor checksum_crc64nvme: ::String
2015
2142
  attr_accessor checksum_sha1: ::String
2016
2143
  attr_accessor checksum_sha256: ::String
2144
+ attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
2017
2145
  attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
2018
2146
  attr_accessor version_id: ::String
2019
2147
  attr_accessor sse_customer_algorithm: ::String
@@ -2021,6 +2149,7 @@ module Aws::S3
2021
2149
  attr_accessor ssekms_key_id: ::String
2022
2150
  attr_accessor ssekms_encryption_context: ::String
2023
2151
  attr_accessor bucket_key_enabled: bool
2152
+ attr_accessor size: ::Integer
2024
2153
  attr_accessor request_charged: ("requester")
2025
2154
  SENSITIVE: [:ssekms_key_id, :ssekms_encryption_context]
2026
2155
  end
@@ -2036,17 +2165,21 @@ module Aws::S3
2036
2165
  attr_accessor content_length: ::Integer
2037
2166
  attr_accessor content_md5: ::String
2038
2167
  attr_accessor content_type: ::String
2039
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2168
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
2040
2169
  attr_accessor checksum_crc32: ::String
2041
2170
  attr_accessor checksum_crc32c: ::String
2171
+ attr_accessor checksum_crc64nvme: ::String
2042
2172
  attr_accessor checksum_sha1: ::String
2043
2173
  attr_accessor checksum_sha256: ::String
2044
2174
  attr_accessor expires: ::Time
2175
+ attr_accessor if_match: ::String
2176
+ attr_accessor if_none_match: ::String
2045
2177
  attr_accessor grant_full_control: ::String
2046
2178
  attr_accessor grant_read: ::String
2047
2179
  attr_accessor grant_read_acp: ::String
2048
2180
  attr_accessor grant_write_acp: ::String
2049
2181
  attr_accessor key: ::String
2182
+ attr_accessor write_offset_bytes: ::Integer
2050
2183
  attr_accessor metadata: ::Hash[::String, ::String]
2051
2184
  attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
2052
2185
  attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
@@ -2079,7 +2212,7 @@ module Aws::S3
2079
2212
  attr_accessor version_id: ::String
2080
2213
  attr_accessor bypass_governance_retention: bool
2081
2214
  attr_accessor content_md5: ::String
2082
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2215
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
2083
2216
  attr_accessor expected_bucket_owner: ::String
2084
2217
  SENSITIVE: []
2085
2218
  end
@@ -2094,7 +2227,7 @@ module Aws::S3
2094
2227
  attr_accessor key: ::String
2095
2228
  attr_accessor version_id: ::String
2096
2229
  attr_accessor content_md5: ::String
2097
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2230
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
2098
2231
  attr_accessor tagging: Types::Tagging
2099
2232
  attr_accessor expected_bucket_owner: ::String
2100
2233
  attr_accessor request_payer: ("requester")
@@ -2104,7 +2237,7 @@ module Aws::S3
2104
2237
  class PutPublicAccessBlockRequest
2105
2238
  attr_accessor bucket: ::String
2106
2239
  attr_accessor content_md5: ::String
2107
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2240
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
2108
2241
  attr_accessor public_access_block_configuration: Types::PublicAccessBlockConfiguration
2109
2242
  attr_accessor expected_bucket_owner: ::String
2110
2243
  SENSITIVE: []
@@ -2147,6 +2280,25 @@ module Aws::S3
2147
2280
  SENSITIVE: []
2148
2281
  end
2149
2282
 
2283
+ class RenameObjectOutput < Aws::EmptyStructure
2284
+ end
2285
+
2286
+ class RenameObjectRequest
2287
+ attr_accessor bucket: ::String
2288
+ attr_accessor key: ::String
2289
+ attr_accessor rename_source: ::String
2290
+ attr_accessor destination_if_match: ::String
2291
+ attr_accessor destination_if_none_match: ::String
2292
+ attr_accessor destination_if_modified_since: ::Time
2293
+ attr_accessor destination_if_unmodified_since: ::Time
2294
+ attr_accessor source_if_match: ::String
2295
+ attr_accessor source_if_none_match: ::String
2296
+ attr_accessor source_if_modified_since: ::Time
2297
+ attr_accessor source_if_unmodified_since: ::Time
2298
+ attr_accessor client_token: ::String
2299
+ SENSITIVE: []
2300
+ end
2301
+
2150
2302
  class ReplicaModifications
2151
2303
  attr_accessor status: ("Enabled" | "Disabled")
2152
2304
  SENSITIVE: []
@@ -2217,7 +2369,7 @@ module Aws::S3
2217
2369
  attr_accessor version_id: ::String
2218
2370
  attr_accessor restore_request: Types::RestoreRequest
2219
2371
  attr_accessor request_payer: ("requester")
2220
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2372
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
2221
2373
  attr_accessor expected_bucket_owner: ::String
2222
2374
  SENSITIVE: []
2223
2375
  end
@@ -2274,6 +2426,20 @@ module Aws::S3
2274
2426
  SENSITIVE: []
2275
2427
  end
2276
2428
 
2429
+ class S3TablesDestination
2430
+ attr_accessor table_bucket_arn: ::String
2431
+ attr_accessor table_name: ::String
2432
+ SENSITIVE: []
2433
+ end
2434
+
2435
+ class S3TablesDestinationResult
2436
+ attr_accessor table_bucket_arn: ::String
2437
+ attr_accessor table_name: ::String
2438
+ attr_accessor table_arn: ::String
2439
+ attr_accessor table_namespace: ::String
2440
+ SENSITIVE: []
2441
+ end
2442
+
2277
2443
  class SSEKMS
2278
2444
  attr_accessor key_id: ::String
2279
2445
  SENSITIVE: [:key_id]
@@ -2409,6 +2575,9 @@ module Aws::S3
2409
2575
  SENSITIVE: []
2410
2576
  end
2411
2577
 
2578
+ class TooManyParts < Aws::EmptyStructure
2579
+ end
2580
+
2412
2581
  class TopicConfiguration
2413
2582
  attr_accessor id: ::String
2414
2583
  attr_accessor topic_arn: ::String
@@ -2472,6 +2641,7 @@ module Aws::S3
2472
2641
  attr_accessor etag: ::String
2473
2642
  attr_accessor checksum_crc32: ::String
2474
2643
  attr_accessor checksum_crc32c: ::String
2644
+ attr_accessor checksum_crc64nvme: ::String
2475
2645
  attr_accessor checksum_sha1: ::String
2476
2646
  attr_accessor checksum_sha256: ::String
2477
2647
  attr_accessor sse_customer_algorithm: ::String
@@ -2487,9 +2657,10 @@ module Aws::S3
2487
2657
  attr_accessor bucket: ::String
2488
2658
  attr_accessor content_length: ::Integer
2489
2659
  attr_accessor content_md5: ::String
2490
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2660
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
2491
2661
  attr_accessor checksum_crc32: ::String
2492
2662
  attr_accessor checksum_crc32c: ::String
2663
+ attr_accessor checksum_crc64nvme: ::String
2493
2664
  attr_accessor checksum_sha1: ::String
2494
2665
  attr_accessor checksum_sha256: ::String
2495
2666
  attr_accessor key: ::String
@@ -2534,6 +2705,7 @@ module Aws::S3
2534
2705
  attr_accessor content_type: ::String
2535
2706
  attr_accessor checksum_crc32: ::String
2536
2707
  attr_accessor checksum_crc32c: ::String
2708
+ attr_accessor checksum_crc64nvme: ::String
2537
2709
  attr_accessor checksum_sha1: ::String
2538
2710
  attr_accessor checksum_sha256: ::String
2539
2711
  attr_accessor delete_marker: bool