aws-sdk-s3 1.169.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 (62) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +128 -0
  3. data/VERSION +1 -1
  4. data/lib/aws-sdk-s3/bucket.rb +79 -33
  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 +2964 -1677
  16. data/lib/aws-sdk-s3/client_api.rb +366 -160
  17. data/lib/aws-sdk-s3/endpoint_provider.rb +400 -276
  18. data/lib/aws-sdk-s3/endpoints.rb +56 -0
  19. data/lib/aws-sdk-s3/errors.rb +55 -0
  20. data/lib/aws-sdk-s3/file_downloader.rb +14 -31
  21. data/lib/aws-sdk-s3/legacy_signer.rb +2 -1
  22. data/lib/aws-sdk-s3/multipart_file_uploader.rb +31 -13
  23. data/lib/aws-sdk-s3/multipart_upload.rb +83 -6
  24. data/lib/aws-sdk-s3/multipart_upload_part.rb +50 -34
  25. data/lib/aws-sdk-s3/object.rb +260 -114
  26. data/lib/aws-sdk-s3/object_acl.rb +11 -5
  27. data/lib/aws-sdk-s3/object_multipart_copier.rb +2 -1
  28. data/lib/aws-sdk-s3/object_summary.rb +180 -82
  29. data/lib/aws-sdk-s3/object_version.rb +60 -13
  30. data/lib/aws-sdk-s3/plugins/checksum_algorithm.rb +31 -0
  31. data/lib/aws-sdk-s3/plugins/express_session_auth.rb +11 -20
  32. data/lib/aws-sdk-s3/plugins/http_200_errors.rb +3 -3
  33. data/lib/aws-sdk-s3/plugins/md5s.rb +10 -71
  34. data/lib/aws-sdk-s3/plugins/streaming_retry.rb +5 -7
  35. data/lib/aws-sdk-s3/plugins/url_encoded_keys.rb +2 -1
  36. data/lib/aws-sdk-s3/presigner.rb +5 -5
  37. data/lib/aws-sdk-s3/resource.rb +10 -9
  38. data/lib/aws-sdk-s3/types.rb +2511 -1060
  39. data/lib/aws-sdk-s3.rb +1 -1
  40. data/sig/bucket.rbs +12 -6
  41. data/sig/bucket_acl.rbs +1 -1
  42. data/sig/bucket_cors.rbs +1 -1
  43. data/sig/bucket_lifecycle.rbs +1 -1
  44. data/sig/bucket_lifecycle_configuration.rbs +1 -1
  45. data/sig/bucket_logging.rbs +1 -1
  46. data/sig/bucket_policy.rbs +1 -1
  47. data/sig/bucket_request_payment.rbs +1 -1
  48. data/sig/bucket_tagging.rbs +1 -1
  49. data/sig/bucket_versioning.rbs +3 -3
  50. data/sig/bucket_website.rbs +1 -1
  51. data/sig/client.rbs +132 -40
  52. data/sig/errors.rbs +10 -0
  53. data/sig/multipart_upload.rbs +11 -2
  54. data/sig/multipart_upload_part.rbs +5 -1
  55. data/sig/object.rbs +25 -6
  56. data/sig/object_acl.rbs +1 -1
  57. data/sig/object_summary.rbs +17 -7
  58. data/sig/object_version.rbs +9 -3
  59. data/sig/resource.rbs +5 -3
  60. data/sig/types.rbs +180 -36
  61. metadata +7 -10
  62. 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
 
@@ -90,7 +91,7 @@ module Aws::S3
90
91
  end
91
92
 
92
93
  class BucketInfo
93
- attr_accessor data_redundancy: ("SingleAvailabilityZone")
94
+ attr_accessor data_redundancy: ("SingleAvailabilityZone" | "SingleLocalZone")
94
95
  attr_accessor type: ("Directory")
95
96
  SENSITIVE: []
96
97
  end
@@ -143,8 +144,10 @@ module Aws::S3
143
144
  class Checksum
144
145
  attr_accessor checksum_crc32: ::String
145
146
  attr_accessor checksum_crc32c: ::String
147
+ attr_accessor checksum_crc64nvme: ::String
146
148
  attr_accessor checksum_sha1: ::String
147
149
  attr_accessor checksum_sha256: ::String
150
+ attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
148
151
  SENSITIVE: []
149
152
  end
