aws-sdk-s3 1.167.0 → 1.194.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +158 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/bucket.rb +145 -39
- data/lib/aws-sdk-s3/bucket_acl.rb +6 -5
- data/lib/aws-sdk-s3/bucket_cors.rb +6 -5
- data/lib/aws-sdk-s3/bucket_lifecycle.rb +7 -2
- data/lib/aws-sdk-s3/bucket_lifecycle_configuration.rb +22 -2
- data/lib/aws-sdk-s3/bucket_logging.rb +2 -2
- data/lib/aws-sdk-s3/bucket_policy.rb +6 -5
- data/lib/aws-sdk-s3/bucket_request_payment.rb +3 -3
- data/lib/aws-sdk-s3/bucket_tagging.rb +3 -3
- data/lib/aws-sdk-s3/bucket_versioning.rb +9 -9
- data/lib/aws-sdk-s3/bucket_website.rb +3 -3
- data/lib/aws-sdk-s3/client.rb +3670 -1773
- data/lib/aws-sdk-s3/client_api.rb +558 -160
- data/lib/aws-sdk-s3/endpoint_parameters.rb +13 -18
- data/lib/aws-sdk-s3/endpoint_provider.rb +400 -276
- data/lib/aws-sdk-s3/endpoints.rb +529 -1403
- data/lib/aws-sdk-s3/errors.rb +55 -0
- data/lib/aws-sdk-s3/file_downloader.rb +14 -31
- data/lib/aws-sdk-s3/legacy_signer.rb +2 -1
- data/lib/aws-sdk-s3/multipart_file_uploader.rb +31 -13
- data/lib/aws-sdk-s3/multipart_upload.rb +83 -6
- data/lib/aws-sdk-s3/multipart_upload_part.rb +50 -34
- data/lib/aws-sdk-s3/object.rb +326 -129
- data/lib/aws-sdk-s3/object_acl.rb +11 -5
- data/lib/aws-sdk-s3/object_multipart_copier.rb +2 -1
- data/lib/aws-sdk-s3/object_summary.rb +240 -96
- data/lib/aws-sdk-s3/object_version.rb +60 -13
- data/lib/aws-sdk-s3/plugins/checksum_algorithm.rb +31 -0
- data/lib/aws-sdk-s3/plugins/endpoints.rb +1 -204
- data/lib/aws-sdk-s3/plugins/express_session_auth.rb +11 -20
- data/lib/aws-sdk-s3/plugins/http_200_errors.rb +3 -3
- data/lib/aws-sdk-s3/plugins/md5s.rb +10 -71
- data/lib/aws-sdk-s3/plugins/streaming_retry.rb +5 -7
- data/lib/aws-sdk-s3/plugins/url_encoded_keys.rb +2 -1
- data/lib/aws-sdk-s3/presigner.rb +5 -5
- data/lib/aws-sdk-s3/resource.rb +41 -10
- data/lib/aws-sdk-s3/types.rb +3423 -1093
- data/lib/aws-sdk-s3.rb +1 -1
- data/sig/bucket.rbs +27 -9
- data/sig/bucket_acl.rbs +1 -1
- data/sig/bucket_cors.rbs +1 -1
- data/sig/bucket_lifecycle.rbs +1 -1
- data/sig/bucket_lifecycle_configuration.rbs +1 -1
- data/sig/bucket_logging.rbs +1 -1
- data/sig/bucket_policy.rbs +1 -1
- data/sig/bucket_request_payment.rbs +1 -1
- data/sig/bucket_tagging.rbs +1 -1
- data/sig/bucket_versioning.rbs +3 -3
- data/sig/bucket_website.rbs +1 -1
- data/sig/client.rbs +249 -68
- data/sig/errors.rbs +10 -0
- data/sig/multipart_upload.rbs +12 -3
- data/sig/multipart_upload_part.rbs +5 -1
- data/sig/object.rbs +35 -16
- data/sig/object_acl.rbs +1 -1
- data/sig/object_summary.rbs +26 -16
- data/sig/object_version.rbs +9 -3
- data/sig/resource.rbs +15 -4
- data/sig/types.rbs +339 -65
- metadata +7 -10
- 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,8 @@ 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
|
84
|
+
attr_accessor bucket_arn: ::String
|
82
85
|
SENSITIVE: []
|
83
86
|
end
|
84
87
|
|
@@ -89,7 +92,7 @@ module Aws::S3
|
|
89
92
|
end
|
90
93
|
|
91
94
|
class BucketInfo
|
92
|
-
attr_accessor data_redundancy: ("SingleAvailabilityZone")
|
95
|
+
attr_accessor data_redundancy: ("SingleAvailabilityZone" | "SingleLocalZone")
|
93
96
|
attr_accessor type: ("Directory")
|
94
97
|
SENSITIVE: []
|
95
98
|
end
|
@@ -142,8 +145,10 @@ module Aws::S3
|
|
142
145
|
class Checksum
|
143
146
|
attr_accessor checksum_crc32: ::String
|
144
147
|
attr_accessor checksum_crc32c: ::String
|
148
|
+
attr_accessor checksum_crc64nvme: ::String
|
145
149
|
attr_accessor checksum_sha1: ::String
|
146
150
|
attr_accessor checksum_sha256: ::String
|
151
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
147
152
|
SENSITIVE: []
|
148
153
|
end
|
149
154
|
|
@@ -169,9 +174,11 @@ module Aws::S3
|
|
169
174
|
attr_accessor etag: ::String
|
170
175
|
attr_accessor checksum_crc32: ::String
|
171
176
|
attr_accessor checksum_crc32c: ::String
|
177
|
+
attr_accessor checksum_crc64nvme: ::String
|
172
178
|
attr_accessor checksum_sha1: ::String
|
173
179
|
attr_accessor checksum_sha256: ::String
|
174
|
-
attr_accessor
|
180
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
181
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
175
182
|
attr_accessor version_id: ::String
|
176
183
|
attr_accessor ssekms_key_id: ::String
|
177
184
|
attr_accessor bucket_key_enabled: bool
|
@@ -186,10 +193,14 @@ module Aws::S3
|
|
186
193
|
attr_accessor upload_id: ::String
|
187
194
|
attr_accessor checksum_crc32: ::String
|
188
195
|
attr_accessor checksum_crc32c: ::String
|
196
|
+
attr_accessor checksum_crc64nvme: ::String
|
189
197
|
attr_accessor checksum_sha1: ::String
|
190
198
|
attr_accessor checksum_sha256: ::String
|
199
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
200
|
+
attr_accessor mpu_object_size: ::Integer
|
191
201
|
attr_accessor request_payer: ("requester")
|
192
202
|
attr_accessor expected_bucket_owner: ::String
|
203
|
+
attr_accessor if_match: ::String
|
193
204
|
attr_accessor if_none_match: ::String
|
194
205
|
attr_accessor sse_customer_algorithm: ::String
|
195
206
|
attr_accessor sse_customer_key: ::String
|
@@ -206,6 +217,7 @@ module Aws::S3
|
|
206
217
|
attr_accessor etag: ::String
|
207
218
|
attr_accessor checksum_crc32: ::String
|
208
219
|
attr_accessor checksum_crc32c: ::String
|
220
|
+
attr_accessor checksum_crc64nvme: ::String
|
209
221
|
attr_accessor checksum_sha1: ::String
|
210
222
|
attr_accessor checksum_sha256: ::String
|
211
223
|
attr_accessor part_number: ::Integer
|
@@ -228,7 +240,7 @@ module Aws::S3
|
|
228
240
|
attr_accessor expiration: ::String
|
229
241
|
attr_accessor copy_source_version_id: ::String
|
230
242
|
attr_accessor version_id: ::String
|
231
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
243
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
232
244
|
attr_accessor sse_customer_algorithm: ::String
|
233
245
|
attr_accessor sse_customer_key_md5: ::String
|
234
246
|
attr_accessor ssekms_key_id: ::String
|
@@ -242,7 +254,7 @@ module Aws::S3
|
|
242
254
|
attr_accessor acl: ("private" | "public-read" | "public-read-write" | "authenticated-read" | "aws-exec-read" | "bucket-owner-read" | "bucket-owner-full-control")
|
243
255
|
attr_accessor bucket: ::String
|
244
256
|
attr_accessor cache_control: ::String
|
245
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
257
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
246
258
|
attr_accessor content_disposition: ::String
|
247
259
|
attr_accessor content_encoding: ::String
|
248
260
|
attr_accessor content_language: ::String
|
@@ -261,8 +273,8 @@ module Aws::S3
|
|
261
273
|
attr_accessor metadata: ::Hash[::String, ::String]
|
262
274
|
attr_accessor metadata_directive: ("COPY" | "REPLACE")
|
263
275
|
attr_accessor tagging_directive: ("COPY" | "REPLACE")
|
264
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
265
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
276
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
277
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
266
278
|
attr_accessor website_redirect_location: ::String
|
267
279
|
attr_accessor sse_customer_algorithm: ::String
|
268
280
|
attr_accessor sse_customer_key: ::String
|
@@ -286,8 +298,10 @@ module Aws::S3
|
|
286
298
|
class CopyObjectResult
|
287
299
|
attr_accessor etag: ::String
|
288
300
|
attr_accessor last_modified: ::Time
|
301
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
289
302
|
attr_accessor checksum_crc32: ::String
|
290
303
|
attr_accessor checksum_crc32c: ::String
|
304
|
+
attr_accessor checksum_crc64nvme: ::String
|
291
305
|
attr_accessor checksum_sha1: ::String
|
292
306
|
attr_accessor checksum_sha256: ::String
|
293
307
|
SENSITIVE: []
|
@@ -298,20 +312,41 @@ module Aws::S3
|
|
298
312
|
attr_accessor last_modified: ::Time
|
299
313
|
attr_accessor checksum_crc32: ::String
|
300
314
|
attr_accessor checksum_crc32c: ::String
|
315
|
+
attr_accessor checksum_crc64nvme: ::String
|
301
316
|
attr_accessor checksum_sha1: ::String
|
302
317
|
attr_accessor checksum_sha256: ::String
|
303
318
|
SENSITIVE: []
|
304
319
|
end
|
305
320
|
|
306
321
|
class CreateBucketConfiguration
|
307
|
-
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")
|
322
|
+
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")
|
308
323
|
attr_accessor location: Types::LocationInfo
|
309
324
|
attr_accessor bucket: Types::BucketInfo
|
325
|
+
attr_accessor tags: ::Array[Types::Tag]
|
326
|
+
SENSITIVE: []
|
327
|
+
end
|
328
|
+
|
329
|
+
class CreateBucketMetadataConfigurationRequest
|
330
|
+
attr_accessor bucket: ::String
|
331
|
+
attr_accessor content_md5: ::String
|
332
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
333
|
+
attr_accessor metadata_configuration: Types::MetadataConfiguration
|
334
|
+
attr_accessor expected_bucket_owner: ::String
|
335
|
+
SENSITIVE: []
|
336
|
+
end
|
337
|
+
|
338
|
+
class CreateBucketMetadataTableConfigurationRequest
|
339
|
+
attr_accessor bucket: ::String
|
340
|
+
attr_accessor content_md5: ::String
|
341
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
342
|
+
attr_accessor metadata_table_configuration: Types::MetadataTableConfiguration
|
343
|
+
attr_accessor expected_bucket_owner: ::String
|
310
344
|
SENSITIVE: []
|
311
345
|
end
|
312
346
|
|
313
347
|
class CreateBucketOutput
|
314
348
|
attr_accessor location: ::String
|
349
|
+
attr_accessor bucket_arn: ::String
|
315
350
|
SENSITIVE: []
|
316
351
|
end
|
317
352
|
|
@@ -335,14 +370,15 @@ module Aws::S3
|
|
335
370
|
attr_accessor bucket: ::String
|
336
371
|
attr_accessor key: ::String
|
337
372
|
attr_accessor upload_id: ::String
|
338
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
373
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
339
374
|
attr_accessor sse_customer_algorithm: ::String
|
340
375
|
attr_accessor sse_customer_key_md5: ::String
|
341
376
|
attr_accessor ssekms_key_id: ::String
|
342
377
|
attr_accessor ssekms_encryption_context: ::String
|
343
378
|
attr_accessor bucket_key_enabled: bool
|
344
379
|
attr_accessor request_charged: ("requester")
|
345
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
380
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
381
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
346
382
|
SENSITIVE: [:ssekms_key_id, :ssekms_encryption_context]
|
347
383
|
end
|
348
384
|
|
@@ -361,8 +397,8 @@ module Aws::S3
|
|
361
397
|
attr_accessor grant_write_acp: ::String
|
362
398
|
attr_accessor key: ::String
|
363
399
|
attr_accessor metadata: ::Hash[::String, ::String]
|
364
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
365
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
400
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
401
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
366
402
|
attr_accessor website_redirect_location: ::String
|
367
403
|
attr_accessor sse_customer_algorithm: ::String
|
368
404
|
attr_accessor sse_customer_key: ::String
|
@@ -376,12 +412,13 @@ module Aws::S3
|
|
376
412
|
attr_accessor object_lock_retain_until_date: ::Time
|
377
413
|
attr_accessor object_lock_legal_hold_status: ("ON" | "OFF")
|
378
414
|
attr_accessor expected_bucket_owner: ::String
|
379
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
415
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
416
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
380
417
|
SENSITIVE: [:sse_customer_key, :ssekms_key_id, :ssekms_encryption_context]
|
381
418
|
end
|
382
419
|
|
383
420
|
class CreateSessionOutput
|
384
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
421
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
385
422
|
attr_accessor ssekms_key_id: ::String
|
386
423
|
attr_accessor ssekms_encryption_context: ::String
|
387
424
|
attr_accessor bucket_key_enabled: bool
|
@@ -392,7 +429,7 @@ module Aws::S3
|
|
392
429
|
class CreateSessionRequest
|
393
430
|
attr_accessor session_mode: ("ReadOnly" | "ReadWrite")
|
394
431
|
attr_accessor bucket: ::String
|
395
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
432
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
396
433
|
attr_accessor ssekms_key_id: ::String
|
397
434
|
attr_accessor ssekms_encryption_context: ::String
|
398
435
|
attr_accessor bucket_key_enabled: bool
|
@@ -434,6 +471,7 @@ module Aws::S3
|
|
434
471
|
class DeleteBucketIntelligentTieringConfigurationRequest
|
435
472
|
attr_accessor bucket: ::String
|
436
473
|
attr_accessor id: ::String
|
474
|
+
attr_accessor expected_bucket_owner: ::String
|
437
475
|
SENSITIVE: []
|
438
476
|
end
|
439
477
|
|
@@ -450,6 +488,18 @@ module Aws::S3
|
|
450
488
|
SENSITIVE: []
|
451
489
|
end
|
452
490
|
|
491
|
+
class DeleteBucketMetadataConfigurationRequest
|
492
|
+
attr_accessor bucket: ::String
|
493
|
+
attr_accessor expected_bucket_owner: ::String
|
494
|
+
SENSITIVE: []
|
495
|
+
end
|
496
|
+
|
497
|
+
class DeleteBucketMetadataTableConfigurationRequest
|
498
|
+
attr_accessor bucket: ::String
|
499
|
+
attr_accessor expected_bucket_owner: ::String
|
500
|
+
SENSITIVE: []
|
501
|
+
end
|
502
|
+
|
453
503
|
class DeleteBucketMetricsConfigurationRequest
|
454
504
|
attr_accessor bucket: ::String
|
455
505
|
attr_accessor id: ::String
|
@@ -522,6 +572,9 @@ module Aws::S3
|
|
522
572
|
attr_accessor request_payer: ("requester")
|
523
573
|
attr_accessor bypass_governance_retention: bool
|
524
574
|
attr_accessor expected_bucket_owner: ::String
|
575
|
+
attr_accessor if_match: ::String
|
576
|
+
attr_accessor if_match_last_modified_time: ::Time
|
577
|
+
attr_accessor if_match_size: ::Integer
|
525
578
|
SENSITIVE: []
|
526
579
|
end
|
527
580
|
|
@@ -552,7 +605,7 @@ module Aws::S3
|
|
552
605
|
attr_accessor request_payer: ("requester")
|
553
606
|
attr_accessor bypass_governance_retention: bool
|
554
607
|
attr_accessor expected_bucket_owner: ::String
|
555
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
608
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
556
609
|
SENSITIVE: []
|
557
610
|
end
|
558
611
|
|
@@ -573,7 +626,7 @@ module Aws::S3
|
|
573
626
|
class Destination
|
574
627
|
attr_accessor bucket: ::String
|
575
628
|
attr_accessor account: ::String
|
576
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
629
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
577
630
|
attr_accessor access_control_translation: Types::AccessControlTranslation
|
578
631
|
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
579
632
|
attr_accessor replication_time: Types::ReplicationTime
|
@@ -581,8 +634,15 @@ module Aws::S3
|
|
581
634
|
SENSITIVE: []
|
582
635
|
end
|
583
636
|
|
637
|
+
class DestinationResult
|
638
|
+
attr_accessor table_bucket_type: ("aws" | "customer")
|
639
|
+
attr_accessor table_bucket_arn: ::String
|
640
|
+
attr_accessor table_namespace: ::String
|
641
|
+
SENSITIVE: []
|
642
|
+
end
|
643
|
+
|
584
644
|
class Encryption
|
585
|
-
attr_accessor encryption_type: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
645
|
+
attr_accessor encryption_type: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
586
646
|
attr_accessor kms_key_id: ::String
|
587
647
|
attr_accessor kms_context: ::String
|
588
648
|
SENSITIVE: [:kms_key_id]
|
@@ -593,6 +653,9 @@ module Aws::S3
|
|
593
653
|
SENSITIVE: []
|
594
654
|
end
|
595
655
|
|
656
|
+
class EncryptionTypeMismatch < Aws::EmptyStructure
|
657
|
+
end
|
658
|
+
|
596
659
|
class EndEvent
|
597
660
|
attr_accessor event_type: untyped
|
598
661
|
SENSITIVE: []
|
@@ -606,6 +669,12 @@ module Aws::S3
|
|
606
669
|
SENSITIVE: []
|
607
670
|
end
|
608
671
|
|
672
|
+
class ErrorDetails
|
673
|
+
attr_accessor error_code: ::String
|
674
|
+
attr_accessor error_message: ::String
|
675
|
+
SENSITIVE: []
|
676
|
+
end
|
677
|
+
|
609
678
|
class ErrorDocument
|
610
679
|
attr_accessor key: ::String
|
611
680
|
SENSITIVE: []
|
@@ -692,6 +761,7 @@ module Aws::S3
|
|
692
761
|
class GetBucketIntelligentTieringConfigurationRequest
|
693
762
|
attr_accessor bucket: ::String
|
694
763
|
attr_accessor id: ::String
|
764
|
+
attr_accessor expected_bucket_owner: ::String
|
695
765
|
SENSITIVE: []
|
696
766
|
end
|
697
767
|
|
@@ -731,7 +801,7 @@ module Aws::S3
|
|
731
801
|
end
|
732
802
|
|
733
803
|
class GetBucketLocationOutput
|
734
|
-
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")
|
804
|
+
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")
|
735
805
|
SENSITIVE: []
|
736
806
|
end
|
737
807
|
|
@@ -752,6 +822,40 @@ module Aws::S3
|
|
752
822
|
SENSITIVE: []
|
753
823
|
end
|
754
824
|
|
825
|
+
class GetBucketMetadataConfigurationOutput
|
826
|
+
attr_accessor get_bucket_metadata_configuration_result: Types::GetBucketMetadataConfigurationResult
|
827
|
+
SENSITIVE: []
|
828
|
+
end
|
829
|
+
|
830
|
+
class GetBucketMetadataConfigurationRequest
|
831
|
+
attr_accessor bucket: ::String
|
832
|
+
attr_accessor expected_bucket_owner: ::String
|
833
|
+
SENSITIVE: []
|
834
|
+
end
|
835
|
+
|
836
|
+
class GetBucketMetadataConfigurationResult
|
837
|
+
attr_accessor metadata_configuration_result: Types::MetadataConfigurationResult
|
838
|
+
SENSITIVE: []
|
839
|
+
end
|
840
|
+
|
841
|
+
class GetBucketMetadataTableConfigurationOutput
|
842
|
+
attr_accessor get_bucket_metadata_table_configuration_result: Types::GetBucketMetadataTableConfigurationResult
|
843
|
+
SENSITIVE: []
|
844
|
+
end
|
845
|
+
|
846
|
+
class GetBucketMetadataTableConfigurationRequest
|
847
|
+
attr_accessor bucket: ::String
|
848
|
+
attr_accessor expected_bucket_owner: ::String
|
849
|
+
SENSITIVE: []
|
850
|
+
end
|
851
|
+
|
852
|
+
class GetBucketMetadataTableConfigurationResult
|
853
|
+
attr_accessor metadata_table_configuration_result: Types::MetadataTableConfigurationResult
|
854
|
+
attr_accessor status: ::String
|
855
|
+
attr_accessor error: Types::ErrorDetails
|
856
|
+
SENSITIVE: []
|
857
|
+
end
|
858
|
+
|
755
859
|
class GetBucketMetricsConfigurationOutput
|
756
860
|
attr_accessor metrics_configuration: Types::MetricsConfiguration
|
757
861
|
SENSITIVE: []
|
@@ -886,7 +990,7 @@ module Aws::S3
|
|
886
990
|
attr_accessor etag: ::String
|
887
991
|
attr_accessor checksum: Types::Checksum
|
888
992
|
attr_accessor object_parts: Types::GetObjectAttributesParts
|
889
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
993
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
890
994
|
attr_accessor object_size: ::Integer
|
891
995
|
SENSITIVE: []
|
892
996
|
end
|
@@ -952,8 +1056,10 @@ module Aws::S3
|
|
952
1056
|
attr_accessor etag: ::String
|
953
1057
|
attr_accessor checksum_crc32: ::String
|
954
1058
|
attr_accessor checksum_crc32c: ::String
|
1059
|
+
attr_accessor checksum_crc64nvme: ::String
|
955
1060
|
attr_accessor checksum_sha1: ::String
|
956
1061
|
attr_accessor checksum_sha256: ::String
|
1062
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
957
1063
|
attr_accessor missing_meta: ::Integer
|
958
1064
|
attr_accessor version_id: ::String
|
959
1065
|
attr_accessor cache_control: ::String
|
@@ -965,13 +1071,13 @@ module Aws::S3
|
|
965
1071
|
attr_accessor expires: ::Time
|
966
1072
|
attr_accessor expires_string: ::String
|
967
1073
|
attr_accessor website_redirect_location: ::String
|
968
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
1074
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
969
1075
|
attr_accessor metadata: ::Hash[::String, ::String]
|
970
1076
|
attr_accessor sse_customer_algorithm: ::String
|
971
1077
|
attr_accessor sse_customer_key_md5: ::String
|
972
1078
|
attr_accessor ssekms_key_id: ::String
|
973
1079
|
attr_accessor bucket_key_enabled: bool
|
974
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
1080
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
975
1081
|
attr_accessor request_charged: ("requester")
|
976
1082
|
attr_accessor replication_status: ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
|
977
1083
|
attr_accessor parts_count: ::Integer
|
@@ -1082,7 +1188,8 @@ module Aws::S3
|
|
1082
1188
|
end
|
1083
1189
|
|
1084
1190
|
class HeadBucketOutput
|
1085
|
-
attr_accessor
|
1191
|
+
attr_accessor bucket_arn: ::String
|
1192
|
+
attr_accessor bucket_location_type: ("AvailabilityZone" | "LocalZone")
|
1086
1193
|
attr_accessor bucket_location_name: ::String
|
1087
1194
|
attr_accessor bucket_region: ::String
|
1088
1195
|
attr_accessor access_point_alias: bool
|
@@ -1105,8 +1212,10 @@ module Aws::S3
|
|
1105
1212
|
attr_accessor content_length: ::Integer
|
1106
1213
|
attr_accessor checksum_crc32: ::String
|
1107
1214
|
attr_accessor checksum_crc32c: ::String
|
1215
|
+
attr_accessor checksum_crc64nvme: ::String
|
1108
1216
|
attr_accessor checksum_sha1: ::String
|
1109
1217
|
attr_accessor checksum_sha256: ::String
|
1218
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
1110
1219
|
attr_accessor etag: ::String
|
1111
1220
|
attr_accessor missing_meta: ::Integer
|
1112
1221
|
attr_accessor version_id: ::String
|
@@ -1115,19 +1224,21 @@ module Aws::S3
|
|
1115
1224
|
attr_accessor content_encoding: ::String
|
1116
1225
|
attr_accessor content_language: ::String
|
1117
1226
|
attr_accessor content_type: ::String
|
1227
|
+
attr_accessor content_range: ::String
|
1118
1228
|
attr_accessor expires: ::Time
|
1119
1229
|
attr_accessor expires_string: ::String
|
1120
1230
|
attr_accessor website_redirect_location: ::String
|
1121
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
1231
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
1122
1232
|
attr_accessor metadata: ::Hash[::String, ::String]
|
1123
1233
|
attr_accessor sse_customer_algorithm: ::String
|
1124
1234
|
attr_accessor sse_customer_key_md5: ::String
|
1125
1235
|
attr_accessor ssekms_key_id: ::String
|
1126
1236
|
attr_accessor bucket_key_enabled: bool
|
1127
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
1237
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
1128
1238
|
attr_accessor request_charged: ("requester")
|
1129
1239
|
attr_accessor replication_status: ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
|
1130
1240
|
attr_accessor parts_count: ::Integer
|
1241
|
+
attr_accessor tag_count: ::Integer
|
1131
1242
|
attr_accessor object_lock_mode: ("GOVERNANCE" | "COMPLIANCE")
|
1132
1243
|
attr_accessor object_lock_retain_until_date: ::Time
|
1133
1244
|
attr_accessor object_lock_legal_hold_status: ("ON" | "OFF")
|
@@ -1159,6 +1270,9 @@ module Aws::S3
|
|
1159
1270
|
SENSITIVE: [:sse_customer_key]
|
1160
1271
|
end
|
1161
1272
|
|
1273
|
+
class IdempotencyParameterMismatch < Aws::EmptyStructure
|
1274
|
+
end
|
1275
|
+
|
1162
1276
|
class IndexDocument
|
1163
1277
|
attr_accessor suffix: ::String
|
1164
1278
|
SENSITIVE: []
|
@@ -1200,11 +1314,17 @@ module Aws::S3
|
|
1200
1314
|
end
|
1201
1315
|
|
1202
1316
|
class InvalidObjectState
|
1203
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
1317
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
1204
1318
|
attr_accessor access_tier: ("ARCHIVE_ACCESS" | "DEEP_ARCHIVE_ACCESS")
|
1205
1319
|
SENSITIVE: []
|
1206
1320
|
end
|
1207
1321
|
|
1322
|
+
class InvalidRequest < Aws::EmptyStructure
|
1323
|
+
end
|
1324
|
+
|
1325
|
+
class InvalidWriteOffset < Aws::EmptyStructure
|
1326
|
+
end
|
1327
|
+
|
1208
1328
|
class InventoryConfiguration
|
1209
1329
|
attr_accessor destination: Types::InventoryDestination
|
1210
1330
|
attr_accessor is_enabled: bool
|
@@ -1246,6 +1366,27 @@ module Aws::S3
|
|
1246
1366
|
SENSITIVE: []
|
1247
1367
|
end
|
1248
1368
|
|
1369
|
+
class InventoryTableConfiguration
|
1370
|
+
attr_accessor configuration_state: ("ENABLED" | "DISABLED")
|
1371
|
+
attr_accessor encryption_configuration: Types::MetadataTableEncryptionConfiguration
|
1372
|
+
SENSITIVE: []
|
1373
|
+
end
|
1374
|
+
|
1375
|
+
class InventoryTableConfigurationResult
|
1376
|
+
attr_accessor configuration_state: ("ENABLED" | "DISABLED")
|
1377
|
+
attr_accessor table_status: ::String
|
1378
|
+
attr_accessor error: Types::ErrorDetails
|
1379
|
+
attr_accessor table_name: ::String
|
1380
|
+
attr_accessor table_arn: ::String
|
1381
|
+
SENSITIVE: []
|
1382
|
+
end
|
1383
|
+
|
1384
|
+
class InventoryTableConfigurationUpdates
|
1385
|
+
attr_accessor configuration_state: ("ENABLED" | "DISABLED")
|
1386
|
+
attr_accessor encryption_configuration: Types::MetadataTableEncryptionConfiguration
|
1387
|
+
SENSITIVE: []
|
1388
|
+
end
|
1389
|
+
|
1249
1390
|
class JSONInput
|
1250
1391
|
attr_accessor type: ("DOCUMENT" | "LINES")
|
1251
1392
|
SENSITIVE: []
|
@@ -1256,6 +1397,26 @@ module Aws::S3
|
|
1256
1397
|
SENSITIVE: []
|
1257
1398
|
end
|
1258
1399
|
|
1400
|
+
class JournalTableConfiguration
|
1401
|
+
attr_accessor record_expiration: Types::RecordExpiration
|
1402
|
+
attr_accessor encryption_configuration: Types::MetadataTableEncryptionConfiguration
|
1403
|
+
SENSITIVE: []
|
1404
|
+
end
|
1405
|
+
|
1406
|
+
class JournalTableConfigurationResult
|
1407
|
+
attr_accessor table_status: ::String
|
1408
|
+
attr_accessor error: Types::ErrorDetails
|
1409
|
+
attr_accessor table_name: ::String
|
1410
|
+
attr_accessor table_arn: ::String
|
1411
|
+
attr_accessor record_expiration: Types::RecordExpiration
|
1412
|
+
SENSITIVE: []
|
1413
|
+
end
|
1414
|
+
|
1415
|
+
class JournalTableConfigurationUpdates
|
1416
|
+
attr_accessor record_expiration: Types::RecordExpiration
|
1417
|
+
SENSITIVE: []
|
1418
|
+
end
|
1419
|
+
|
1259
1420
|
class LambdaFunctionConfiguration
|
1260
1421
|
attr_accessor id: ::String
|
1261
1422
|
attr_accessor lambda_function_arn: ::String
|
@@ -1332,6 +1493,7 @@ module Aws::S3
|
|
1332
1493
|
class ListBucketIntelligentTieringConfigurationsRequest
|
1333
1494
|
attr_accessor bucket: ::String
|
1334
1495
|
attr_accessor continuation_token: ::String
|
1496
|
+
attr_accessor expected_bucket_owner: ::String
|
1335
1497
|
SENSITIVE: []
|
1336
1498
|
end
|
1337
1499
|
|
@@ -1369,12 +1531,15 @@ module Aws::S3
|
|
1369
1531
|
attr_accessor buckets: ::Array[Types::Bucket]
|
1370
1532
|
attr_accessor owner: Types::Owner
|
1371
1533
|
attr_accessor continuation_token: ::String
|
1534
|
+
attr_accessor prefix: ::String
|
1372
1535
|
SENSITIVE: []
|
1373
1536
|
end
|
1374
1537
|
|
1375
1538
|
class ListBucketsRequest
|
1376
1539
|
attr_accessor max_buckets: ::Integer
|
1377
1540
|
attr_accessor continuation_token: ::String
|
1541
|
+
attr_accessor prefix: ::String
|
1542
|
+
attr_accessor bucket_region: ::String
|
1378
1543
|
SENSITIVE: []
|
1379
1544
|
end
|
1380
1545
|
|
@@ -1525,9 +1690,10 @@ module Aws::S3
|
|
1525
1690
|
attr_accessor parts: ::Array[Types::Part]
|
1526
1691
|
attr_accessor initiator: Types::Initiator
|
1527
1692
|
attr_accessor owner: Types::Owner
|
1528
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
1693
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
1529
1694
|
attr_accessor request_charged: ("requester")
|
1530
|
-
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")
|
1531
1697
|
SENSITIVE: []
|
1532
1698
|
end
|
1533
1699
|
|
@@ -1546,7 +1712,7 @@ module Aws::S3
|
|
1546
1712
|
end
|
1547
1713
|
|
1548
1714
|
class LocationInfo
|
1549
|
-
attr_accessor type: ("AvailabilityZone")
|
1715
|
+
attr_accessor type: ("AvailabilityZone" | "LocalZone")
|
1550
1716
|
attr_accessor name: ::String
|
1551
1717
|
SENSITIVE: []
|
1552
1718
|
end
|
@@ -1559,12 +1725,41 @@ module Aws::S3
|
|
1559
1725
|
SENSITIVE: []
|
1560
1726
|
end
|
1561
1727
|
|
1728
|
+
class MetadataConfiguration
|
1729
|
+
attr_accessor journal_table_configuration: Types::JournalTableConfiguration
|
1730
|
+
attr_accessor inventory_table_configuration: Types::InventoryTableConfiguration
|
1731
|
+
SENSITIVE: []
|
1732
|
+
end
|
1733
|
+
|
1734
|
+
class MetadataConfigurationResult
|
1735
|
+
attr_accessor destination_result: Types::DestinationResult
|
1736
|
+
attr_accessor journal_table_configuration_result: Types::JournalTableConfigurationResult
|
1737
|
+
attr_accessor inventory_table_configuration_result: Types::InventoryTableConfigurationResult
|
1738
|
+
SENSITIVE: []
|
1739
|
+
end
|
1740
|
+
|
1562
1741
|
class MetadataEntry
|
1563
1742
|
attr_accessor name: ::String
|
1564
1743
|
attr_accessor value: ::String
|
1565
1744
|
SENSITIVE: []
|
1566
1745
|
end
|
1567
1746
|
|
1747
|
+
class MetadataTableConfiguration
|
1748
|
+
attr_accessor s3_tables_destination: Types::S3TablesDestination
|
1749
|
+
SENSITIVE: []
|
1750
|
+
end
|
1751
|
+
|
1752
|
+
class MetadataTableConfigurationResult
|
1753
|
+
attr_accessor s3_tables_destination_result: Types::S3TablesDestinationResult
|
1754
|
+
SENSITIVE: []
|
1755
|
+
end
|
1756
|
+
|
1757
|
+
class MetadataTableEncryptionConfiguration
|
1758
|
+
attr_accessor sse_algorithm: ("aws:kms" | "AES256")
|
1759
|
+
attr_accessor kms_key_arn: ::String
|
1760
|
+
SENSITIVE: []
|
1761
|
+
end
|
1762
|
+
|
1568
1763
|
class Metrics
|
1569
1764
|
attr_accessor status: ("Enabled" | "Disabled")
|
1570
1765
|
attr_accessor event_threshold: Types::ReplicationTimeValue
|
@@ -1596,10 +1791,11 @@ module Aws::S3
|
|
1596
1791
|
attr_accessor upload_id: ::String
|
1597
1792
|
attr_accessor key: ::String
|
1598
1793
|
attr_accessor initiated: ::Time
|
1599
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
1794
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
1600
1795
|
attr_accessor owner: Types::Owner
|
1601
1796
|
attr_accessor initiator: Types::Initiator
|
1602
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
1797
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1798
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
1603
1799
|
SENSITIVE: []
|
1604
1800
|
end
|
1605
1801
|
|
@@ -1649,9 +1845,10 @@ module Aws::S3
|
|
1649
1845
|
attr_accessor key: ::String
|
1650
1846
|
attr_accessor last_modified: ::Time
|
1651
1847
|
attr_accessor etag: ::String
|
1652
|
-
attr_accessor checksum_algorithm: ::Array[("CRC32" | "CRC32C" | "SHA1" | "SHA256")]
|
1848
|
+
attr_accessor checksum_algorithm: ::Array[("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")]
|
1849
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
1653
1850
|
attr_accessor size: ::Integer
|
1654
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "GLACIER" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
1851
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "GLACIER" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
1655
1852
|
attr_accessor owner: Types::Owner
|
1656
1853
|
attr_accessor restore_status: Types::RestoreStatus
|
1657
1854
|
SENSITIVE: []
|
@@ -1663,6 +1860,9 @@ module Aws::S3
|
|
1663
1860
|
class ObjectIdentifier
|
1664
1861
|
attr_accessor key: ::String
|
1665
1862
|
attr_accessor version_id: ::String
|
1863
|
+
attr_accessor etag: ::String
|
1864
|
+
attr_accessor last_modified_time: ::Time
|
1865
|
+
attr_accessor size: ::Integer
|
1666
1866
|
SENSITIVE: []
|
1667
1867
|
end
|
1668
1868
|
|
@@ -1696,6 +1896,7 @@ module Aws::S3
|
|
1696
1896
|
attr_accessor size: ::Integer
|
1697
1897
|
attr_accessor checksum_crc32: ::String
|
1698
1898
|
attr_accessor checksum_crc32c: ::String
|
1899
|
+
attr_accessor checksum_crc64nvme: ::String
|
1699
1900
|
attr_accessor checksum_sha1: ::String
|
1700
1901
|
attr_accessor checksum_sha256: ::String
|
1701
1902
|
SENSITIVE: []
|
@@ -1703,7 +1904,8 @@ module Aws::S3
|
|
1703
1904
|
|
1704
1905
|
class ObjectVersion
|
1705
1906
|
attr_accessor etag: ::String
|
1706
|
-
attr_accessor checksum_algorithm: ::Array[("CRC32" | "CRC32C" | "SHA1" | "SHA256")]
|
1907
|
+
attr_accessor checksum_algorithm: ::Array[("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")]
|
1908
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
1707
1909
|
attr_accessor size: ::Integer
|
1708
1910
|
attr_accessor storage_class: ("STANDARD")
|
1709
1911
|
attr_accessor key: ::String
|
@@ -1752,6 +1954,7 @@ module Aws::S3
|
|
1752
1954
|
attr_accessor size: ::Integer
|
1753
1955
|
attr_accessor checksum_crc32: ::String
|
1754
1956
|
attr_accessor checksum_crc32c: ::String
|
1957
|
+
attr_accessor checksum_crc64nvme: ::String
|
1755
1958
|
attr_accessor checksum_sha1: ::String
|
1756
1959
|
attr_accessor checksum_sha256: ::String
|
1757
1960
|
SENSITIVE: []
|
@@ -1792,7 +1995,7 @@ module Aws::S3
|
|
1792
1995
|
attr_accessor bucket: ::String
|
1793
1996
|
attr_accessor accelerate_configuration: Types::AccelerateConfiguration
|
1794
1997
|
attr_accessor expected_bucket_owner: ::String
|
1795
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
1998
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1796
1999
|
SENSITIVE: []
|
1797
2000
|
end
|
1798
2001
|
|
@@ -1801,7 +2004,7 @@ module Aws::S3
|
|
1801
2004
|
attr_accessor access_control_policy: Types::AccessControlPolicy
|
1802
2005
|
attr_accessor bucket: ::String
|
1803
2006
|
attr_accessor content_md5: ::String
|
1804
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2007
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1805
2008
|
attr_accessor grant_full_control: ::String
|
1806
2009
|
attr_accessor grant_read: ::String
|
1807
2010
|
attr_accessor grant_read_acp: ::String
|
@@ -1823,7 +2026,7 @@ module Aws::S3
|
|
1823
2026
|
attr_accessor bucket: ::String
|
1824
2027
|
attr_accessor cors_configuration: Types::CORSConfiguration
|
1825
2028
|
attr_accessor content_md5: ::String
|
1826
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2029
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1827
2030
|
attr_accessor expected_bucket_owner: ::String
|
1828
2031
|
SENSITIVE: []
|
1829
2032
|
end
|
@@ -1831,7 +2034,7 @@ module Aws::S3
|
|
1831
2034
|
class PutBucketEncryptionRequest
|
1832
2035
|
attr_accessor bucket: ::String
|
1833
2036
|
attr_accessor content_md5: ::String
|
1834
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2037
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1835
2038
|
attr_accessor server_side_encryption_configuration: Types::ServerSideEncryptionConfiguration
|
1836
2039
|
attr_accessor expected_bucket_owner: ::String
|
1837
2040
|
SENSITIVE: []
|
@@ -1840,6 +2043,7 @@ module Aws::S3
|
|
1840
2043
|
class PutBucketIntelligentTieringConfigurationRequest
|
1841
2044
|
attr_accessor bucket: ::String
|
1842
2045
|
attr_accessor id: ::String
|
2046
|
+
attr_accessor expected_bucket_owner: ::String
|
1843
2047
|
attr_accessor intelligent_tiering_configuration: Types::IntelligentTieringConfiguration
|
1844
2048
|
SENSITIVE: []
|
1845
2049
|
end
|
@@ -1859,7 +2063,7 @@ module Aws::S3
|
|
1859
2063
|
|
1860
2064
|
class PutBucketLifecycleConfigurationRequest
|
1861
2065
|
attr_accessor bucket: ::String
|
1862
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2066
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1863
2067
|
attr_accessor lifecycle_configuration: Types::BucketLifecycleConfiguration
|
1864
2068
|
attr_accessor expected_bucket_owner: ::String
|
1865
2069
|
attr_accessor transition_default_minimum_object_size: ("varies_by_storage_class" | "all_storage_classes_128K")
|
@@ -1869,7 +2073,7 @@ module Aws::S3
|
|
1869
2073
|
class PutBucketLifecycleRequest
|
1870
2074
|
attr_accessor bucket: ::String
|
1871
2075
|
attr_accessor content_md5: ::String
|
1872
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2076
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1873
2077
|
attr_accessor lifecycle_configuration: Types::LifecycleConfiguration
|
1874
2078
|
attr_accessor expected_bucket_owner: ::String
|
1875
2079
|
SENSITIVE: []
|
@@ -1879,7 +2083,7 @@ module Aws::S3
|
|
1879
2083
|
attr_accessor bucket: ::String
|
1880
2084
|
attr_accessor bucket_logging_status: Types::BucketLoggingStatus
|
1881
2085
|
attr_accessor content_md5: ::String
|
1882
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2086
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1883
2087
|
attr_accessor expected_bucket_owner: ::String
|
1884
2088
|
SENSITIVE: []
|
1885
2089
|
end
|
@@ -1903,7 +2107,7 @@ module Aws::S3
|
|
1903
2107
|
class PutBucketNotificationRequest
|
1904
2108
|
attr_accessor bucket: ::String
|
1905
2109
|
attr_accessor content_md5: ::String
|
1906
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2110
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1907
2111
|
attr_accessor notification_configuration: Types::NotificationConfigurationDeprecated
|
1908
2112
|
attr_accessor expected_bucket_owner: ::String
|
1909
2113
|
SENSITIVE: []
|
@@ -1914,13 +2118,14 @@ module Aws::S3
|
|
1914
2118
|
attr_accessor content_md5: ::String
|
1915
2119
|
attr_accessor expected_bucket_owner: ::String
|
1916
2120
|
attr_accessor ownership_controls: Types::OwnershipControls
|
2121
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1917
2122
|
SENSITIVE: []
|
1918
2123
|
end
|
1919
2124
|
|
1920
2125
|
class PutBucketPolicyRequest
|
1921
2126
|
attr_accessor bucket: ::String
|
1922
2127
|
attr_accessor content_md5: ::String
|
1923
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2128
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1924
2129
|
attr_accessor confirm_remove_self_bucket_access: bool
|
1925
2130
|
attr_accessor policy: ::IO
|
1926
2131
|
attr_accessor expected_bucket_owner: ::String
|
@@ -1930,7 +2135,7 @@ module Aws::S3
|
|
1930
2135
|
class PutBucketReplicationRequest
|
1931
2136
|
attr_accessor bucket: ::String
|
1932
2137
|
attr_accessor content_md5: ::String
|
1933
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2138
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1934
2139
|
attr_accessor replication_configuration: Types::ReplicationConfiguration
|
1935
2140
|
attr_accessor token: ::String
|
1936
2141
|
attr_accessor expected_bucket_owner: ::String
|
@@ -1940,7 +2145,7 @@ module Aws::S3
|
|
1940
2145
|
class PutBucketRequestPaymentRequest
|
1941
2146
|
attr_accessor bucket: ::String
|
1942
2147
|
attr_accessor content_md5: ::String
|
1943
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2148
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1944
2149
|
attr_accessor request_payment_configuration: Types::RequestPaymentConfiguration
|
1945
2150
|
attr_accessor expected_bucket_owner: ::String
|
1946
2151
|
SENSITIVE: []
|
@@ -1949,7 +2154,7 @@ module Aws::S3
|
|
1949
2154
|
class PutBucketTaggingRequest
|
1950
2155
|
attr_accessor bucket: ::String
|
1951
2156
|
attr_accessor content_md5: ::String
|
1952
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2157
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1953
2158
|
attr_accessor tagging: Types::Tagging
|
1954
2159
|
attr_accessor expected_bucket_owner: ::String
|
1955
2160
|
SENSITIVE: []
|
@@ -1958,7 +2163,7 @@ module Aws::S3
|
|
1958
2163
|
class PutBucketVersioningRequest
|
1959
2164
|
attr_accessor bucket: ::String
|
1960
2165
|
attr_accessor content_md5: ::String
|
1961
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2166
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1962
2167
|
attr_accessor mfa: ::String
|
1963
2168
|
attr_accessor versioning_configuration: Types::VersioningConfiguration
|
1964
2169
|
attr_accessor expected_bucket_owner: ::String
|
@@ -1968,7 +2173,7 @@ module Aws::S3
|
|
1968
2173
|
class PutBucketWebsiteRequest
|
1969
2174
|
attr_accessor bucket: ::String
|
1970
2175
|
attr_accessor content_md5: ::String
|
1971
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2176
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1972
2177
|
attr_accessor website_configuration: Types::WebsiteConfiguration
|
1973
2178
|
attr_accessor expected_bucket_owner: ::String
|
1974
2179
|
SENSITIVE: []
|
@@ -1984,7 +2189,7 @@ module Aws::S3
|
|
1984
2189
|
attr_accessor access_control_policy: Types::AccessControlPolicy
|
1985
2190
|
attr_accessor bucket: ::String
|
1986
2191
|
attr_accessor content_md5: ::String
|
1987
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2192
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1988
2193
|
attr_accessor grant_full_control: ::String
|
1989
2194
|
attr_accessor grant_read: ::String
|
1990
2195
|
attr_accessor grant_read_acp: ::String
|
@@ -2009,7 +2214,7 @@ module Aws::S3
|
|
2009
2214
|
attr_accessor request_payer: ("requester")
|
2010
2215
|
attr_accessor version_id: ::String
|
2011
2216
|
attr_accessor content_md5: ::String
|
2012
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2217
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2013
2218
|
attr_accessor expected_bucket_owner: ::String
|
2014
2219
|
SENSITIVE: []
|
2015
2220
|
end
|
@@ -2025,7 +2230,7 @@ module Aws::S3
|
|
2025
2230
|
attr_accessor request_payer: ("requester")
|
2026
2231
|
attr_accessor token: ::String
|
2027
2232
|
attr_accessor content_md5: ::String
|
2028
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2233
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2029
2234
|
attr_accessor expected_bucket_owner: ::String
|
2030
2235
|
SENSITIVE: []
|
2031
2236
|
end
|
@@ -2035,15 +2240,18 @@ module Aws::S3
|
|
2035
2240
|
attr_accessor etag: ::String
|
2036
2241
|
attr_accessor checksum_crc32: ::String
|
2037
2242
|
attr_accessor checksum_crc32c: ::String
|
2243
|
+
attr_accessor checksum_crc64nvme: ::String
|
2038
2244
|
attr_accessor checksum_sha1: ::String
|
2039
2245
|
attr_accessor checksum_sha256: ::String
|
2040
|
-
attr_accessor
|
2246
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
2247
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
2041
2248
|
attr_accessor version_id: ::String
|
2042
2249
|
attr_accessor sse_customer_algorithm: ::String
|
2043
2250
|
attr_accessor sse_customer_key_md5: ::String
|
2044
2251
|
attr_accessor ssekms_key_id: ::String
|
2045
2252
|
attr_accessor ssekms_encryption_context: ::String
|
2046
2253
|
attr_accessor bucket_key_enabled: bool
|
2254
|
+
attr_accessor size: ::Integer
|
2047
2255
|
attr_accessor request_charged: ("requester")
|
2048
2256
|
SENSITIVE: [:ssekms_key_id, :ssekms_encryption_context]
|
2049
2257
|
end
|
@@ -2059,21 +2267,24 @@ module Aws::S3
|
|
2059
2267
|
attr_accessor content_length: ::Integer
|
2060
2268
|
attr_accessor content_md5: ::String
|
2061
2269
|
attr_accessor content_type: ::String
|
2062
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2270
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2063
2271
|
attr_accessor checksum_crc32: ::String
|
2064
2272
|
attr_accessor checksum_crc32c: ::String
|
2273
|
+
attr_accessor checksum_crc64nvme: ::String
|
2065
2274
|
attr_accessor checksum_sha1: ::String
|
2066
2275
|
attr_accessor checksum_sha256: ::String
|
2067
2276
|
attr_accessor expires: ::Time
|
2277
|
+
attr_accessor if_match: ::String
|
2068
2278
|
attr_accessor if_none_match: ::String
|
2069
2279
|
attr_accessor grant_full_control: ::String
|
2070
2280
|
attr_accessor grant_read: ::String
|
2071
2281
|
attr_accessor grant_read_acp: ::String
|
2072
2282
|
attr_accessor grant_write_acp: ::String
|
2073
2283
|
attr_accessor key: ::String
|
2284
|
+
attr_accessor write_offset_bytes: ::Integer
|
2074
2285
|
attr_accessor metadata: ::Hash[::String, ::String]
|
2075
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
2076
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
2286
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
2287
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
2077
2288
|
attr_accessor website_redirect_location: ::String
|
2078
2289
|
attr_accessor sse_customer_algorithm: ::String
|
2079
2290
|
attr_accessor sse_customer_key: ::String
|
@@ -2103,7 +2314,7 @@ module Aws::S3
|
|
2103
2314
|
attr_accessor version_id: ::String
|
2104
2315
|
attr_accessor bypass_governance_retention: bool
|
2105
2316
|
attr_accessor content_md5: ::String
|
2106
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2317
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2107
2318
|
attr_accessor expected_bucket_owner: ::String
|
2108
2319
|
SENSITIVE: []
|
2109
2320
|
end
|
@@ -2118,7 +2329,7 @@ module Aws::S3
|
|
2118
2329
|
attr_accessor key: ::String
|
2119
2330
|
attr_accessor version_id: ::String
|
2120
2331
|
attr_accessor content_md5: ::String
|
2121
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2332
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2122
2333
|
attr_accessor tagging: Types::Tagging
|
2123
2334
|
attr_accessor expected_bucket_owner: ::String
|
2124
2335
|
attr_accessor request_payer: ("requester")
|
@@ -2128,7 +2339,7 @@ module Aws::S3
|
|
2128
2339
|
class PutPublicAccessBlockRequest
|
2129
2340
|
attr_accessor bucket: ::String
|
2130
2341
|
attr_accessor content_md5: ::String
|
2131
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2342
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2132
2343
|
attr_accessor public_access_block_configuration: Types::PublicAccessBlockConfiguration
|
2133
2344
|
attr_accessor expected_bucket_owner: ::String
|
2134
2345
|
SENSITIVE: []
|
@@ -2150,6 +2361,12 @@ module Aws::S3
|
|
2150
2361
|
SENSITIVE: []
|
2151
2362
|
end
|
2152
2363
|
|
2364
|
+
class RecordExpiration
|
2365
|
+
attr_accessor expiration: ("ENABLED" | "DISABLED")
|
2366
|
+
attr_accessor days: ::Integer
|
2367
|
+
SENSITIVE: []
|
2368
|
+
end
|
2369
|
+
|
2153
2370
|
class RecordsEvent
|
2154
2371
|
attr_accessor payload: ::IO
|
2155
2372
|
attr_accessor event_type: untyped
|
@@ -2171,6 +2388,25 @@ module Aws::S3
|
|
2171
2388
|
SENSITIVE: []
|
2172
2389
|
end
|
2173
2390
|
|
2391
|
+
class RenameObjectOutput < Aws::EmptyStructure
|
2392
|
+
end
|
2393
|
+
|
2394
|
+
class RenameObjectRequest
|
2395
|
+
attr_accessor bucket: ::String
|
2396
|
+
attr_accessor key: ::String
|
2397
|
+
attr_accessor rename_source: ::String
|
2398
|
+
attr_accessor destination_if_match: ::String
|
2399
|
+
attr_accessor destination_if_none_match: ::String
|
2400
|
+
attr_accessor destination_if_modified_since: ::Time
|
2401
|
+
attr_accessor destination_if_unmodified_since: ::Time
|
2402
|
+
attr_accessor source_if_match: ::String
|
2403
|
+
attr_accessor source_if_none_match: ::String
|
2404
|
+
attr_accessor source_if_modified_since: ::Time
|
2405
|
+
attr_accessor source_if_unmodified_since: ::Time
|
2406
|
+
attr_accessor client_token: ::String
|
2407
|
+
SENSITIVE: []
|
2408
|
+
end
|
2409
|
+
|
2174
2410
|
class ReplicaModifications
|
2175
2411
|
attr_accessor status: ("Enabled" | "Disabled")
|
2176
2412
|
SENSITIVE: []
|
@@ -2241,7 +2477,7 @@ module Aws::S3
|
|
2241
2477
|
attr_accessor version_id: ::String
|
2242
2478
|
attr_accessor restore_request: Types::RestoreRequest
|
2243
2479
|
attr_accessor request_payer: ("requester")
|
2244
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2480
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2245
2481
|
attr_accessor expected_bucket_owner: ::String
|
2246
2482
|
SENSITIVE: []
|
2247
2483
|
end
|
@@ -2294,7 +2530,21 @@ module Aws::S3
|
|
2294
2530
|
attr_accessor access_control_list: ::Array[Types::Grant]
|
2295
2531
|
attr_accessor tagging: Types::Tagging
|
2296
2532
|
attr_accessor user_metadata: ::Array[Types::MetadataEntry]
|
2297
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
2533
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
2534
|
+
SENSITIVE: []
|
2535
|
+
end
|
2536
|
+
|
2537
|
+
class S3TablesDestination
|
2538
|
+
attr_accessor table_bucket_arn: ::String
|
2539
|
+
attr_accessor table_name: ::String
|
2540
|
+
SENSITIVE: []
|
2541
|
+
end
|
2542
|
+
|
2543
|
+
class S3TablesDestinationResult
|
2544
|
+
attr_accessor table_bucket_arn: ::String
|
2545
|
+
attr_accessor table_name: ::String
|
2546
|
+
attr_accessor table_arn: ::String
|
2547
|
+
attr_accessor table_namespace: ::String
|
2298
2548
|
SENSITIVE: []
|
2299
2549
|
end
|
2300
2550
|
|
@@ -2342,7 +2592,7 @@ module Aws::S3
|
|
2342
2592
|
end
|
2343
2593
|
|
2344
2594
|
class ServerSideEncryptionByDefault
|
2345
|
-
attr_accessor sse_algorithm: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
2595
|
+
attr_accessor sse_algorithm: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
2346
2596
|
attr_accessor kms_master_key_id: ::String
|
2347
2597
|
SENSITIVE: [:kms_master_key_id]
|
2348
2598
|
end
|
@@ -2433,6 +2683,9 @@ module Aws::S3
|
|
2433
2683
|
SENSITIVE: []
|
2434
2684
|
end
|
2435
2685
|
|
2686
|
+
class TooManyParts < Aws::EmptyStructure
|
2687
|
+
end
|
2688
|
+
|
2436
2689
|
class TopicConfiguration
|
2437
2690
|
attr_accessor id: ::String
|
2438
2691
|
attr_accessor topic_arn: ::String
|
@@ -2456,10 +2709,28 @@ module Aws::S3
|
|
2456
2709
|
SENSITIVE: []
|
2457
2710
|
end
|
2458
2711
|
|
2712
|
+
class UpdateBucketMetadataInventoryTableConfigurationRequest
|
2713
|
+
attr_accessor bucket: ::String
|
2714
|
+
attr_accessor content_md5: ::String
|
2715
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2716
|
+
attr_accessor inventory_table_configuration: Types::InventoryTableConfigurationUpdates
|
2717
|
+
attr_accessor expected_bucket_owner: ::String
|
2718
|
+
SENSITIVE: []
|
2719
|
+
end
|
2720
|
+
|
2721
|
+
class UpdateBucketMetadataJournalTableConfigurationRequest
|
2722
|
+
attr_accessor bucket: ::String
|
2723
|
+
attr_accessor content_md5: ::String
|
2724
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2725
|
+
attr_accessor journal_table_configuration: Types::JournalTableConfigurationUpdates
|
2726
|
+
attr_accessor expected_bucket_owner: ::String
|
2727
|
+
SENSITIVE: []
|
2728
|
+
end
|
2729
|
+
|
2459
2730
|
class UploadPartCopyOutput
|
2460
2731
|
attr_accessor copy_source_version_id: ::String
|
2461
2732
|
attr_accessor copy_part_result: Types::CopyPartResult
|
2462
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
2733
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
2463
2734
|
attr_accessor sse_customer_algorithm: ::String
|
2464
2735
|
attr_accessor sse_customer_key_md5: ::String
|
2465
2736
|
attr_accessor ssekms_key_id: ::String
|
@@ -2492,10 +2763,11 @@ module Aws::S3
|
|
2492
2763
|
end
|
2493
2764
|
|
2494
2765
|
class UploadPartOutput
|
2495
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
2766
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
2496
2767
|
attr_accessor etag: ::String
|
2497
2768
|
attr_accessor checksum_crc32: ::String
|
2498
2769
|
attr_accessor checksum_crc32c: ::String
|
2770
|
+
attr_accessor checksum_crc64nvme: ::String
|
2499
2771
|
attr_accessor checksum_sha1: ::String
|
2500
2772
|
attr_accessor checksum_sha256: ::String
|
2501
2773
|
attr_accessor sse_customer_algorithm: ::String
|
@@ -2511,9 +2783,10 @@ module Aws::S3
|
|
2511
2783
|
attr_accessor bucket: ::String
|
2512
2784
|
attr_accessor content_length: ::Integer
|
2513
2785
|
attr_accessor content_md5: ::String
|
2514
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2786
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2515
2787
|
attr_accessor checksum_crc32: ::String
|
2516
2788
|
attr_accessor checksum_crc32c: ::String
|
2789
|
+
attr_accessor checksum_crc64nvme: ::String
|
2517
2790
|
attr_accessor checksum_sha1: ::String
|
2518
2791
|
attr_accessor checksum_sha256: ::String
|
2519
2792
|
attr_accessor key: ::String
|
@@ -2558,6 +2831,7 @@ module Aws::S3
|
|
2558
2831
|
attr_accessor content_type: ::String
|
2559
2832
|
attr_accessor checksum_crc32: ::String
|
2560
2833
|
attr_accessor checksum_crc32c: ::String
|
2834
|
+
attr_accessor checksum_crc64nvme: ::String
|
2561
2835
|
attr_accessor checksum_sha1: ::String
|
2562
2836
|
attr_accessor checksum_sha256: ::String
|
2563
2837
|
attr_accessor delete_marker: bool
|
@@ -2574,11 +2848,11 @@ module Aws::S3
|
|
2574
2848
|
attr_accessor replication_status: ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
|
2575
2849
|
attr_accessor request_charged: ("requester")
|
2576
2850
|
attr_accessor restore: ::String
|
2577
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
2851
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
2578
2852
|
attr_accessor sse_customer_algorithm: ::String
|
2579
2853
|
attr_accessor ssekms_key_id: ::String
|
2580
2854
|
attr_accessor sse_customer_key_md5: ::String
|
2581
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
2855
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
2582
2856
|
attr_accessor tag_count: ::Integer
|
2583
2857
|
attr_accessor version_id: ::String
|
2584
2858
|
attr_accessor bucket_key_enabled: bool
|