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/client.rbs CHANGED
@@ -17,6 +17,7 @@ module Aws
17
17
  ?access_grants: bool,
18
18
  ?access_grants_credentials_provider: untyped,
19
19
  ?access_key_id: String,
20
+ ?account_id: String,
20
21
  ?active_endpoint_cache: bool,
21
22
  ?adaptive_retry_wait_to_fill: bool,
22
23
  ?client_side_monitoring: bool,
@@ -48,8 +49,10 @@ module Aws
48
49
  ?max_attempts: Integer,
49
50
  ?output_event_stream_handler: Proc,
50
51
  ?profile: String,
52
+ ?request_checksum_calculation: String,
51
53
  ?request_min_compression_size_bytes: Integer,
52
54
  ?require_https_for_sse_cpk: bool,
55
+ ?response_checksum_validation: String,
53
56
  ?retry_backoff: Proc,
54
57
  ?retry_base_delay: Float,
55
58
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
@@ -64,6 +67,7 @@ module Aws
64
67
  ?session_token: String,
65
68
  ?sigv4a_signing_region_set: Array[String],
66
69
  ?stub_responses: untyped,
70
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
67
71
  ?token_provider: untyped,
68
72
  ?use_accelerate_endpoint: bool,
69
73
  ?use_dualstack_endpoint: bool,
@@ -98,7 +102,8 @@ module Aws
98
102
  key: ::String,
99
103
  upload_id: ::String,
100
104
  ?request_payer: ("requester"),
101
- ?expected_bucket_owner: ::String
105
+ ?expected_bucket_owner: ::String,
106
+ ?if_match_initiated_time: ::Time
102
107
  ) -> _AbortMultipartUploadResponseSuccess
103
108
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AbortMultipartUploadResponseSuccess
104
109
 
@@ -111,8 +116,10 @@ module Aws
111
116
  def etag: () -> ::String
112
117
  def checksum_crc32: () -> ::String
113
118
  def checksum_crc32c: () -> ::String
119
+ def checksum_crc64nvme: () -> ::String
114
120
  def checksum_sha1: () -> ::String
115
121
  def checksum_sha256: () -> ::String
122
+ def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
116
123
  def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
117
124
  def version_id: () -> ::String
118
125
  def ssekms_key_id: () -> ::String
@@ -129,6 +136,7 @@ module Aws
129
136
  etag: ::String?,
130
137
  checksum_crc32: ::String?,
131
138
  checksum_crc32c: ::String?,
139
+ checksum_crc64nvme: ::String?,
132
140
  checksum_sha1: ::String?,
133
141
  checksum_sha256: ::String?,
134
142
  part_number: ::Integer?
@@ -138,10 +146,15 @@ module Aws
138
146
  upload_id: ::String,
139
147
  ?checksum_crc32: ::String,
140
148
  ?checksum_crc32c: ::String,
149
+ ?checksum_crc64nvme: ::String,
141
150
  ?checksum_sha1: ::String,
142
151
  ?checksum_sha256: ::String,
152
+ ?checksum_type: ("COMPOSITE" | "FULL_OBJECT"),
153
+ ?mpu_object_size: ::Integer,
143
154
  ?request_payer: ("requester"),
144
155
  ?expected_bucket_owner: ::String,
156
+ ?if_match: ::String,
157
+ ?if_none_match: ::String,
145
158
  ?sse_customer_algorithm: ::String,
146
159
  ?sse_customer_key: ::String,
147
160
  ?sse_customer_key_md5: ::String
@@ -167,7 +180,7 @@ module Aws
167
180
  ?acl: ("private" | "public-read" | "public-read-write" | "authenticated-read" | "aws-exec-read" | "bucket-owner-read" | "bucket-owner-full-control"),
168
181
  bucket: ::String,
169
182
  ?cache_control: ::String,
170
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
183
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
171
184
  ?content_disposition: ::String,
172
185
  ?content_encoding: ::String,
173
186
  ?content_language: ::String,
@@ -217,13 +230,13 @@ module Aws
217
230
  ?acl: ("private" | "public-read" | "public-read-write" | "authenticated-read"),
218
231
  bucket: ::String,