150
153
 
@@ -170,8 +173,10 @@ module Aws::S3
170
173
  attr_accessor etag: ::String
171
174
  attr_accessor checksum_crc32: ::String
172
175
  attr_accessor checksum_crc32c: ::String
176
+ attr_accessor checksum_crc64nvme: ::String
173
177
  attr_accessor checksum_sha1: ::String
174
178
  attr_accessor checksum_sha256: ::String
179
+ attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
175
180
  attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
176
181
  attr_accessor version_id: ::String
177
182
  attr_accessor ssekms_key_id: ::String
@@ -187,10 +192,14 @@ module Aws::S3
187
192
  attr_accessor upload_id: ::String
188
193
  attr_accessor checksum_crc32: ::String
189
194
  attr_accessor checksum_crc32c: ::String
195
+ attr_accessor checksum_crc64nvme: ::String
190
196
  attr_accessor checksum_sha1: ::String
191
197
  attr_accessor checksum_sha256: ::String
198
+ attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
199
+ attr_accessor mpu_object_size: ::Integer
192
200
  attr_accessor request_payer: ("requester")
193
201
  attr_accessor expected_bucket_owner: ::String
202
+ attr_accessor if_match: ::String
194
203
  attr_accessor if_none_match: ::String
195
204
  attr_accessor sse_customer_algorithm: ::String
196
205
  attr_accessor sse_customer_key: ::String
@@ -207,6 +216,7 @@ module Aws::S3
207
216
  attr_accessor etag: ::String
208
217
  attr_accessor checksum_crc32: ::String
209
218
  attr_accessor checksum_crc32c: ::String
219
+ attr_accessor checksum_crc64nvme: ::String
210
220
  attr_accessor checksum_sha1: ::String
211
221
  attr_accessor checksum_sha256: ::String
212
222
  attr_accessor part_number: ::Integer
@@ -243,7 +253,7 @@ module Aws::S3
243
253
  attr_accessor acl: ("private" | "public-read" | "public-read-write" | "authenticated-read" | "aws-exec-read" | "bucket-owner-read" | "bucket-owner-full-control")
244
254
  attr_accessor bucket: ::String
245
255
  attr_accessor cache_control: ::String
246
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
256
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
247
257
  attr_accessor content_disposition: ::String
248
258
  attr_accessor content_encoding: ::String
249
259
  attr_accessor content_language: ::String
@@ -287,8 +297,10 @@ module Aws::S3
287
297
  class CopyObjectResult
288
298
  attr_accessor etag: ::String
289
299
  attr_accessor last_modified: ::Time
300
+ attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
290
301
  attr_accessor checksum_crc32: ::String
291
302
  attr_accessor checksum_crc32c: ::String
303
+ attr_accessor checksum_crc64nvme: ::String
292
304
  attr_accessor checksum_sha1: ::String
293
305
  attr_accessor checksum_sha256: ::String
294
306
  SENSITIVE: []
@@ -299,18 +311,28 @@ module Aws::S3
299
311
  attr_accessor last_modified: ::Time
300
312
  attr_accessor checksum_crc32: ::String
301
313
  attr_accessor checksum_crc32c: ::String
314
+ attr_accessor checksum_crc64nvme: ::String
302
315
  attr_accessor checksum_sha1: ::String
303
316
  attr_accessor checksum_sha256: ::String
304
317
  SENSITIVE: []
305
318
  end
306
319
 
307
320
  class CreateBucketConfiguration
308
- 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")
309
322
  attr_accessor location: Types::LocationInfo
310
323
  attr_accessor bucket: Types::BucketInfo
311
324
  SENSITIVE: []
312
325
  end
313
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
+
314
336
  class CreateBucketOutput
315
337
  attr_accessor location: ::String
316
338
  SENSITIVE: []
@@ -343,7 +365,8 @@ module Aws::S3
343
365
  attr_accessor ssekms_encryption_context: ::String
344
366
  attr_accessor bucket_key_enabled: bool
345
367
  attr_accessor request_charged: ("requester")
346
- 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")
347
370
  SENSITIVE: [:ssekms_key_id, :ssekms_encryption_context]
348
371
  end
349
372
 
@@ -377,7 +400,8 @@ module Aws::S3
377
400
  attr_accessor object_lock_retain_until_date: ::Time
378
401
  attr_accessor object_lock_legal_hold_status: ("ON" | "OFF")
379
402
  attr_accessor expected_bucket_owner: ::String
380
- 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")
381
405
  SENSITIVE: [:sse_customer_key, :ssekms_key_id, :ssekms_encryption_context]
382
406
  end
383
407
 
@@ -435,6 +459,7 @@ module Aws::S3
435
459
  class DeleteBucketIntelligentTieringConfigurationRequest
436
460
  attr_accessor bucket: ::String
437
461
  attr_accessor id: ::String
462
+ attr_accessor expected_bucket_owner: ::String
438
463
  SENSITIVE: []
439
464
  end
440
465
 
@@ -451,6 +476,12 @@ module Aws::S3
451
476
  SENSITIVE: []
452
477
  end
453
478
 
479
+ class DeleteBucketMetadataTableConfigurationRequest
480
+ attr_accessor bucket: ::String
481
+ attr_accessor expected_bucket_owner: ::String
482
+ SENSITIVE: []
483
+ end
484
+
454
485
  class DeleteBucketMetricsConfigurationRequest
455
486
  attr_accessor bucket: ::String
456
487
  attr_accessor id: ::String
@@ -523,6 +554,9 @@ module Aws::S3
523
554
  attr_accessor request_payer: ("requester")
524
555
  attr_accessor bypass_governance_retention: bool
525
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
526
560
  SENSITIVE: []
527
561
  end
528
562
 
@@ -553,7 +587,7 @@ module Aws::S3
553
587
  attr_accessor request_payer: ("requester")
554
588
  attr_accessor bypass_governance_retention: bool
555
589
  attr_accessor expected_bucket_owner: ::String
556
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
590
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
557
591
  SENSITIVE: []
558
592
  end
559
593
 
@@ -594,6 +628,9 @@ module Aws::S3
594
628
  SENSITIVE: []
595
629
  end
596
630
 
631
+ class EncryptionTypeMismatch < Aws::EmptyStructure
632
+ end
633
+
597
634
  class EndEvent
598
635
  attr_accessor event_type: untyped
599
636
  SENSITIVE: []
@@ -607,6 +644,12 @@ module Aws::S3
607
644
  SENSITIVE: []
608
645
  end
609
646
 
647
+ class ErrorDetails
648
+ attr_accessor error_code: ::String
649
+ attr_accessor error_message: ::String
650
+ SENSITIVE: []
651
+ end
652
+
610
653
  class ErrorDocument
611
654
  attr_accessor key: ::String
612
655
  SENSITIVE: []
@@ -693,6 +736,7 @@ module Aws::S3
693
736
  class GetBucketIntelligentTieringConfigurationRequest
694
737
  attr_accessor bucket: ::String
695
738
  attr_accessor id: ::String
739
+ attr_accessor expected_bucket_owner: ::String
696
740
  SENSITIVE: []
697
741
  end
698
742
 
@@ -732,7 +776,7 @@ module Aws::S3
732
776
  end
733
777
 
734
778
  class GetBucketLocationOutput
735
- 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")
736
780
  SENSITIVE: []
737
781
  end
738
782
 
@@ -753,6 +797,24 @@ module Aws::S3
753
797
  SENSITIVE: []
754
798
  end
755
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
+
756
818
  class GetBucketMetricsConfigurationOutput
757
819
  attr_accessor metrics_configuration: Types::MetricsConfiguration
758
820
  SENSITIVE: []
@@ -953,8 +1015,10 @@ module Aws::S3
953
1015
  attr_accessor etag: ::String
954
1016
  attr_accessor checksum_crc32: ::String
955
1017
  attr_accessor checksum_crc32c: ::String
1018
+ attr_accessor checksum_crc64nvme: ::String
956
1019
  attr_accessor checksum_sha1: ::String
957
1020
  attr_accessor checksum_sha256: ::String
1021
+ attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
958
1022
  attr_accessor missing_meta: ::Integer
959
1023
  attr_accessor version_id: ::String
960
1024
  attr_accessor cache_control: ::String
@@ -1083,7 +1147,7 @@ module Aws::S3
1083
1147
  end
1084
1148
 
1085
1149
  class HeadBucketOutput
1086
- attr_accessor bucket_location_type: ("AvailabilityZone")
1150
+ attr_accessor bucket_location_type: ("AvailabilityZone" | "LocalZone")
1087
1151
  attr_accessor bucket_location_name: ::String