219
232
  ?create_bucket_configuration: {
220
- 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")?,
233
+ 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")?,
221
234
  location: {
222
- type: ("AvailabilityZone")?,
235
+ type: ("AvailabilityZone" | "LocalZone")?,
223
236
  name: ::String?
224
237
  }?,
225
238
  bucket: {
226
- data_redundancy: ("SingleAvailabilityZone")?,
239
+ data_redundancy: ("SingleAvailabilityZone" | "SingleLocalZone")?,
227
240
  type: ("Directory")?
228
241
  }?
229
242
  },
@@ -237,6 +250,21 @@ module Aws
237
250
  ) -> _CreateBucketResponseSuccess
238
251
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateBucketResponseSuccess
239
252
 
253
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#create_bucket_metadata_table_configuration-instance_method
254
+ def create_bucket_metadata_table_configuration: (
255
+ bucket: ::String,
256
+ ?content_md5: ::String,
257
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
258
+ metadata_table_configuration: {
259
+ s3_tables_destination: {
260
+ table_bucket_arn: ::String,
261
+ table_name: ::String
262
+ }
263
+ },
264
+ ?expected_bucket_owner: ::String
265
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
266
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
267
+
240
268
  interface _CreateMultipartUploadResponseSuccess
241
269
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateMultipartUploadOutput]
242
270
  def abort_date: () -> ::Time
@@ -251,7 +279,8 @@ module Aws
251
279
  def ssekms_encryption_context: () -> ::String
252
280
  def bucket_key_enabled: () -> bool
253
281
  def request_charged: () -> ("requester")
254
- def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
282
+ def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
283
+ def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
255
284
  end
256
285
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#create_multipart_upload-instance_method
257
286
  def create_multipart_upload: (
@@ -284,18 +313,27 @@ module Aws
284
313
  ?object_lock_retain_until_date: ::Time,
285
314
  ?object_lock_legal_hold_status: ("ON" | "OFF"),
286
315
  ?expected_bucket_owner: ::String,
287
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
316
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
317
+ ?checksum_type: ("COMPOSITE" | "FULL_OBJECT")
288
318
  ) -> _CreateMultipartUploadResponseSuccess
289
319
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMultipartUploadResponseSuccess
290
320
 
291
321
  interface _CreateSessionResponseSuccess
292
322
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateSessionOutput]
323
+ def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
324
+ def ssekms_key_id: () -> ::String
325
+ def ssekms_encryption_context: () -> ::String
326
+ def bucket_key_enabled: () -> bool
293
327
  def credentials: () -> Types::SessionCredentials
294
328
  end
295
329
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#create_session-instance_method
296
330
  def create_session: (
297
331
  ?session_mode: ("ReadOnly" | "ReadWrite"),
298
- bucket: ::String
332
+ bucket: ::String,
333
+ ?server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse"),
334
+ ?ssekms_key_id: ::String,
335
+ ?ssekms_encryption_context: ::String,
336
+ ?bucket_key_enabled: bool
299
337
  ) -> _CreateSessionResponseSuccess
300
338
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSessionResponseSuccess
301
339
 