1088
1152
  attr_accessor bucket_region: ::String
1089
1153
  attr_accessor access_point_alias: bool
@@ -1106,8 +1170,10 @@ module Aws::S3
1106
1170
  attr_accessor content_length: ::Integer
1107
1171
  attr_accessor checksum_crc32: ::String
1108
1172
  attr_accessor checksum_crc32c: ::String
1173
+ attr_accessor checksum_crc64nvme: ::String
1109
1174
  attr_accessor checksum_sha1: ::String
1110
1175
  attr_accessor checksum_sha256: ::String
1176
+ attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
1111
1177
  attr_accessor etag: ::String
1112
1178
  attr_accessor missing_meta: ::Integer
1113
1179
  attr_accessor version_id: ::String
@@ -1116,6 +1182,7 @@ module Aws::S3
1116
1182
  attr_accessor content_encoding: ::String
1117
1183
  attr_accessor content_language: ::String
1118
1184
  attr_accessor content_type: ::String
1185
+ attr_accessor content_range: ::String
1119
1186
  attr_accessor expires: ::Time
1120
1187
  attr_accessor expires_string: ::String
1121
1188
  attr_accessor website_redirect_location: ::String
@@ -1129,6 +1196,7 @@ module Aws::S3
1129
1196
  attr_accessor request_charged: ("requester")
1130
1197
  attr_accessor replication_status: ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
1131
1198
  attr_accessor parts_count: ::Integer
1199
+ attr_accessor tag_count: ::Integer
1132
1200
  attr_accessor object_lock_mode: ("GOVERNANCE" | "COMPLIANCE")
1133
1201
  attr_accessor object_lock_retain_until_date: ::Time
1134
1202
  attr_accessor object_lock_legal_hold_status: ("ON" | "OFF")
@@ -1160,6 +1228,9 @@ module Aws::S3
1160
1228
  SENSITIVE: [:sse_customer_key]
1161
1229
  end
1162
1230
 
1231
+ class IdempotencyParameterMismatch < Aws::EmptyStructure
1232
+ end
1233
+
1163
1234
  class IndexDocument
1164
1235
  attr_accessor suffix: ::String
1165
1236
  SENSITIVE: []
@@ -1206,6 +1277,12 @@ module Aws::S3
1206
1277
  SENSITIVE: []
1207
1278
  end
1208
1279
 
1280
+ class InvalidRequest < Aws::EmptyStructure
1281
+ end
1282
+
1283
+ class InvalidWriteOffset < Aws::EmptyStructure
1284
+ end
1285
+
1209
1286
  class InventoryConfiguration
1210
1287
  attr_accessor destination: Types::InventoryDestination
1211
1288
  attr_accessor is_enabled: bool
@@ -1333,6 +1410,7 @@ module Aws::S3
1333
1410
  class ListBucketIntelligentTieringConfigurationsRequest
1334
1411
  attr_accessor bucket: ::String
1335
1412
  attr_accessor continuation_token: ::String
1413
+ attr_accessor expected_bucket_owner: ::String
1336
1414
  SENSITIVE: []
1337
1415
  end
1338
1416
 
@@ -1531,7 +1609,8 @@ module Aws::S3
1531
1609
  attr_accessor owner: Types::Owner
1532
1610
  attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
1533
1611
  attr_accessor request_charged: ("requester")
1534
- 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")
1535
1614
  SENSITIVE: []
1536
1615
  end
1537
1616
 
@@ -1550,7 +1629,7 @@ module Aws::S3
1550
1629
  end
1551
1630
 
1552
1631
  class LocationInfo
1553
- attr_accessor type: ("AvailabilityZone")
1632
+ attr_accessor type: ("AvailabilityZone" | "LocalZone")
1554
1633
  attr_accessor name: ::String
1555
1634
  SENSITIVE: []
1556
1635
  end
@@ -1569,6 +1648,16 @@ module Aws::S3
1569
1648
  SENSITIVE: []
1570
1649
  end
1571
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
+
1572
1661
  class Metrics
1573
1662
  attr_accessor status: ("Enabled" | "Disabled")
1574
1663
  attr_accessor event_threshold: Types::ReplicationTimeValue
@@ -1603,7 +1692,8 @@ module Aws::S3
1603
1692
  attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
1604
1693
  attr_accessor owner: Types::Owner
1605
1694
  attr_accessor initiator: Types::Initiator
1606
- 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")
1607
1697
  SENSITIVE: []
1608
1698
  end
1609
1699
 
@@ -1653,7 +1743,8 @@ module Aws::S3
1653
1743
  attr_accessor key: ::String
1654
1744
  attr_accessor last_modified: ::Time
1655
1745
  attr_accessor etag: ::String
1656
- 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")
1657
1748
  attr_accessor size: ::Integer
1658
1749
  attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "GLACIER" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
1659
1750
  attr_accessor owner: Types::Owner
@@ -1667,6 +1758,9 @@ module Aws::S3
1667
1758
  class ObjectIdentifier
1668
1759
  attr_accessor key: ::String
1669
1760
  attr_accessor version_id: ::String
1761
+ attr_accessor etag: ::String
1762
+ attr_accessor last_modified_time: ::Time
1763
+ attr_accessor size: ::Integer
1670
1764
  SENSITIVE: []
1671
1765
  end
1672
1766
 
@@ -1700,6 +1794,7 @@ module Aws::S3
1700
1794
  attr_accessor size: ::Integer
1701
1795
  attr_accessor checksum_crc32: ::String
1702
1796
  attr_accessor checksum_crc32c: ::String
1797
+ attr_accessor checksum_crc64nvme: ::String
1703
1798
  attr_accessor checksum_sha1: ::String
1704
1799
  attr_accessor checksum_sha256: ::String
1705
1800
  SENSITIVE: []
@@ -1707,7 +1802,8 @@ module Aws::S3
1707
1802
 
1708
1803
  class ObjectVersion
1709
1804
  attr_accessor etag: ::String
1710
- 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")
1711
1807
  attr_accessor size: ::Integer
1712
1808
  attr_accessor storage_class: ("STANDARD")
1713
1809
  attr_accessor key: ::String
@@ -1756,6 +1852,7 @@ module Aws::S3
1756
1852
  attr_accessor size: ::Integer
1757
1853
  attr_accessor checksum_crc32: ::String
1758
1854
  attr_accessor checksum_crc32c: ::String
1855
+ attr_accessor checksum_crc64nvme: ::String
1759
1856
  attr_accessor checksum_sha1: ::String
1760
1857
  attr_accessor checksum_sha256: ::String
1761
1858
  SENSITIVE: []
@@ -1796,7 +1893,7 @@ module Aws::S3
1796
1893
  attr_accessor bucket: ::String
1797
1894
  attr_accessor accelerate_configuration: Types::AccelerateConfiguration
1798
1895
  attr_accessor expected_bucket_owner: ::String
1799
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
1896
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1800
1897
  SENSITIVE: []
1801
1898
  end
1802
1899
 
@@ -1805,7 +1902,7 @@ module Aws::S3
1805
1902
  attr_accessor access_control_policy: Types::AccessControlPolicy
1806
1903
  attr_accessor bucket: ::String
1807
1904
  attr_accessor content_md5: ::String
1808
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
1905
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1809
1906
  attr_accessor grant_full_control: ::String
1810
1907
  attr_accessor grant_read: ::String
1811
1908
  attr_accessor grant_read_acp: ::String
@@ -1827,7 +1924,7 @@ module Aws::S3
1827
1924
  attr_accessor bucket: ::String
1828
1925
  attr_accessor cors_configuration: Types::CORSConfiguration
1829
1926
  attr_accessor content_md5: ::String
1830
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
1927
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1831
1928
  attr_accessor expected_bucket_owner: ::String
1832
1929
  SENSITIVE: []
1833
1930
  end
@@ -1835,7 +1932,7 @@ module Aws::S3
1835
1932
  class PutBucketEncryptionRequest
1836
1933
  attr_accessor bucket: ::String
1837
1934
  attr_accessor content_md5: ::String
1838
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
1935
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1839
1936
  attr_accessor server_side_encryption_configuration: Types::ServerSideEncryptionConfiguration
1840
1937
  attr_accessor expected_bucket_owner: ::String
1841
1938
  SENSITIVE: []
@@ -1844,6 +1941,7 @@ module Aws::S3
1844
1941
  class PutBucketIntelligentTieringConfigurationRequest
1845
1942
  attr_accessor bucket: ::String