@@ -331,7 +369,8 @@ module Aws
331
369
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#delete_bucket_intelligent_tiering_configuration-instance_method
332
370
  def delete_bucket_intelligent_tiering_configuration: (
333
371
  bucket: ::String,
334
- id: ::String
372
+ id: ::String,
373
+ ?expected_bucket_owner: ::String
335
374
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
336
375
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
337
376
 
@@ -350,6 +389,13 @@ module Aws
350
389
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
351
390
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
352
391
 
392
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#delete_bucket_metadata_table_configuration-instance_method
393
+ def delete_bucket_metadata_table_configuration: (
394
+ bucket: ::String,
395
+ ?expected_bucket_owner: ::String
396
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
397
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
398
+
353
399
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#delete_bucket_metrics_configuration-instance_method
354
400
  def delete_bucket_metrics_configuration: (
355
401
  bucket: ::String,
@@ -407,7 +453,10 @@ module Aws
407
453
  ?version_id: ::String,
408
454
  ?request_payer: ("requester"),
409
455
  ?bypass_governance_retention: bool,
410
- ?expected_bucket_owner: ::String
456
+ ?expected_bucket_owner: ::String,
457
+ ?if_match: ::String,
458
+ ?if_match_last_modified_time: ::Time,
459
+ ?if_match_size: ::Integer
411
460
  ) -> _DeleteObjectResponseSuccess
412
461
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteObjectResponseSuccess
413
462
 
@@ -437,7 +486,10 @@ module Aws
437
486
  objects: Array[
438
487
  {
439
488
  key: ::String,
440
- version_id: ::String?
489
+ version_id: ::String?,
490
+ etag: ::String?,
491
+ last_modified_time: ::Time?,
492
+ size: ::Integer?
441
493
  },
442
494
  ],
443
495
  quiet: bool?
@@ -446,7 +498,7 @@ module Aws
446
498
  ?request_payer: ("requester"),
447
499
  ?bypass_governance_retention: bool,
448
500
  ?expected_bucket_owner: ::String,
449
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
501
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
450
502
  ) -> _DeleteObjectsResponseSuccess
451
503
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteObjectsResponseSuccess
452
504
 
@@ -523,7 +575,8 @@ module Aws
523
575
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#get_bucket_intelligent_tiering_configuration-instance_method
524
576
  def get_bucket_intelligent_tiering_configuration: (
525
577
  bucket: ::String,
526
- id: ::String
578
+ id: ::String,
579
+ ?expected_bucket_owner: ::String
527
580
  ) -> _GetBucketIntelligentTieringConfigurationResponseSuccess
528
581
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBucketIntelligentTieringConfigurationResponseSuccess
529
582
 
@@ -553,6 +606,7 @@ module Aws
553
606
  interface _GetBucketLifecycleConfigurationResponseSuccess
554
607
  include ::Seahorse::Client::_ResponseSuccess[Types::GetBucketLifecycleConfigurationOutput]
555
608
  def rules: () -> ::Array[Types::LifecycleRule]
609
+ def transition_default_minimum_object_size: () -> ("varies_by_storage_class" | "all_storage_classes_128K")
556
610
  end
557
611
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#get_bucket_lifecycle_configuration-instance_method
558
612
  def get_bucket_lifecycle_configuration: (
@@ -563,7 +617,7 @@ module Aws
563
617
 
564
618
  interface _GetBucketLocationResponseSuccess
565
619
  include ::Seahorse::Client::_ResponseSuccess[Types::GetBucketLocationOutput]
566
- 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")
620
+ 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")
567
621
  end
568
622
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#get_bucket_location-instance_method
569
623
  def get_bucket_location: (
@@ -583,6 +637,17 @@ module Aws
583
637
  ) -> _GetBucketLoggingResponseSuccess
584
638
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBucketLoggingResponseSuccess
585
639
 
640
+ interface _GetBucketMetadataTableConfigurationResponseSuccess
641
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetBucketMetadataTableConfigurationOutput]
642
+ def get_bucket_metadata_table_configuration_result: () -> Types::GetBucketMetadataTableConfigurationResult
643
+ end
644
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#get_bucket_metadata_table_configuration-instance_method
645
+ def get_bucket_metadata_table_configuration: (
646
+ bucket: ::String,
647
+ ?expected_bucket_owner: ::String
648
+ ) -> _GetBucketMetadataTableConfigurationResponseSuccess
649
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBucketMetadataTableConfigurationResponseSuccess
650
+
586
651
  interface _GetBucketMetricsConfigurationResponseSuccess
587
652
  include ::Seahorse::Client::_ResponseSuccess[Types::GetBucketMetricsConfigurationOutput]
588
653
  def metrics_configuration: () -> Types::MetricsConfiguration
@@ -726,8 +791,10 @@ module Aws
726
791
  def etag: () -> ::String
727
792
  def checksum_crc32: () -> ::String
728
793
  def checksum_crc32c: () -> ::String
794
+ def checksum_crc64nvme: () -> ::String
729
795
  def checksum_sha1: () -> ::String
730
796
  def checksum_sha256: () -> ::String
797
+ def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
731
798
  def missing_meta: () -> ::Integer
732
799
  def version_id: () -> ::String
733
800
  def cache_control: () -> ::String
@@ -905,7 +972,7 @@ module Aws
905
972
 
906
973
  interface _HeadBucketResponseSuccess
907
974
  include ::Seahorse::Client::_ResponseSuccess[Types::HeadBucketOutput]
908
- def bucket_location_type: () -> ("AvailabilityZone")
975
+ def bucket_location_type: () -> ("AvailabilityZone" | "LocalZone")
909
976
  def bucket_location_name: () -> ::String
910
977
  def bucket_region: () -> ::String
911
978
  def access_point_alias: () -> bool
@@ -928,8 +995,10 @@ module Aws
928
995
  def content_length: () -> ::Integer
929
996
  def checksum_crc32: () -> ::String
930
997
  def checksum_crc32c: () -> ::String
998
+ def checksum_crc64nvme: () -> ::String
931
999
  def checksum_sha1: () -> ::String
932
1000
  def checksum_sha256: () -> ::String
1001
+ def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
933
1002
  def etag: () -> ::String
934
1003
  def missing_meta: () -> ::Integer
935
1004
  def version_id: () -> ::String
@@ -938,6 +1007,7 @@ module Aws
938
1007
  def content_encoding: () -> ::String
939
1008
  def content_language: () -> ::String
940
1009
  def content_type: () -> ::String
1010
+ def content_range: () -> ::String
941
1011
  def expires: () -> ::Time
942
1012
  def expires_string: () -> ::String
943
1013
  def website_redirect_location: () -> ::String
@@ -951,6 +1021,7 @@ module Aws
951
1021
  def request_charged: () -> ("requester")
952
1022
  def replication_status: () -> ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
953
1023
  def parts_count: () -> ::Integer
1024
+ def tag_count: () -> ::Integer
954
1025
  def object_lock_mode: () -> ("GOVERNANCE" | "COMPLIANCE")
955
1026
  def object_lock_retain_until_date: () -> ::Time
956
1027
  def object_lock_legal_hold_status: () -> ("ON" | "OFF")
@@ -1006,7 +1077,8 @@ module Aws
1006
1077
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#list_bucket_intelligent_tiering_configurations-instance_method
1007
1078
  def list_bucket_intelligent_tiering_configurations: (
1008
1079
  bucket: ::String,
1009
- ?continuation_token: ::String
1080
+ ?continuation_token: ::String,
1081
+ ?expected_bucket_owner: ::String
1010
1082
  ) -> _ListBucketIntelligentTieringConfigurationsResponseSuccess
1011
1083
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBucketIntelligentTieringConfigurationsResponseSuccess
1012
1084
 
@@ -1044,9 +1116,16 @@ module Aws
1044
1116
  include ::Seahorse::Client::_ResponseSuccess[Types::ListBucketsOutput]
1045
1117
  def buckets: () -> ::Array[Types::Bucket]
1046
1118
  def owner: () -> Types::Owner
1119
+ def continuation_token: () -> ::String
1120
+ def prefix: () -> ::String
1047
1121
  end
1048
1122
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#list_buckets-instance_method
1049
- def list_buckets: () -> _ListBucketsResponseSuccess
1123
+ def list_buckets: (
1124
+ ?max_buckets: ::Integer,
1125
+ ?continuation_token: ::String,
1126
+ ?prefix: ::String,
1127
+ ?bucket_region: ::String
1128
+ ) -> _ListBucketsResponseSuccess
1050
1129
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBucketsResponseSuccess
1051
1130
 
1052
1131
  interface _ListDirectoryBucketsResponseSuccess
@@ -1199,7 +1278,8 @@ module Aws
1199
1278
  def owner: () -> Types::Owner
1200
1279
  def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
1201
1280
  def request_charged: () -> ("requester")
1202
- def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
1281
+ def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1282
+ def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
1203
1283
  end
1204
1284
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#list_parts-instance_method
1205
1285
  def list_parts: (
@@ -1223,7 +1303,7 @@ module Aws
1223
1303
  status: ("Enabled" | "Suspended")?
1224
1304
  },
1225
1305
  ?expected_bucket_owner: ::String,
1226
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
1306
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1227
1307
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1228
1308
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1229
1309
 
@@ -1250,7 +1330,7 @@ module Aws
1250
1330
  },