1846
1943
  attr_accessor id: ::String
1944
+ attr_accessor expected_bucket_owner: ::String
1847
1945
  attr_accessor intelligent_tiering_configuration: Types::IntelligentTieringConfiguration
1848
1946
  SENSITIVE: []
1849
1947
  end
@@ -1863,7 +1961,7 @@ module Aws::S3
1863
1961
 
1864
1962
  class PutBucketLifecycleConfigurationRequest
1865
1963
  attr_accessor bucket: ::String
1866
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
1964
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1867
1965
  attr_accessor lifecycle_configuration: Types::BucketLifecycleConfiguration
1868
1966
  attr_accessor expected_bucket_owner: ::String
1869
1967
  attr_accessor transition_default_minimum_object_size: ("varies_by_storage_class" | "all_storage_classes_128K")
@@ -1873,7 +1971,7 @@ module Aws::S3
1873
1971
  class PutBucketLifecycleRequest
1874
1972
  attr_accessor bucket: ::String
1875
1973
  attr_accessor content_md5: ::String
1876
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
1974
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1877
1975
  attr_accessor lifecycle_configuration: Types::LifecycleConfiguration
1878
1976
  attr_accessor expected_bucket_owner: ::String
1879
1977
  SENSITIVE: []
@@ -1883,7 +1981,7 @@ module Aws::S3
1883
1981
  attr_accessor bucket: ::String
1884
1982
  attr_accessor bucket_logging_status: Types::BucketLoggingStatus
1885
1983
  attr_accessor content_md5: ::String
1886
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
1984
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1887
1985
  attr_accessor expected_bucket_owner: ::String
1888
1986
  SENSITIVE: []
1889
1987
  end
@@ -1907,7 +2005,7 @@ module Aws::S3
1907
2005
  class PutBucketNotificationRequest
1908
2006
  attr_accessor bucket: ::String
1909
2007
  attr_accessor content_md5: ::String
1910
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2008
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1911
2009
  attr_accessor notification_configuration: Types::NotificationConfigurationDeprecated
1912
2010
  attr_accessor expected_bucket_owner: ::String
1913
2011
  SENSITIVE: []
@@ -1918,13 +2016,14 @@ module Aws::S3
1918
2016
  attr_accessor content_md5: ::String
1919
2017
  attr_accessor expected_bucket_owner: ::String
1920
2018
  attr_accessor ownership_controls: Types::OwnershipControls
2019
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1921
2020
  SENSITIVE: []
1922
2021
  end
1923
2022
 
1924
2023
  class PutBucketPolicyRequest
1925
2024
  attr_accessor bucket: ::String
1926
2025
  attr_accessor content_md5: ::String
1927
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2026
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1928
2027
  attr_accessor confirm_remove_self_bucket_access: bool
1929
2028
  attr_accessor policy: ::IO
1930
2029
  attr_accessor expected_bucket_owner: ::String
@@ -1934,7 +2033,7 @@ module Aws::S3
1934
2033
  class PutBucketReplicationRequest
1935
2034
  attr_accessor bucket: ::String
1936
2035
  attr_accessor content_md5: ::String
1937
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2036
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1938
2037
  attr_accessor replication_configuration: Types::ReplicationConfiguration
1939
2038
  attr_accessor token: ::String
1940
2039
  attr_accessor expected_bucket_owner: ::String
@@ -1944,7 +2043,7 @@ module Aws::S3
1944
2043
  class PutBucketRequestPaymentRequest
1945
2044
  attr_accessor bucket: ::String
1946
2045
  attr_accessor content_md5: ::String
1947
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2046
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1948
2047
  attr_accessor request_payment_configuration: Types::RequestPaymentConfiguration
1949
2048
  attr_accessor expected_bucket_owner: ::String
1950
2049
  SENSITIVE: []
@@ -1953,7 +2052,7 @@ module Aws::S3
1953
2052
  class PutBucketTaggingRequest
1954
2053
  attr_accessor bucket: ::String
1955
2054
  attr_accessor content_md5: ::String
1956
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2055
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1957
2056
  attr_accessor tagging: Types::Tagging
1958
2057
  attr_accessor expected_bucket_owner: ::String
1959
2058
  SENSITIVE: []
@@ -1962,7 +2061,7 @@ module Aws::S3
1962
2061
  class PutBucketVersioningRequest
1963
2062
  attr_accessor bucket: ::String
1964
2063
  attr_accessor content_md5: ::String
1965
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2064
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1966
2065
  attr_accessor mfa: ::String
1967
2066
  attr_accessor versioning_configuration: Types::VersioningConfiguration
1968
2067
  attr_accessor expected_bucket_owner: ::String
@@ -1972,7 +2071,7 @@ module Aws::S3
1972
2071
  class PutBucketWebsiteRequest
1973
2072
  attr_accessor bucket: ::String
1974
2073
  attr_accessor content_md5: ::String
1975
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2074
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1976
2075
  attr_accessor website_configuration: Types::WebsiteConfiguration
1977
2076
  attr_accessor expected_bucket_owner: ::String
1978
2077
  SENSITIVE: []
@@ -1988,7 +2087,7 @@ module Aws::S3
1988
2087
  attr_accessor access_control_policy: Types::AccessControlPolicy
1989
2088
  attr_accessor bucket: ::String
1990
2089
  attr_accessor content_md5: ::String
1991
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2090
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1992
2091
  attr_accessor grant_full_control: ::String
1993
2092
  attr_accessor grant_read: ::String
1994
2093
  attr_accessor grant_read_acp: ::String
@@ -2013,7 +2112,7 @@ module Aws::S3
2013
2112
  attr_accessor request_payer: ("requester")
2014
2113
  attr_accessor version_id: ::String
2015
2114
  attr_accessor content_md5: ::String
2016
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2115
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
2017
2116
  attr_accessor expected_bucket_owner: ::String
2018
2117
  SENSITIVE: []
2019
2118
  end
@@ -2029,7 +2128,7 @@ module Aws::S3
2029
2128
  attr_accessor request_payer: ("requester")
2030
2129
  attr_accessor token: ::String
2031
2130
  attr_accessor content_md5: ::String
2032
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2131
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
2033
2132
  attr_accessor expected_bucket_owner: ::String
2034
2133
  SENSITIVE: []
2035
2134
  end
@@ -2039,8 +2138,10 @@ module Aws::S3
2039
2138
  attr_accessor etag: ::String
2040
2139
  attr_accessor checksum_crc32: ::String
2041
2140
  attr_accessor checksum_crc32c: ::String
2141
+ attr_accessor checksum_crc64nvme: ::String
2042
2142
  attr_accessor checksum_sha1: ::String
2043
2143
  attr_accessor checksum_sha256: ::String
2144
+ attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
2044
2145
  attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
2045
2146
  attr_accessor version_id: ::String
2046
2147
  attr_accessor sse_customer_algorithm: ::String
@@ -2048,6 +2149,7 @@ module Aws::S3
2048
2149
  attr_accessor ssekms_key_id: ::String
2049
2150
  attr_accessor ssekms_encryption_context: ::String
2050
2151
  attr_accessor bucket_key_enabled: bool
2152
+ attr_accessor size: ::Integer
2051
2153
  attr_accessor request_charged: ("requester")
2052
2154
  SENSITIVE: [:ssekms_key_id, :ssekms_encryption_context]
2053
2155
  end
@@ -2063,18 +2165,21 @@ module Aws::S3
2063
2165
  attr_accessor content_length: ::Integer
2064
2166
  attr_accessor content_md5: ::String
2065
2167
  attr_accessor content_type: ::String
2066
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2168
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
2067
2169
  attr_accessor checksum_crc32: ::String
2068
2170
  attr_accessor checksum_crc32c: ::String
2171
+ attr_accessor checksum_crc64nvme: ::String
2069
2172
  attr_accessor checksum_sha1: ::String
2070
2173
  attr_accessor checksum_sha256: ::String
2071
2174
  attr_accessor expires: ::Time
2175
+ attr_accessor if_match: ::String
2072
2176
  attr_accessor if_none_match: ::String
2073
2177
  attr_accessor grant_full_control: ::String
2074
2178
  attr_accessor grant_read: ::String
2075
2179
  attr_accessor grant_read_acp: ::String
2076
2180
  attr_accessor grant_write_acp: ::String
2077
2181
  attr_accessor key: ::String
2182
+ attr_accessor write_offset_bytes: ::Integer
2078
2183
  attr_accessor metadata: ::Hash[::String, ::String]
2079
2184
  attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
2080
2185
  attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