1251
1331
  bucket: ::String,
1252
1332
  ?content_md5: ::String,
1253
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1333
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1254
1334
  ?grant_full_control: ::String,
1255
1335
  ?grant_read: ::String,
1256
1336
  ?grant_read_acp: ::String,
@@ -1316,7 +1396,7 @@ module Aws
1316
1396
  ]
1317
1397
  },
1318
1398
  ?content_md5: ::String,
1319
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1399
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1320
1400
  ?expected_bucket_owner: ::String
1321
1401
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1322
1402
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
@@ -1325,7 +1405,7 @@ module Aws
1325
1405
  def put_bucket_encryption: (
1326
1406
  bucket: ::String,
1327
1407
  ?content_md5: ::String,
1328
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1408
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1329
1409
  server_side_encryption_configuration: {
1330
1410
  rules: Array[
1331
1411
  {
@@ -1345,6 +1425,7 @@ module Aws
1345
1425
  def put_bucket_intelligent_tiering_configuration: (
1346
1426
  bucket: ::String,
1347
1427
  id: ::String,
1428
+ ?expected_bucket_owner: ::String,
1348
1429
  intelligent_tiering_configuration: {
1349
1430
  id: ::String,
1350
1431
  filter: {
@@ -1413,7 +1494,7 @@ module Aws
1413
1494
  def put_bucket_lifecycle: (
1414
1495
  bucket: ::String,
1415
1496
  ?content_md5: ::String,
1416
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1497
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1417
1498
  ?lifecycle_configuration: {
1418
1499
  rules: Array[
1419
1500
  {
@@ -1449,10 +1530,14 @@ module Aws
1449
1530
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1450
1531
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1451
1532
 
1533
+ interface _PutBucketLifecycleConfigurationResponseSuccess
1534
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutBucketLifecycleConfigurationOutput]
1535
+ def transition_default_minimum_object_size: () -> ("varies_by_storage_class" | "all_storage_classes_128K")
1536
+ end
1452
1537
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#put_bucket_lifecycle_configuration-instance_method
1453
1538
  def put_bucket_lifecycle_configuration: (
1454
1539
  bucket: ::String,
1455
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1540
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1456
1541
  ?lifecycle_configuration: {
1457
1542
  rules: Array[
1458
1543
  {
@@ -1508,9 +1593,10 @@ module Aws
1508
1593
  },
1509
1594
  ]
1510
1595
  },
1511
- ?expected_bucket_owner: ::String
1512
- ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1513
- | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1596
+ ?expected_bucket_owner: ::String,
1597
+ ?transition_default_minimum_object_size: ("varies_by_storage_class" | "all_storage_classes_128K")
1598
+ ) -> _PutBucketLifecycleConfigurationResponseSuccess
1599
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutBucketLifecycleConfigurationResponseSuccess
1514
1600
 
1515
1601
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#put_bucket_logging-instance_method
1516
1602
  def put_bucket_logging: (
@@ -1541,7 +1627,7 @@ module Aws
1541
1627
  }?
1542
1628
  },
1543
1629
  ?content_md5: ::String,
1544
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1630
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1545
1631
  ?expected_bucket_owner: ::String
1546
1632
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1547
1633
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
@@ -1579,7 +1665,7 @@ module Aws
1579
1665
  def put_bucket_notification: (
1580
1666
  bucket: ::String,
1581
1667
  ?content_md5: ::String,
1582
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1668
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1583
1669
  notification_configuration: {
1584
1670
  topic_configuration: {
1585
1671
  id: ::String?,
@@ -1679,7 +1765,8 @@ module Aws
1679
1765
  object_ownership: ("BucketOwnerPreferred" | "ObjectWriter" | "BucketOwnerEnforced")
1680
1766
  },
1681
1767
  ]
1682
- }
1768
+ },
1769
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1683
1770
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1684
1771
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1685
1772
 
@@ -1687,7 +1774,7 @@ module Aws
1687
1774
  def put_bucket_policy: (
1688
1775
  bucket: ::String,
1689
1776
  ?content_md5: ::String,
1690
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1777
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1691
1778
  ?confirm_remove_self_bucket_access: bool,
1692
1779
  policy: ::String,
1693
1780
  ?expected_bucket_owner: ::String
@@ -1698,7 +1785,7 @@ module Aws
1698
1785
  def put_bucket_replication: (
1699
1786
  bucket: ::String,
1700
1787
  ?content_md5: ::String,
1701
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1788
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1702
1789
  replication_configuration: {
1703
1790
  role: ::String,
1704
1791
  rules: Array[
@@ -1772,7 +1859,7 @@ module Aws
1772
1859
  def put_bucket_request_payment: (
1773
1860
  bucket: ::String,
1774
1861
  ?content_md5: ::String,
1775
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1862
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1776
1863
  request_payment_configuration: {
1777
1864
  payer: ("Requester" | "BucketOwner")
1778
1865
  },
@@ -1784,7 +1871,7 @@ module Aws
1784
1871
  def put_bucket_tagging: (
1785
1872
  bucket: ::String,
1786
1873
  ?content_md5: ::String,
1787
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1874
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1788
1875
  tagging: {
1789
1876
  tag_set: Array[
1790
1877
  {
@@ -1801,7 +1888,7 @@ module Aws
1801
1888
  def put_bucket_versioning: (
1802
1889
  bucket: ::String,
1803
1890
  ?content_md5: ::String,
1804
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1891
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1805
1892
  ?mfa: ::String,
1806
1893
  versioning_configuration: {
1807
1894
  mfa_delete: ("Enabled" | "Disabled")?,
@@ -1815,7 +1902,7 @@ module Aws
1815
1902
  def put_bucket_website: (
1816
1903
  bucket: ::String,
1817
1904
  ?content_md5: ::String,
1818
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1905
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1819
1906
  website_configuration: {
1820
1907
  error_document: {
1821
1908
  key: ::String
@@ -1853,8 +1940,10 @@ module Aws
1853
1940
  def etag: () -> ::String
1854
1941
  def checksum_crc32: () -> ::String
1855
1942
  def checksum_crc32c: () -> ::String
1943
+ def checksum_crc64nvme: () -> ::String
1856
1944
  def checksum_sha1: () -> ::String
1857
1945
  def checksum_sha256: () -> ::String
1946
+ def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
1858
1947
  def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
1859
1948
  def version_id: () -> ::String
1860
1949
  def sse_customer_algorithm: () -> ::String
@@ -1862,6 +1951,7 @@ module Aws
1862
1951
  def ssekms_key_id: () -> ::String
1863
1952
  def ssekms_encryption_context: () -> ::String
1864
1953
  def bucket_key_enabled: () -> bool
1954
+ def size: () -> ::Integer
1865
1955
  def request_charged: () -> ("requester")
1866
1956
  end
1867
1957
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#put_object-instance_method
@@ -1876,17 +1966,21 @@ module Aws
1876
1966
  ?content_length: ::Integer,
1877
1967
  ?content_md5: ::String,
1878
1968
  ?content_type: ::String,
1879
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1969
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1880
1970
  ?checksum_crc32: ::String,
1881
1971
  ?checksum_crc32c: ::String,
1972
+ ?checksum_crc64nvme: ::String,
1882
1973
  ?checksum_sha1: ::String,
1883
1974
  ?checksum_sha256: ::String,
1884
1975
  ?expires: ::Time,
1976
+ ?if_match: ::String,
1977
+ ?if_none_match: ::String,
1885
1978
  ?grant_full_control: ::String,
1886
1979
  ?grant_read: ::String,
1887
1980
  ?grant_read_acp: ::String,
1888
1981
  ?grant_write_acp: ::String,
1889
1982
  key: ::String,
1983
+ ?write_offset_bytes: ::Integer,
1890
1984
  ?metadata: Hash[::String, ::String],
1891
1985
  ?server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse"),
1892
1986
  ?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE"),
@@ -1933,7 +2027,7 @@ module Aws
1933
2027
  },
1934
2028
  bucket: ::String,
1935
2029
  ?content_md5: ::String,
1936
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
2030
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1937
2031
  ?grant_full_control: ::String,
1938
2032
  ?grant_read: ::String,
1939
2033
  ?grant_read_acp: ::String,
@@ -1960,7 +2054,7 @@ module Aws
1960
2054
  ?request_payer: ("requester"),
1961
2055
  ?version_id: ::String,
1962
2056
  ?content_md5: ::String,
1963
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
2057
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1964
2058
  ?expected_bucket_owner: ::String
1965
2059
  ) -> _PutObjectLegalHoldResponseSuccess
1966
2060
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutObjectLegalHoldResponseSuccess
@@ -1985,7 +2079,7 @@ module Aws
1985
2079
  ?request_payer: ("requester"),
1986
2080
  ?token: ::String,
1987
2081
  ?content_md5: ::String,
1988
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
2082
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1989
2083
  ?expected_bucket_owner: ::String
1990
2084
  ) -> _PutObjectLockConfigurationResponseSuccess
1991
2085
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutObjectLockConfigurationResponseSuccess
@@ -2006,7 +2100,7 @@ module Aws
2006
2100
  ?version_id: ::String,
2007
2101
  ?bypass_governance_retention: bool,
2008
2102
  ?content_md5: ::String,
2009
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
2103
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
2010
2104
  ?expected_bucket_owner: ::String
2011
2105
  ) -> _PutObjectRetentionResponseSuccess
2012
2106
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutObjectRetentionResponseSuccess
@@ -2021,7 +2115,7 @@ module Aws
2021
2115
  key: ::String,
2022
2116
  ?version_id: ::String,
2023
2117
  ?content_md5: ::String,
2024
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
2118
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
2025
2119
  tagging: {
2026
2120
  tag_set: Array[
2027
2121
  {
@@ -2039,7 +2133,7 @@ module Aws
2039
2133
  def put_public_access_block: (
2040
2134
  bucket: ::String,
2041
2135
  ?content_md5: ::String,
2042
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
2136
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
2043
2137
  public_access_block_configuration: {
2044
2138
  block_public_acls: bool?,
2045
2139
  ignore_public_acls: bool?,
@@ -2050,6 +2144,26 @@ module Aws
2050
2144
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
2051
2145
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
2052
2146
 
2147
+ interface _RenameObjectResponseSuccess
2148
+ include ::Seahorse::Client::_ResponseSuccess[Types::RenameObjectOutput]
2149
+ end
2150
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#rename_object-instance_method
2151
+ def rename_object: (
2152
+ bucket: ::String,
2153
+ key: ::String,
2154
+ rename_source: ::String,
2155
+ ?destination_if_match: ::String,
2156
+ ?destination_if_none_match: ::String,
2157
+ ?destination_if_modified_since: ::Time,
2158
+ ?destination_if_unmodified_since: ::Time,
2159
+ ?source_if_match: ::String,
2160
+ ?source_if_none_match: ::String,
2161
+ ?source_if_modified_since: ::Time,
2162
+ ?source_if_unmodified_since: ::Time,
2163
+ ?client_token: ::String
2164
+ ) -> _RenameObjectResponseSuccess
2165
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RenameObjectResponseSuccess
2166
+
2053
2167
  interface _RestoreObjectResponseSuccess
2054
2168
  include ::Seahorse::Client::_ResponseSuccess[Types::RestoreObjectOutput]
2055
2169
  def request_charged: () -> ("requester")
@@ -2142,7 +2256,7 @@ module Aws
2142
2256
  }?
2143
2257
  },
2144
2258
  ?request_payer: ("requester"),
2145
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
2259
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
2146
2260
  ?expected_bucket_owner: ::String
2147
2261
  ) -> _RestoreObjectResponseSuccess
2148
2262
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreObjectResponseSuccess
@@ -2206,6 +2320,7 @@ module Aws
2206
2320
  def etag: () -> ::String
2207
2321
  def checksum_crc32: () -> ::String
2208
2322
  def checksum_crc32c: () -> ::String
2323
+ def checksum_crc64nvme: () -> ::String
2209
2324
  def checksum_sha1: () -> ::String
2210
2325
  def checksum_sha256: () -> ::String
2211
2326
  def sse_customer_algorithm: () -> ::String
@@ -2220,9 +2335,10 @@ module Aws
2220
2335
  bucket: ::String,
2221
2336
  ?content_length: ::Integer,
2222
2337
  ?content_md5: ::String,
2223
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
2338
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
2224
2339
  ?checksum_crc32: ::String,
2225
2340
  ?checksum_crc32c: ::String,
2341
+ ?checksum_crc64nvme: ::String,
2226
2342
  ?checksum_sha1: ::String,
2227
2343
  ?checksum_sha256: ::String,
2228
2344
  key: ::String,
@@ -2289,6 +2405,7 @@ module Aws
2289
2405
  ?content_type: ::String,
2290
2406
  ?checksum_crc32: ::String,
2291
2407
  ?checksum_crc32c: ::String,
2408
+ ?checksum_crc64nvme: ::String,
2292
2409
  ?checksum_sha1: ::String,
2293
2410
  ?checksum_sha256: ::String,
2294
2411
  ?delete_marker: bool,