@@ -2107,7 +2212,7 @@ module Aws::S3
2107
2212
  attr_accessor version_id: ::String
2108
2213
  attr_accessor bypass_governance_retention: bool
2109
2214
  attr_accessor content_md5: ::String
2110
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2215
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
2111
2216
  attr_accessor expected_bucket_owner: ::String
2112
2217
  SENSITIVE: []
2113
2218
  end
@@ -2122,7 +2227,7 @@ module Aws::S3
2122
2227
  attr_accessor key: ::String
2123
2228
  attr_accessor version_id: ::String
2124
2229
  attr_accessor content_md5: ::String
2125
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2230
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
2126
2231
  attr_accessor tagging: Types::Tagging
2127
2232
  attr_accessor expected_bucket_owner: ::String
2128
2233
  attr_accessor request_payer: ("requester")
@@ -2132,7 +2237,7 @@ module Aws::S3
2132
2237
  class PutPublicAccessBlockRequest
2133
2238
  attr_accessor bucket: ::String
2134
2239
  attr_accessor content_md5: ::String
2135
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2240
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
2136
2241
  attr_accessor public_access_block_configuration: Types::PublicAccessBlockConfiguration
2137
2242
  attr_accessor expected_bucket_owner: ::String
2138
2243
  SENSITIVE: []
@@ -2175,6 +2280,25 @@ module Aws::S3
2175
2280
  SENSITIVE: []
2176
2281
  end
2177
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
+
2178
2302
  class ReplicaModifications
2179
2303
  attr_accessor status: ("Enabled" | "Disabled")
2180
2304
  SENSITIVE: []
@@ -2245,7 +2369,7 @@ module Aws::S3
2245
2369
  attr_accessor version_id: ::String
2246
2370
  attr_accessor restore_request: Types::RestoreRequest
2247
2371
  attr_accessor request_payer: ("requester")
2248
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2372
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
2249
2373
  attr_accessor expected_bucket_owner: ::String
2250
2374
  SENSITIVE: []
2251
2375
  end
@@ -2302,6 +2426,20 @@ module Aws::S3
2302
2426
  SENSITIVE: []
2303
2427
  end
2304
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
+
2305
2443
  class SSEKMS
2306
2444
  attr_accessor key_id: ::String
2307
2445
  SENSITIVE: [:key_id]
@@ -2437,6 +2575,9 @@ module Aws::S3
2437
2575
  SENSITIVE: []
2438
2576
  end
2439
2577
 
2578
+ class TooManyParts < Aws::EmptyStructure
2579
+ end
2580
+
2440
2581
  class TopicConfiguration
2441
2582
  attr_accessor id: ::String
2442
2583
  attr_accessor topic_arn: ::String
@@ -2500,6 +2641,7 @@ module Aws::S3
2500
2641
  attr_accessor etag: ::String
2501
2642
  attr_accessor checksum_crc32: ::String
2502
2643
  attr_accessor checksum_crc32c: ::String
2644
+ attr_accessor checksum_crc64nvme: ::String
2503
2645
  attr_accessor checksum_sha1: ::String
2504
2646
  attr_accessor checksum_sha256: ::String
2505
2647
  attr_accessor sse_customer_algorithm: ::String
@@ -2515,9 +2657,10 @@ module Aws::S3
2515
2657
  attr_accessor bucket: ::String
2516
2658
  attr_accessor content_length: ::Integer
2517
2659
  attr_accessor content_md5: ::String
2518
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
2660
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
2519
2661
  attr_accessor checksum_crc32: ::String
2520
2662
  attr_accessor checksum_crc32c: ::String
2663
+ attr_accessor checksum_crc64nvme: ::String
2521
2664
  attr_accessor checksum_sha1: ::String
2522
2665
  attr_accessor checksum_sha256: ::String
2523
2666
  attr_accessor key: ::String
@@ -2562,6 +2705,7 @@ module Aws::S3
2562
2705
  attr_accessor content_type: ::String
2563
2706
  attr_accessor checksum_crc32: ::String
2564
2707
  attr_accessor checksum_crc32c: ::String
2708
+ attr_accessor checksum_crc64nvme: ::String
2565
2709
  attr_accessor checksum_sha1: ::String
2566
2710
  attr_accessor checksum_sha256: ::String
2567
2711
  attr_accessor delete_marker: bool