aws-sdk-s3 1.151.0 → 1.208.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 +352 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/access_grants_credentials_provider.rb +12 -3
- data/lib/aws-sdk-s3/bucket.rb +358 -109
- data/lib/aws-sdk-s3/bucket_acl.rb +10 -9
- data/lib/aws-sdk-s3/bucket_cors.rb +10 -9
- data/lib/aws-sdk-s3/bucket_lifecycle.rb +11 -6
- data/lib/aws-sdk-s3/bucket_lifecycle_configuration.rb +64 -7
- data/lib/aws-sdk-s3/bucket_logging.rb +5 -5
- data/lib/aws-sdk-s3/bucket_notification.rb +3 -3
- data/lib/aws-sdk-s3/bucket_policy.rb +14 -13
- data/lib/aws-sdk-s3/bucket_request_payment.rb +6 -6
- data/lib/aws-sdk-s3/bucket_tagging.rb +7 -7
- data/lib/aws-sdk-s3/bucket_versioning.rb +47 -14
- data/lib/aws-sdk-s3/bucket_website.rb +7 -7
- data/lib/aws-sdk-s3/client.rb +5530 -2075
- data/lib/aws-sdk-s3/client_api.rb +660 -162
- data/lib/aws-sdk-s3/customizations/bucket.rb +1 -1
- data/lib/aws-sdk-s3/customizations/object.rb +87 -91
- data/lib/aws-sdk-s3/customizations/object_summary.rb +5 -0
- data/lib/aws-sdk-s3/customizations/object_version.rb +13 -0
- data/lib/aws-sdk-s3/customizations.rb +28 -39
- data/lib/aws-sdk-s3/default_executor.rb +103 -0
- data/lib/aws-sdk-s3/encryption/client.rb +4 -4
- data/lib/aws-sdk-s3/encryption/default_cipher_provider.rb +2 -0
- data/lib/aws-sdk-s3/encryption/encrypt_handler.rb +2 -0
- data/lib/aws-sdk-s3/encryption/kms_cipher_provider.rb +4 -2
- data/lib/aws-sdk-s3/encryptionV2/client.rb +100 -25
- data/lib/aws-sdk-s3/encryptionV2/decrypt_handler.rb +7 -162
- data/lib/aws-sdk-s3/encryptionV2/decryption.rb +205 -0
- data/lib/aws-sdk-s3/encryptionV2/default_cipher_provider.rb +17 -0
- data/lib/aws-sdk-s3/encryptionV2/encrypt_handler.rb +2 -0
- data/lib/aws-sdk-s3/encryptionV2/io_encrypter.rb +2 -0
- data/lib/aws-sdk-s3/encryptionV2/kms_cipher_provider.rb +10 -2
- data/lib/aws-sdk-s3/encryptionV2/utils.rb +5 -0
- data/lib/aws-sdk-s3/encryptionV3/client.rb +885 -0
- data/lib/aws-sdk-s3/encryptionV3/decrypt_handler.rb +98 -0
- data/lib/aws-sdk-s3/encryptionV3/decryption.rb +244 -0
- data/lib/aws-sdk-s3/encryptionV3/default_cipher_provider.rb +159 -0
- data/lib/aws-sdk-s3/encryptionV3/default_key_provider.rb +35 -0
- data/lib/aws-sdk-s3/encryptionV3/encrypt_handler.rb +98 -0
- data/lib/aws-sdk-s3/encryptionV3/errors.rb +47 -0
- data/lib/aws-sdk-s3/encryptionV3/io_auth_decrypter.rb +60 -0
- data/lib/aws-sdk-s3/encryptionV3/io_decrypter.rb +35 -0
- data/lib/aws-sdk-s3/encryptionV3/io_encrypter.rb +84 -0
- data/lib/aws-sdk-s3/encryptionV3/key_provider.rb +28 -0
- data/lib/aws-sdk-s3/encryptionV3/kms_cipher_provider.rb +159 -0
- data/lib/aws-sdk-s3/encryptionV3/materials.rb +58 -0
- data/lib/aws-sdk-s3/encryptionV3/utils.rb +321 -0
- data/lib/aws-sdk-s3/encryption_v2.rb +1 -0
- data/lib/aws-sdk-s3/encryption_v3.rb +24 -0
- data/lib/aws-sdk-s3/endpoint_parameters.rb +37 -34
- data/lib/aws-sdk-s3/endpoint_provider.rb +572 -277
- data/lib/aws-sdk-s3/endpoints.rb +566 -1612
- data/lib/aws-sdk-s3/errors.rb +58 -0
- data/lib/aws-sdk-s3/file_downloader.rb +192 -146
- data/lib/aws-sdk-s3/file_uploader.rb +10 -14
- data/lib/aws-sdk-s3/legacy_signer.rb +2 -1
- data/lib/aws-sdk-s3/multipart_download_error.rb +8 -0
- data/lib/aws-sdk-s3/multipart_file_uploader.rb +105 -102
- data/lib/aws-sdk-s3/multipart_stream_uploader.rb +97 -108
- data/lib/aws-sdk-s3/multipart_upload.rb +112 -12
- data/lib/aws-sdk-s3/multipart_upload_error.rb +3 -4
- data/lib/aws-sdk-s3/multipart_upload_part.rb +55 -39
- data/lib/aws-sdk-s3/object.rb +713 -227
- data/lib/aws-sdk-s3/object_acl.rb +15 -9
- data/lib/aws-sdk-s3/object_copier.rb +1 -1
- data/lib/aws-sdk-s3/object_multipart_copier.rb +2 -1
- data/lib/aws-sdk-s3/object_summary.rb +592 -173
- data/lib/aws-sdk-s3/object_version.rb +102 -17
- data/lib/aws-sdk-s3/plugins/access_grants.rb +75 -5
- data/lib/aws-sdk-s3/plugins/checksum_algorithm.rb +31 -0
- data/lib/aws-sdk-s3/plugins/endpoints.rb +25 -213
- data/lib/aws-sdk-s3/plugins/express_session_auth.rb +18 -21
- data/lib/aws-sdk-s3/plugins/http_200_errors.rb +55 -18
- 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 +53 -20
- data/lib/aws-sdk-s3/transfer_manager.rb +303 -0
- data/lib/aws-sdk-s3/types.rb +4705 -1528
- data/lib/aws-sdk-s3.rb +35 -31
- data/sig/bucket.rbs +28 -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 +8 -4
- 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 +322 -72
- data/sig/errors.rbs +10 -0
- data/sig/multipart_upload.rbs +13 -3
- data/sig/multipart_upload_part.rbs +5 -1
- data/sig/object.rbs +44 -16
- data/sig/object_acl.rbs +1 -1
- data/sig/object_summary.rbs +29 -16
- data/sig/object_version.rbs +15 -3
- data/sig/resource.rbs +20 -5
- data/sig/types.rbs +403 -66
- data/sig/waiters.rbs +12 -0
- metadata +29 -12
- data/lib/aws-sdk-s3/plugins/skip_whole_multipart_get_checksums.rb +0 -31
data/sig/types.rbs
CHANGED
|
@@ -8,6 +8,11 @@
|
|
|
8
8
|
module Aws::S3
|
|
9
9
|
module Types
|
|
10
10
|
|
|
11
|
+
class AbacStatus
|
|
12
|
+
attr_accessor status: ("Enabled" | "Disabled")
|
|
13
|
+
SENSITIVE: []
|
|
14
|
+
end
|
|
15
|
+
|
|
11
16
|
class AbortIncompleteMultipartUpload
|
|
12
17
|
attr_accessor days_after_initiation: ::Integer
|
|
13
18
|
SENSITIVE: []
|
|
@@ -24,6 +29,7 @@ module Aws::S3
|
|
|
24
29
|
attr_accessor upload_id: ::String
|
|
25
30
|
attr_accessor request_payer: ("requester")
|
|
26
31
|
attr_accessor expected_bucket_owner: ::String
|
|
32
|
+
attr_accessor if_match_initiated_time: ::Time
|
|
27
33
|
SENSITIVE: []
|
|
28
34
|
end
|
|
29
35
|
|
|
@@ -76,9 +82,16 @@ module Aws::S3
|
|
|
76
82
|
SENSITIVE: []
|
|
77
83
|
end
|
|
78
84
|
|
|
85
|
+
class BlockedEncryptionTypes
|
|
86
|
+
attr_accessor encryption_type: ::Array[("NONE" | "SSE-C")]
|
|
87
|
+
SENSITIVE: []
|
|
88
|
+
end
|
|
89
|
+
|
|
79
90
|
class Bucket
|
|
80
91
|
attr_accessor name: ::String
|
|
81
92
|
attr_accessor creation_date: ::Time
|
|
93
|
+
attr_accessor bucket_region: ::String
|
|
94
|
+
attr_accessor bucket_arn: ::String
|
|
82
95
|
SENSITIVE: []
|
|
83
96
|
end
|
|
84
97
|
|
|
@@ -89,7 +102,7 @@ module Aws::S3
|
|
|
89
102
|
end
|
|
90
103
|
|
|
91
104
|
class BucketInfo
|
|
92
|
-
attr_accessor data_redundancy: ("SingleAvailabilityZone")
|
|
105
|
+
attr_accessor data_redundancy: ("SingleAvailabilityZone" | "SingleLocalZone")
|
|
93
106
|
attr_accessor type: ("Directory")
|
|
94
107
|
SENSITIVE: []
|
|
95
108
|
end
|
|
@@ -142,8 +155,10 @@ module Aws::S3
|
|
|
142
155
|
class Checksum
|
|
143
156
|
attr_accessor checksum_crc32: ::String
|
|
144
157
|
attr_accessor checksum_crc32c: ::String
|
|
158
|
+
attr_accessor checksum_crc64nvme: ::String
|
|
145
159
|
attr_accessor checksum_sha1: ::String
|
|
146
160
|
attr_accessor checksum_sha256: ::String
|
|
161
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
|
147
162
|
SENSITIVE: []
|
|
148
163
|
end
|
|
149
164
|
|
|
@@ -169,9 +184,11 @@ module Aws::S3
|
|
|
169
184
|
attr_accessor etag: ::String
|
|
170
185
|
attr_accessor checksum_crc32: ::String
|
|
171
186
|
attr_accessor checksum_crc32c: ::String
|
|
187
|
+
attr_accessor checksum_crc64nvme: ::String
|
|
172
188
|
attr_accessor checksum_sha1: ::String
|
|
173
189
|
attr_accessor checksum_sha256: ::String
|
|
174
|
-
attr_accessor
|
|
190
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
|
191
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
175
192
|
attr_accessor version_id: ::String
|
|
176
193
|
attr_accessor ssekms_key_id: ::String
|
|
177
194
|
attr_accessor bucket_key_enabled: bool
|
|
@@ -186,10 +203,15 @@ module Aws::S3
|
|
|
186
203
|
attr_accessor upload_id: ::String
|
|
187
204
|
attr_accessor checksum_crc32: ::String
|
|
188
205
|
attr_accessor checksum_crc32c: ::String
|
|
206
|
+
attr_accessor checksum_crc64nvme: ::String
|
|
189
207
|
attr_accessor checksum_sha1: ::String
|
|
190
208
|
attr_accessor checksum_sha256: ::String
|
|
209
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
|
210
|
+
attr_accessor mpu_object_size: ::Integer
|
|
191
211
|
attr_accessor request_payer: ("requester")
|
|
192
212
|
attr_accessor expected_bucket_owner: ::String
|
|
213
|
+
attr_accessor if_match: ::String
|
|
214
|
+
attr_accessor if_none_match: ::String
|
|
193
215
|
attr_accessor sse_customer_algorithm: ::String
|
|
194
216
|
attr_accessor sse_customer_key: ::String
|
|
195
217
|
attr_accessor sse_customer_key_md5: ::String
|
|
@@ -205,6 +227,7 @@ module Aws::S3
|
|
|
205
227
|
attr_accessor etag: ::String
|
|
206
228
|
attr_accessor checksum_crc32: ::String
|
|
207
229
|
attr_accessor checksum_crc32c: ::String
|
|
230
|
+
attr_accessor checksum_crc64nvme: ::String
|
|
208
231
|
attr_accessor checksum_sha1: ::String
|
|
209
232
|
attr_accessor checksum_sha256: ::String
|
|
210
233
|
attr_accessor part_number: ::Integer
|
|
@@ -227,7 +250,7 @@ module Aws::S3
|
|
|
227
250
|
attr_accessor expiration: ::String
|
|
228
251
|
attr_accessor copy_source_version_id: ::String
|
|
229
252
|
attr_accessor version_id: ::String
|
|
230
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
|
253
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
231
254
|
attr_accessor sse_customer_algorithm: ::String
|
|
232
255
|
attr_accessor sse_customer_key_md5: ::String
|
|
233
256
|
attr_accessor ssekms_key_id: ::String
|
|
@@ -241,7 +264,7 @@ module Aws::S3
|
|
|
241
264
|
attr_accessor acl: ("private" | "public-read" | "public-read-write" | "authenticated-read" | "aws-exec-read" | "bucket-owner-read" | "bucket-owner-full-control")
|
|
242
265
|
attr_accessor bucket: ::String
|
|
243
266
|
attr_accessor cache_control: ::String
|
|
244
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
267
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
245
268
|
attr_accessor content_disposition: ::String
|
|
246
269
|
attr_accessor content_encoding: ::String
|
|
247
270
|
attr_accessor content_language: ::String
|
|
@@ -256,12 +279,14 @@ module Aws::S3
|
|
|
256
279
|
attr_accessor grant_read: ::String
|
|
257
280
|
attr_accessor grant_read_acp: ::String
|
|
258
281
|
attr_accessor grant_write_acp: ::String
|
|
282
|
+
attr_accessor if_match: ::String
|
|
283
|
+
attr_accessor if_none_match: ::String
|
|
259
284
|
attr_accessor key: ::String
|
|
260
285
|
attr_accessor metadata: ::Hash[::String, ::String]
|
|
261
286
|
attr_accessor metadata_directive: ("COPY" | "REPLACE")
|
|
262
287
|
attr_accessor tagging_directive: ("COPY" | "REPLACE")
|
|
263
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
|
264
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
|
288
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
289
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
|
|
265
290
|
attr_accessor website_redirect_location: ::String
|
|
266
291
|
attr_accessor sse_customer_algorithm: ::String
|
|
267
292
|
attr_accessor sse_customer_key: ::String
|
|
@@ -285,8 +310,10 @@ module Aws::S3
|
|
|
285
310
|
class CopyObjectResult
|
|
286
311
|
attr_accessor etag: ::String
|
|
287
312
|
attr_accessor last_modified: ::Time
|
|
313
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
|
288
314
|
attr_accessor checksum_crc32: ::String
|
|
289
315
|
attr_accessor checksum_crc32c: ::String
|
|
316
|
+
attr_accessor checksum_crc64nvme: ::String
|
|
290
317
|
attr_accessor checksum_sha1: ::String
|
|
291
318
|
attr_accessor checksum_sha256: ::String
|
|
292
319
|
SENSITIVE: []
|
|
@@ -297,20 +324,41 @@ module Aws::S3
|
|
|
297
324
|
attr_accessor last_modified: ::Time
|
|
298
325
|
attr_accessor checksum_crc32: ::String
|
|
299
326
|
attr_accessor checksum_crc32c: ::String
|
|
327
|
+
attr_accessor checksum_crc64nvme: ::String
|
|
300
328
|
attr_accessor checksum_sha1: ::String
|
|
301
329
|
attr_accessor checksum_sha256: ::String
|
|
302
330
|
SENSITIVE: []
|
|
303
331
|
end
|
|
304
332
|
|
|
305
333
|
class CreateBucketConfiguration
|
|
306
|
-
attr_accessor location_constraint: ("af-south-1" | "ap-east-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ca-central-1" | "cn-north-1" | "cn-northwest-1" | "EU" | "eu-central-1" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "me-south-1" | "sa-east-1" | "us-east-2" | "us-gov-east-1" | "us-gov-west-1" | "us-west-1" | "us-west-2")
|
|
334
|
+
attr_accessor location_constraint: ("af-south-1" | "ap-east-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-4" | "ap-southeast-5" | "ca-central-1" | "cn-north-1" | "cn-northwest-1" | "EU" | "eu-central-1" | "eu-central-2" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "il-central-1" | "me-central-1" | "me-south-1" | "sa-east-1" | "us-east-2" | "us-gov-east-1" | "us-gov-west-1" | "us-west-1" | "us-west-2")
|
|
307
335
|
attr_accessor location: Types::LocationInfo
|
|
308
336
|
attr_accessor bucket: Types::BucketInfo
|
|
337
|
+
attr_accessor tags: ::Array[Types::Tag]
|
|
338
|
+
SENSITIVE: []
|
|
339
|
+
end
|
|
340
|
+
|
|
341
|
+
class CreateBucketMetadataConfigurationRequest
|
|
342
|
+
attr_accessor bucket: ::String
|
|
343
|
+
attr_accessor content_md5: ::String
|
|
344
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
345
|
+
attr_accessor metadata_configuration: Types::MetadataConfiguration
|
|
346
|
+
attr_accessor expected_bucket_owner: ::String
|
|
347
|
+
SENSITIVE: []
|
|
348
|
+
end
|
|
349
|
+
|
|
350
|
+
class CreateBucketMetadataTableConfigurationRequest
|
|
351
|
+
attr_accessor bucket: ::String
|
|
352
|
+
attr_accessor content_md5: ::String
|
|
353
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
354
|
+
attr_accessor metadata_table_configuration: Types::MetadataTableConfiguration
|
|
355
|
+
attr_accessor expected_bucket_owner: ::String
|
|
309
356
|
SENSITIVE: []
|
|
310
357
|
end
|
|
311
358
|
|
|
312
359
|
class CreateBucketOutput
|
|
313
360
|
attr_accessor location: ::String
|
|
361
|
+
attr_accessor bucket_arn: ::String
|
|
314
362
|
SENSITIVE: []
|
|
315
363
|
end
|
|
316
364
|
|
|
@@ -334,14 +382,15 @@ module Aws::S3
|
|
|
334
382
|
attr_accessor bucket: ::String
|
|
335
383
|
attr_accessor key: ::String
|
|
336
384
|
attr_accessor upload_id: ::String
|
|
337
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
|
385
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
338
386
|
attr_accessor sse_customer_algorithm: ::String
|
|
339
387
|
attr_accessor sse_customer_key_md5: ::String
|
|
340
388
|
attr_accessor ssekms_key_id: ::String
|
|
341
389
|
attr_accessor ssekms_encryption_context: ::String
|
|
342
390
|
attr_accessor bucket_key_enabled: bool
|
|
343
391
|
attr_accessor request_charged: ("requester")
|
|
344
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
392
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
393
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
|
345
394
|
SENSITIVE: [:ssekms_key_id, :ssekms_encryption_context]
|
|
346
395
|
end
|
|
347
396
|
|
|
@@ -360,8 +409,8 @@ module Aws::S3
|
|
|
360
409
|
attr_accessor grant_write_acp: ::String
|
|
361
410
|
attr_accessor key: ::String
|
|
362
411
|
attr_accessor metadata: ::Hash[::String, ::String]
|
|
363
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
|
364
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
|
412
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
413
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
|
|
365
414
|
attr_accessor website_redirect_location: ::String
|
|
366
415
|
attr_accessor sse_customer_algorithm: ::String
|
|
367
416
|
attr_accessor sse_customer_key: ::String
|
|
@@ -375,19 +424,28 @@ module Aws::S3
|
|
|
375
424
|
attr_accessor object_lock_retain_until_date: ::Time
|
|
376
425
|
attr_accessor object_lock_legal_hold_status: ("ON" | "OFF")
|
|
377
426
|
attr_accessor expected_bucket_owner: ::String
|
|
378
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
427
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
428
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
|
379
429
|
SENSITIVE: [:sse_customer_key, :ssekms_key_id, :ssekms_encryption_context]
|
|
380
430
|
end
|
|
381
431
|
|
|
382
432
|
class CreateSessionOutput
|
|
433
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
434
|
+
attr_accessor ssekms_key_id: ::String
|
|
435
|
+
attr_accessor ssekms_encryption_context: ::String
|
|
436
|
+
attr_accessor bucket_key_enabled: bool
|
|
383
437
|
attr_accessor credentials: Types::SessionCredentials
|
|
384
|
-
SENSITIVE: []
|
|
438
|
+
SENSITIVE: [:ssekms_key_id, :ssekms_encryption_context]
|
|
385
439
|
end
|
|
386
440
|
|
|
387
441
|
class CreateSessionRequest
|
|
388
442
|
attr_accessor session_mode: ("ReadOnly" | "ReadWrite")
|
|
389
443
|
attr_accessor bucket: ::String
|
|
390
|
-
|
|
444
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
445
|
+
attr_accessor ssekms_key_id: ::String
|
|
446
|
+
attr_accessor ssekms_encryption_context: ::String
|
|
447
|
+
attr_accessor bucket_key_enabled: bool
|
|
448
|
+
SENSITIVE: [:ssekms_key_id, :ssekms_encryption_context]
|
|
391
449
|
end
|
|
392
450
|
|
|
393
451
|
class DefaultRetention
|
|
@@ -425,6 +483,7 @@ module Aws::S3
|
|
|
425
483
|
class DeleteBucketIntelligentTieringConfigurationRequest
|
|
426
484
|
attr_accessor bucket: ::String
|
|
427
485
|
attr_accessor id: ::String
|
|
486
|
+
attr_accessor expected_bucket_owner: ::String
|
|
428
487
|
SENSITIVE: []
|
|
429
488
|
end
|
|
430
489
|
|
|
@@ -441,6 +500,18 @@ module Aws::S3
|
|
|
441
500
|
SENSITIVE: []
|
|
442
501
|
end
|
|
443
502
|
|
|
503
|
+
class DeleteBucketMetadataConfigurationRequest
|
|
504
|
+
attr_accessor bucket: ::String
|
|
505
|
+
attr_accessor expected_bucket_owner: ::String
|
|
506
|
+
SENSITIVE: []
|
|
507
|
+
end
|
|
508
|
+
|
|
509
|
+
class DeleteBucketMetadataTableConfigurationRequest
|
|
510
|
+
attr_accessor bucket: ::String
|
|
511
|
+
attr_accessor expected_bucket_owner: ::String
|
|
512
|
+
SENSITIVE: []
|
|
513
|
+
end
|
|
514
|
+
|
|
444
515
|
class DeleteBucketMetricsConfigurationRequest
|
|
445
516
|
attr_accessor bucket: ::String
|
|
446
517
|
attr_accessor id: ::String
|
|
@@ -513,6 +584,9 @@ module Aws::S3
|
|
|
513
584
|
attr_accessor request_payer: ("requester")
|
|
514
585
|
attr_accessor bypass_governance_retention: bool
|
|
515
586
|
attr_accessor expected_bucket_owner: ::String
|
|
587
|
+
attr_accessor if_match: ::String
|
|
588
|
+
attr_accessor if_match_last_modified_time: ::Time
|
|
589
|
+
attr_accessor if_match_size: ::Integer
|
|
516
590
|
SENSITIVE: []
|
|
517
591
|
end
|
|
518
592
|
|
|
@@ -543,7 +617,7 @@ module Aws::S3
|
|
|
543
617
|
attr_accessor request_payer: ("requester")
|
|
544
618
|
attr_accessor bypass_governance_retention: bool
|
|
545
619
|
attr_accessor expected_bucket_owner: ::String
|
|
546
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
620
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
547
621
|
SENSITIVE: []
|
|
548
622
|
end
|
|
549
623
|
|
|
@@ -564,7 +638,7 @@ module Aws::S3
|
|
|
564
638
|
class Destination
|
|
565
639
|
attr_accessor bucket: ::String
|
|
566
640
|
attr_accessor account: ::String
|
|
567
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
|
641
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
|
|
568
642
|
attr_accessor access_control_translation: Types::AccessControlTranslation
|
|
569
643
|
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
|
570
644
|
attr_accessor replication_time: Types::ReplicationTime
|
|
@@ -572,8 +646,15 @@ module Aws::S3
|
|
|
572
646
|
SENSITIVE: []
|
|
573
647
|
end
|
|
574
648
|
|
|
649
|
+
class DestinationResult
|
|
650
|
+
attr_accessor table_bucket_type: ("aws" | "customer")
|
|
651
|
+
attr_accessor table_bucket_arn: ::String
|
|
652
|
+
attr_accessor table_namespace: ::String
|
|
653
|
+
SENSITIVE: []
|
|
654
|
+
end
|
|
655
|
+
|
|
575
656
|
class Encryption
|
|
576
|
-
attr_accessor encryption_type: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
|
657
|
+
attr_accessor encryption_type: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
577
658
|
attr_accessor kms_key_id: ::String
|
|
578
659
|
attr_accessor kms_context: ::String
|
|
579
660
|
SENSITIVE: [:kms_key_id]
|
|
@@ -584,6 +665,9 @@ module Aws::S3
|
|
|
584
665
|
SENSITIVE: []
|
|
585
666
|
end
|
|
586
667
|
|
|
668
|
+
class EncryptionTypeMismatch < Aws::EmptyStructure
|
|
669
|
+
end
|
|
670
|
+
|
|
587
671
|
class EndEvent
|
|
588
672
|
attr_accessor event_type: untyped
|
|
589
673
|
SENSITIVE: []
|
|
@@ -597,6 +681,12 @@ module Aws::S3
|
|
|
597
681
|
SENSITIVE: []
|
|
598
682
|
end
|
|
599
683
|
|
|
684
|
+
class ErrorDetails
|
|
685
|
+
attr_accessor error_code: ::String
|
|
686
|
+
attr_accessor error_message: ::String
|
|
687
|
+
SENSITIVE: []
|
|
688
|
+
end
|
|
689
|
+
|
|
600
690
|
class ErrorDocument
|
|
601
691
|
attr_accessor key: ::String
|
|
602
692
|
SENSITIVE: []
|
|
@@ -616,6 +706,17 @@ module Aws::S3
|
|
|
616
706
|
SENSITIVE: []
|
|
617
707
|
end
|
|
618
708
|
|
|
709
|
+
class GetBucketAbacOutput
|
|
710
|
+
attr_accessor abac_status: Types::AbacStatus
|
|
711
|
+
SENSITIVE: []
|
|
712
|
+
end
|
|
713
|
+
|
|
714
|
+
class GetBucketAbacRequest
|
|
715
|
+
attr_accessor bucket: ::String
|
|
716
|
+
attr_accessor expected_bucket_owner: ::String
|
|
717
|
+
SENSITIVE: []
|
|
718
|
+
end
|
|
719
|
+
|
|
619
720
|
class GetBucketAccelerateConfigurationOutput
|
|
620
721
|
attr_accessor status: ("Enabled" | "Suspended")
|
|
621
722
|
attr_accessor request_charged: ("requester")
|
|
@@ -683,6 +784,7 @@ module Aws::S3
|
|
|
683
784
|
class GetBucketIntelligentTieringConfigurationRequest
|
|
684
785
|
attr_accessor bucket: ::String
|
|
685
786
|
attr_accessor id: ::String
|
|
787
|
+
attr_accessor expected_bucket_owner: ::String
|
|
686
788
|
SENSITIVE: []
|
|
687
789
|
end
|
|
688
790
|
|
|
@@ -700,6 +802,7 @@ module Aws::S3
|
|
|
700
802
|
|
|
701
803
|
class GetBucketLifecycleConfigurationOutput
|
|
702
804
|
attr_accessor rules: ::Array[Types::LifecycleRule]
|
|
805
|
+
attr_accessor transition_default_minimum_object_size: ("varies_by_storage_class" | "all_storage_classes_128K")
|
|
703
806
|
SENSITIVE: []
|
|
704
807
|
end
|
|
705
808
|
|
|
@@ -721,7 +824,7 @@ module Aws::S3
|
|
|
721
824
|
end
|
|
722
825
|
|
|
723
826
|
class GetBucketLocationOutput
|
|
724
|
-
attr_accessor location_constraint: ("af-south-1" | "ap-east-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ca-central-1" | "cn-north-1" | "cn-northwest-1" | "EU" | "eu-central-1" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "me-south-1" | "sa-east-1" | "us-east-2" | "us-gov-east-1" | "us-gov-west-1" | "us-west-1" | "us-west-2")
|
|
827
|
+
attr_accessor location_constraint: ("af-south-1" | "ap-east-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-4" | "ap-southeast-5" | "ca-central-1" | "cn-north-1" | "cn-northwest-1" | "EU" | "eu-central-1" | "eu-central-2" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "il-central-1" | "me-central-1" | "me-south-1" | "sa-east-1" | "us-east-2" | "us-gov-east-1" | "us-gov-west-1" | "us-west-1" | "us-west-2")
|
|
725
828
|
SENSITIVE: []
|
|
726
829
|
end
|
|
727
830
|
|
|
@@ -742,6 +845,40 @@ module Aws::S3
|
|
|
742
845
|
SENSITIVE: []
|
|
743
846
|
end
|
|
744
847
|
|
|
848
|
+
class GetBucketMetadataConfigurationOutput
|
|
849
|
+
attr_accessor get_bucket_metadata_configuration_result: Types::GetBucketMetadataConfigurationResult
|
|
850
|
+
SENSITIVE: []
|
|
851
|
+
end
|
|
852
|
+
|
|
853
|
+
class GetBucketMetadataConfigurationRequest
|
|
854
|
+
attr_accessor bucket: ::String
|
|
855
|
+
attr_accessor expected_bucket_owner: ::String
|
|
856
|
+
SENSITIVE: []
|
|
857
|
+
end
|
|
858
|
+
|
|
859
|
+
class GetBucketMetadataConfigurationResult
|
|
860
|
+
attr_accessor metadata_configuration_result: Types::MetadataConfigurationResult
|
|
861
|
+
SENSITIVE: []
|
|
862
|
+
end
|
|
863
|
+
|
|
864
|
+
class GetBucketMetadataTableConfigurationOutput
|
|
865
|
+
attr_accessor get_bucket_metadata_table_configuration_result: Types::GetBucketMetadataTableConfigurationResult
|
|
866
|
+
SENSITIVE: []
|
|
867
|
+
end
|
|
868
|
+
|
|
869
|
+
class GetBucketMetadataTableConfigurationRequest
|
|
870
|
+
attr_accessor bucket: ::String
|
|
871
|
+
attr_accessor expected_bucket_owner: ::String
|
|
872
|
+
SENSITIVE: []
|
|
873
|
+
end
|
|
874
|
+
|
|
875
|
+
class GetBucketMetadataTableConfigurationResult
|
|
876
|
+
attr_accessor metadata_table_configuration_result: Types::MetadataTableConfigurationResult
|
|
877
|
+
attr_accessor status: ::String
|
|
878
|
+
attr_accessor error: Types::ErrorDetails
|
|
879
|
+
SENSITIVE: []
|
|
880
|
+
end
|
|
881
|
+
|
|
745
882
|
class GetBucketMetricsConfigurationOutput
|
|
746
883
|
attr_accessor metrics_configuration: Types::MetricsConfiguration
|
|
747
884
|
SENSITIVE: []
|
|
@@ -876,7 +1013,7 @@ module Aws::S3
|
|
|
876
1013
|
attr_accessor etag: ::String
|
|
877
1014
|
attr_accessor checksum: Types::Checksum
|
|
878
1015
|
attr_accessor object_parts: Types::GetObjectAttributesParts
|
|
879
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
|
1016
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
|
|
880
1017
|
attr_accessor object_size: ::Integer
|
|
881
1018
|
SENSITIVE: []
|
|
882
1019
|
end
|
|
@@ -942,8 +1079,10 @@ module Aws::S3
|
|
|
942
1079
|
attr_accessor etag: ::String
|
|
943
1080
|
attr_accessor checksum_crc32: ::String
|
|
944
1081
|
attr_accessor checksum_crc32c: ::String
|
|
1082
|
+
attr_accessor checksum_crc64nvme: ::String
|
|
945
1083
|
attr_accessor checksum_sha1: ::String
|
|
946
1084
|
attr_accessor checksum_sha256: ::String
|
|
1085
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
|
947
1086
|
attr_accessor missing_meta: ::Integer
|
|
948
1087
|
attr_accessor version_id: ::String
|
|
949
1088
|
attr_accessor cache_control: ::String
|
|
@@ -955,13 +1094,13 @@ module Aws::S3
|
|
|
955
1094
|
attr_accessor expires: ::Time
|
|
956
1095
|
attr_accessor expires_string: ::String
|
|
957
1096
|
attr_accessor website_redirect_location: ::String
|
|
958
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
|
1097
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
959
1098
|
attr_accessor metadata: ::Hash[::String, ::String]
|
|
960
1099
|
attr_accessor sse_customer_algorithm: ::String
|
|
961
1100
|
attr_accessor sse_customer_key_md5: ::String
|
|
962
1101
|
attr_accessor ssekms_key_id: ::String
|
|
963
1102
|
attr_accessor bucket_key_enabled: bool
|
|
964
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
|
1103
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
|
|
965
1104
|
attr_accessor request_charged: ("requester")
|
|
966
1105
|
attr_accessor replication_status: ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
|
|
967
1106
|
attr_accessor parts_count: ::Integer
|
|
@@ -1072,7 +1211,8 @@ module Aws::S3
|
|
|
1072
1211
|
end
|
|
1073
1212
|
|
|
1074
1213
|
class HeadBucketOutput
|
|
1075
|
-
attr_accessor
|
|
1214
|
+
attr_accessor bucket_arn: ::String
|
|
1215
|
+
attr_accessor bucket_location_type: ("AvailabilityZone" | "LocalZone")
|
|
1076
1216
|
attr_accessor bucket_location_name: ::String
|
|
1077
1217
|
attr_accessor bucket_region: ::String
|
|
1078
1218
|
attr_accessor access_point_alias: bool
|
|
@@ -1095,8 +1235,10 @@ module Aws::S3
|
|
|
1095
1235
|
attr_accessor content_length: ::Integer
|
|
1096
1236
|
attr_accessor checksum_crc32: ::String
|
|
1097
1237
|
attr_accessor checksum_crc32c: ::String
|
|
1238
|
+
attr_accessor checksum_crc64nvme: ::String
|
|
1098
1239
|
attr_accessor checksum_sha1: ::String
|
|
1099
1240
|
attr_accessor checksum_sha256: ::String
|
|
1241
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
|
1100
1242
|
attr_accessor etag: ::String
|
|
1101
1243
|
attr_accessor missing_meta: ::Integer
|
|
1102
1244
|
attr_accessor version_id: ::String
|
|
@@ -1105,19 +1247,21 @@ module Aws::S3
|
|
|
1105
1247
|
attr_accessor content_encoding: ::String
|
|
1106
1248
|
attr_accessor content_language: ::String
|
|
1107
1249
|
attr_accessor content_type: ::String
|
|
1250
|
+
attr_accessor content_range: ::String
|
|
1108
1251
|
attr_accessor expires: ::Time
|
|
1109
1252
|
attr_accessor expires_string: ::String
|
|
1110
1253
|
attr_accessor website_redirect_location: ::String
|
|
1111
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
|
1254
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
1112
1255
|
attr_accessor metadata: ::Hash[::String, ::String]
|
|
1113
1256
|
attr_accessor sse_customer_algorithm: ::String
|
|
1114
1257
|
attr_accessor sse_customer_key_md5: ::String
|
|
1115
1258
|
attr_accessor ssekms_key_id: ::String
|
|
1116
1259
|
attr_accessor bucket_key_enabled: bool
|
|
1117
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
|
1260
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
|
|
1118
1261
|
attr_accessor request_charged: ("requester")
|
|
1119
1262
|
attr_accessor replication_status: ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
|
|
1120
1263
|
attr_accessor parts_count: ::Integer
|
|
1264
|
+
attr_accessor tag_count: ::Integer
|
|
1121
1265
|
attr_accessor object_lock_mode: ("GOVERNANCE" | "COMPLIANCE")
|
|
1122
1266
|
attr_accessor object_lock_retain_until_date: ::Time
|
|
1123
1267
|
attr_accessor object_lock_legal_hold_status: ("ON" | "OFF")
|
|
@@ -1132,6 +1276,12 @@ module Aws::S3
|
|
|
1132
1276
|
attr_accessor if_unmodified_since: ::Time
|
|
1133
1277
|
attr_accessor key: ::String
|
|
1134
1278
|
attr_accessor range: ::String
|
|
1279
|
+
attr_accessor response_cache_control: ::String
|
|
1280
|
+
attr_accessor response_content_disposition: ::String
|
|
1281
|
+
attr_accessor response_content_encoding: ::String
|
|
1282
|
+
attr_accessor response_content_language: ::String
|
|
1283
|
+
attr_accessor response_content_type: ::String
|
|
1284
|
+
attr_accessor response_expires: ::Time
|
|
1135
1285
|
attr_accessor version_id: ::String
|
|
1136
1286
|
attr_accessor sse_customer_algorithm: ::String
|
|
1137
1287
|
attr_accessor sse_customer_key: ::String
|
|
@@ -1143,6 +1293,9 @@ module Aws::S3
|
|
|
1143
1293
|
SENSITIVE: [:sse_customer_key]
|
|
1144
1294
|
end
|
|
1145
1295
|
|
|
1296
|
+
class IdempotencyParameterMismatch < Aws::EmptyStructure
|
|
1297
|
+
end
|
|
1298
|
+
|
|
1146
1299
|
class IndexDocument
|
|
1147
1300
|
attr_accessor suffix: ::String
|
|
1148
1301
|
SENSITIVE: []
|
|
@@ -1184,18 +1337,24 @@ module Aws::S3
|
|
|
1184
1337
|
end
|
|
1185
1338
|
|
|
1186
1339
|
class InvalidObjectState
|
|
1187
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
|
1340
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
|
|
1188
1341
|
attr_accessor access_tier: ("ARCHIVE_ACCESS" | "DEEP_ARCHIVE_ACCESS")
|
|
1189
1342
|
SENSITIVE: []
|
|
1190
1343
|
end
|
|
1191
1344
|
|
|
1345
|
+
class InvalidRequest < Aws::EmptyStructure
|
|
1346
|
+
end
|
|
1347
|
+
|
|
1348
|
+
class InvalidWriteOffset < Aws::EmptyStructure
|
|
1349
|
+
end
|
|
1350
|
+
|
|
1192
1351
|
class InventoryConfiguration
|
|
1193
1352
|
attr_accessor destination: Types::InventoryDestination
|
|
1194
1353
|
attr_accessor is_enabled: bool
|
|
1195
1354
|
attr_accessor filter: Types::InventoryFilter
|
|
1196
1355
|
attr_accessor id: ::String
|
|
1197
1356
|
attr_accessor included_object_versions: ("All" | "Current")
|
|
1198
|
-
attr_accessor optional_fields: ::Array[("Size" | "LastModifiedDate" | "StorageClass" | "ETag" | "IsMultipartUploaded" | "ReplicationStatus" | "EncryptionStatus" | "ObjectLockRetainUntilDate" | "ObjectLockMode" | "ObjectLockLegalHoldStatus" | "IntelligentTieringAccessTier" | "BucketKeyStatus" | "ChecksumAlgorithm" | "ObjectAccessControlList" | "ObjectOwner")]
|
|
1357
|
+
attr_accessor optional_fields: ::Array[("Size" | "LastModifiedDate" | "StorageClass" | "ETag" | "IsMultipartUploaded" | "ReplicationStatus" | "EncryptionStatus" | "ObjectLockRetainUntilDate" | "ObjectLockMode" | "ObjectLockLegalHoldStatus" | "IntelligentTieringAccessTier" | "BucketKeyStatus" | "ChecksumAlgorithm" | "ObjectAccessControlList" | "ObjectOwner" | "LifecycleExpirationDate")]
|
|
1199
1358
|
attr_accessor schedule: Types::InventorySchedule
|
|
1200
1359
|
SENSITIVE: []
|
|
1201
1360
|
end
|
|
@@ -1230,6 +1389,27 @@ module Aws::S3
|
|
|
1230
1389
|
SENSITIVE: []
|
|
1231
1390
|
end
|
|
1232
1391
|
|
|
1392
|
+
class InventoryTableConfiguration
|
|
1393
|
+
attr_accessor configuration_state: ("ENABLED" | "DISABLED")
|
|
1394
|
+
attr_accessor encryption_configuration: Types::MetadataTableEncryptionConfiguration
|
|
1395
|
+
SENSITIVE: []
|
|
1396
|
+
end
|
|
1397
|
+
|
|
1398
|
+
class InventoryTableConfigurationResult
|
|
1399
|
+
attr_accessor configuration_state: ("ENABLED" | "DISABLED")
|
|
1400
|
+
attr_accessor table_status: ::String
|
|
1401
|
+
attr_accessor error: Types::ErrorDetails
|
|
1402
|
+
attr_accessor table_name: ::String
|
|
1403
|
+
attr_accessor table_arn: ::String
|
|
1404
|
+
SENSITIVE: []
|
|
1405
|
+
end
|
|
1406
|
+
|
|
1407
|
+
class InventoryTableConfigurationUpdates
|
|
1408
|
+
attr_accessor configuration_state: ("ENABLED" | "DISABLED")
|
|
1409
|
+
attr_accessor encryption_configuration: Types::MetadataTableEncryptionConfiguration
|
|
1410
|
+
SENSITIVE: []
|
|
1411
|
+
end
|
|
1412
|
+
|
|
1233
1413
|
class JSONInput
|
|
1234
1414
|
attr_accessor type: ("DOCUMENT" | "LINES")
|
|
1235
1415
|
SENSITIVE: []
|
|
@@ -1240,6 +1420,26 @@ module Aws::S3
|
|
|
1240
1420
|
SENSITIVE: []
|
|
1241
1421
|
end
|
|
1242
1422
|
|
|
1423
|
+
class JournalTableConfiguration
|
|
1424
|
+
attr_accessor record_expiration: Types::RecordExpiration
|
|
1425
|
+
attr_accessor encryption_configuration: Types::MetadataTableEncryptionConfiguration
|
|
1426
|
+
SENSITIVE: []
|
|
1427
|
+
end
|
|
1428
|
+
|
|
1429
|
+
class JournalTableConfigurationResult
|
|
1430
|
+
attr_accessor table_status: ::String
|
|
1431
|
+
attr_accessor error: Types::ErrorDetails
|
|
1432
|
+
attr_accessor table_name: ::String
|
|
1433
|
+
attr_accessor table_arn: ::String
|
|
1434
|
+
attr_accessor record_expiration: Types::RecordExpiration
|
|
1435
|
+
SENSITIVE: []
|
|
1436
|
+
end
|
|
1437
|
+
|
|
1438
|
+
class JournalTableConfigurationUpdates
|
|
1439
|
+
attr_accessor record_expiration: Types::RecordExpiration
|
|
1440
|
+
SENSITIVE: []
|
|
1441
|
+
end
|
|
1442
|
+
|
|
1243
1443
|
class LambdaFunctionConfiguration
|
|
1244
1444
|
attr_accessor id: ::String
|
|
1245
1445
|
attr_accessor lambda_function_arn: ::String
|
|
@@ -1316,6 +1516,7 @@ module Aws::S3
|
|
|
1316
1516
|
class ListBucketIntelligentTieringConfigurationsRequest
|
|
1317
1517
|
attr_accessor bucket: ::String
|
|
1318
1518
|
attr_accessor continuation_token: ::String
|
|
1519
|
+
attr_accessor expected_bucket_owner: ::String
|
|
1319
1520
|
SENSITIVE: []
|
|
1320
1521
|
end
|
|
1321
1522
|
|
|
@@ -1352,6 +1553,16 @@ module Aws::S3
|
|
|
1352
1553
|
class ListBucketsOutput
|
|
1353
1554
|
attr_accessor buckets: ::Array[Types::Bucket]
|
|
1354
1555
|
attr_accessor owner: Types::Owner
|
|
1556
|
+
attr_accessor continuation_token: ::String
|
|
1557
|
+
attr_accessor prefix: ::String
|
|
1558
|
+
SENSITIVE: []
|
|
1559
|
+
end
|
|
1560
|
+
|
|
1561
|
+
class ListBucketsRequest
|
|
1562
|
+
attr_accessor max_buckets: ::Integer
|
|
1563
|
+
attr_accessor continuation_token: ::String
|
|
1564
|
+
attr_accessor prefix: ::String
|
|
1565
|
+
attr_accessor bucket_region: ::String
|
|
1355
1566
|
SENSITIVE: []
|
|
1356
1567
|
end
|
|
1357
1568
|
|
|
@@ -1502,9 +1713,10 @@ module Aws::S3
|
|
|
1502
1713
|
attr_accessor parts: ::Array[Types::Part]
|
|
1503
1714
|
attr_accessor initiator: Types::Initiator
|
|
1504
1715
|
attr_accessor owner: Types::Owner
|
|
1505
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
|
1716
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
|
|
1506
1717
|
attr_accessor request_charged: ("requester")
|
|
1507
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
1718
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1719
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
|
1508
1720
|
SENSITIVE: []
|
|
1509
1721
|
end
|
|
1510
1722
|
|
|
@@ -1523,7 +1735,7 @@ module Aws::S3
|
|
|
1523
1735
|
end
|
|
1524
1736
|
|
|
1525
1737
|
class LocationInfo
|
|
1526
|
-
attr_accessor type: ("AvailabilityZone")
|
|
1738
|
+
attr_accessor type: ("AvailabilityZone" | "LocalZone")
|
|
1527
1739
|
attr_accessor name: ::String
|
|
1528
1740
|
SENSITIVE: []
|
|
1529
1741
|
end
|
|
@@ -1536,12 +1748,41 @@ module Aws::S3
|
|
|
1536
1748
|
SENSITIVE: []
|
|
1537
1749
|
end
|
|
1538
1750
|
|
|
1751
|
+
class MetadataConfiguration
|
|
1752
|
+
attr_accessor journal_table_configuration: Types::JournalTableConfiguration
|
|
1753
|
+
attr_accessor inventory_table_configuration: Types::InventoryTableConfiguration
|
|
1754
|
+
SENSITIVE: []
|
|
1755
|
+
end
|
|
1756
|
+
|
|
1757
|
+
class MetadataConfigurationResult
|
|
1758
|
+
attr_accessor destination_result: Types::DestinationResult
|
|
1759
|
+
attr_accessor journal_table_configuration_result: Types::JournalTableConfigurationResult
|
|
1760
|
+
attr_accessor inventory_table_configuration_result: Types::InventoryTableConfigurationResult
|
|
1761
|
+
SENSITIVE: []
|
|
1762
|
+
end
|
|
1763
|
+
|
|
1539
1764
|
class MetadataEntry
|
|
1540
1765
|
attr_accessor name: ::String
|
|
1541
1766
|
attr_accessor value: ::String
|
|
1542
1767
|
SENSITIVE: []
|
|
1543
1768
|
end
|
|
1544
1769
|
|
|
1770
|
+
class MetadataTableConfiguration
|
|
1771
|
+
attr_accessor s3_tables_destination: Types::S3TablesDestination
|
|
1772
|
+
SENSITIVE: []
|
|
1773
|
+
end
|
|
1774
|
+
|
|
1775
|
+
class MetadataTableConfigurationResult
|
|
1776
|
+
attr_accessor s3_tables_destination_result: Types::S3TablesDestinationResult
|
|
1777
|
+
SENSITIVE: []
|
|
1778
|
+
end
|
|
1779
|
+
|
|
1780
|
+
class MetadataTableEncryptionConfiguration
|
|
1781
|
+
attr_accessor sse_algorithm: ("aws:kms" | "AES256")
|
|
1782
|
+
attr_accessor kms_key_arn: ::String
|
|
1783
|
+
SENSITIVE: []
|
|
1784
|
+
end
|
|
1785
|
+
|
|
1545
1786
|
class Metrics
|
|
1546
1787
|
attr_accessor status: ("Enabled" | "Disabled")
|
|
1547
1788
|
attr_accessor event_threshold: Types::ReplicationTimeValue
|
|
@@ -1573,10 +1814,11 @@ module Aws::S3
|
|
|
1573
1814
|
attr_accessor upload_id: ::String
|
|
1574
1815
|
attr_accessor key: ::String
|
|
1575
1816
|
attr_accessor initiated: ::Time
|
|
1576
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
|
1817
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
|
|
1577
1818
|
attr_accessor owner: Types::Owner
|
|
1578
1819
|
attr_accessor initiator: Types::Initiator
|
|
1579
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
1820
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1821
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
|
1580
1822
|
SENSITIVE: []
|
|
1581
1823
|
end
|
|
1582
1824
|
|
|
@@ -1626,9 +1868,10 @@ module Aws::S3
|
|
|
1626
1868
|
attr_accessor key: ::String
|
|
1627
1869
|
attr_accessor last_modified: ::Time
|
|
1628
1870
|
attr_accessor etag: ::String
|
|
1629
|
-
attr_accessor checksum_algorithm: ::Array[("CRC32" | "CRC32C" | "SHA1" | "SHA256")]
|
|
1871
|
+
attr_accessor checksum_algorithm: ::Array[("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")]
|
|
1872
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
|
1630
1873
|
attr_accessor size: ::Integer
|
|
1631
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "GLACIER" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
|
1874
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "GLACIER" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
|
|
1632
1875
|
attr_accessor owner: Types::Owner
|
|
1633
1876
|
attr_accessor restore_status: Types::RestoreStatus
|
|
1634
1877
|
SENSITIVE: []
|
|
@@ -1640,6 +1883,9 @@ module Aws::S3
|
|
|
1640
1883
|
class ObjectIdentifier
|
|
1641
1884
|
attr_accessor key: ::String
|
|
1642
1885
|
attr_accessor version_id: ::String
|
|
1886
|
+
attr_accessor etag: ::String
|
|
1887
|
+
attr_accessor last_modified_time: ::Time
|
|
1888
|
+
attr_accessor size: ::Integer
|
|
1643
1889
|
SENSITIVE: []
|
|
1644
1890
|
end
|
|
1645
1891
|
|
|
@@ -1673,6 +1919,7 @@ module Aws::S3
|
|
|
1673
1919
|
attr_accessor size: ::Integer
|
|
1674
1920
|
attr_accessor checksum_crc32: ::String
|
|
1675
1921
|
attr_accessor checksum_crc32c: ::String
|
|
1922
|
+
attr_accessor checksum_crc64nvme: ::String
|
|
1676
1923
|
attr_accessor checksum_sha1: ::String
|
|
1677
1924
|
attr_accessor checksum_sha256: ::String
|
|
1678
1925
|
SENSITIVE: []
|
|
@@ -1680,7 +1927,8 @@ module Aws::S3
|
|
|
1680
1927
|
|
|
1681
1928
|
class ObjectVersion
|
|
1682
1929
|
attr_accessor etag: ::String
|
|
1683
|
-
attr_accessor checksum_algorithm: ::Array[("CRC32" | "CRC32C" | "SHA1" | "SHA256")]
|
|
1930
|
+
attr_accessor checksum_algorithm: ::Array[("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")]
|
|
1931
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
|
1684
1932
|
attr_accessor size: ::Integer
|
|
1685
1933
|
attr_accessor storage_class: ("STANDARD")
|
|
1686
1934
|
attr_accessor key: ::String
|
|
@@ -1729,6 +1977,7 @@ module Aws::S3
|
|
|
1729
1977
|
attr_accessor size: ::Integer
|
|
1730
1978
|
attr_accessor checksum_crc32: ::String
|
|
1731
1979
|
attr_accessor checksum_crc32c: ::String
|
|
1980
|
+
attr_accessor checksum_crc64nvme: ::String
|
|
1732
1981
|
attr_accessor checksum_sha1: ::String
|
|
1733
1982
|
attr_accessor checksum_sha256: ::String
|
|
1734
1983
|
SENSITIVE: []
|
|
@@ -1765,11 +2014,20 @@ module Aws::S3
|
|
|
1765
2014
|
SENSITIVE: []
|
|
1766
2015
|
end
|
|
1767
2016
|
|
|
2017
|
+
class PutBucketAbacRequest
|
|
2018
|
+
attr_accessor bucket: ::String
|
|
2019
|
+
attr_accessor content_md5: ::String
|
|
2020
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
2021
|
+
attr_accessor expected_bucket_owner: ::String
|
|
2022
|
+
attr_accessor abac_status: Types::AbacStatus
|
|
2023
|
+
SENSITIVE: []
|
|
2024
|
+
end
|
|
2025
|
+
|
|
1768
2026
|
class PutBucketAccelerateConfigurationRequest
|
|
1769
2027
|
attr_accessor bucket: ::String
|
|
1770
2028
|
attr_accessor accelerate_configuration: Types::AccelerateConfiguration
|
|
1771
2029
|
attr_accessor expected_bucket_owner: ::String
|
|
1772
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2030
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1773
2031
|
SENSITIVE: []
|
|
1774
2032
|
end
|
|
1775
2033
|
|
|
@@ -1778,7 +2036,7 @@ module Aws::S3
|
|
|
1778
2036
|
attr_accessor access_control_policy: Types::AccessControlPolicy
|
|
1779
2037
|
attr_accessor bucket: ::String
|
|
1780
2038
|
attr_accessor content_md5: ::String
|
|
1781
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2039
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1782
2040
|
attr_accessor grant_full_control: ::String
|
|
1783
2041
|
attr_accessor grant_read: ::String
|
|
1784
2042
|
attr_accessor grant_read_acp: ::String
|
|
@@ -1800,7 +2058,7 @@ module Aws::S3
|
|
|
1800
2058
|
attr_accessor bucket: ::String
|
|
1801
2059
|
attr_accessor cors_configuration: Types::CORSConfiguration
|
|
1802
2060
|
attr_accessor content_md5: ::String
|
|
1803
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2061
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1804
2062
|
attr_accessor expected_bucket_owner: ::String
|
|
1805
2063
|
SENSITIVE: []
|
|
1806
2064
|
end
|
|
@@ -1808,7 +2066,7 @@ module Aws::S3
|
|
|
1808
2066
|
class PutBucketEncryptionRequest
|
|
1809
2067
|
attr_accessor bucket: ::String
|
|
1810
2068
|
attr_accessor content_md5: ::String
|
|
1811
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2069
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1812
2070
|
attr_accessor server_side_encryption_configuration: Types::ServerSideEncryptionConfiguration
|
|
1813
2071
|
attr_accessor expected_bucket_owner: ::String
|
|
1814
2072
|
SENSITIVE: []
|
|
@@ -1817,6 +2075,7 @@ module Aws::S3
|
|
|
1817
2075
|
class PutBucketIntelligentTieringConfigurationRequest
|
|
1818
2076
|
attr_accessor bucket: ::String
|
|
1819
2077
|
attr_accessor id: ::String
|
|
2078
|
+
attr_accessor expected_bucket_owner: ::String
|
|
1820
2079
|
attr_accessor intelligent_tiering_configuration: Types::IntelligentTieringConfiguration
|
|
1821
2080
|
SENSITIVE: []
|
|
1822
2081
|
end
|
|
@@ -1829,18 +2088,24 @@ module Aws::S3
|
|
|
1829
2088
|
SENSITIVE: []
|
|
1830
2089
|
end
|
|
1831
2090
|
|
|
2091
|
+
class PutBucketLifecycleConfigurationOutput
|
|
2092
|
+
attr_accessor transition_default_minimum_object_size: ("varies_by_storage_class" | "all_storage_classes_128K")
|
|
2093
|
+
SENSITIVE: []
|
|
2094
|
+
end
|
|
2095
|
+
|
|
1832
2096
|
class PutBucketLifecycleConfigurationRequest
|
|
1833
2097
|
attr_accessor bucket: ::String
|
|
1834
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2098
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1835
2099
|
attr_accessor lifecycle_configuration: Types::BucketLifecycleConfiguration
|
|
1836
2100
|
attr_accessor expected_bucket_owner: ::String
|
|
2101
|
+
attr_accessor transition_default_minimum_object_size: ("varies_by_storage_class" | "all_storage_classes_128K")
|
|
1837
2102
|
SENSITIVE: []
|
|
1838
2103
|
end
|
|
1839
2104
|
|
|
1840
2105
|
class PutBucketLifecycleRequest
|
|
1841
2106
|
attr_accessor bucket: ::String
|
|
1842
2107
|
attr_accessor content_md5: ::String
|
|
1843
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2108
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1844
2109
|
attr_accessor lifecycle_configuration: Types::LifecycleConfiguration
|
|
1845
2110
|
attr_accessor expected_bucket_owner: ::String
|
|
1846
2111
|
SENSITIVE: []
|
|
@@ -1850,7 +2115,7 @@ module Aws::S3
|
|
|
1850
2115
|
attr_accessor bucket: ::String
|
|
1851
2116
|
attr_accessor bucket_logging_status: Types::BucketLoggingStatus
|
|
1852
2117
|
attr_accessor content_md5: ::String
|
|
1853
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2118
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1854
2119
|
attr_accessor expected_bucket_owner: ::String
|
|
1855
2120
|
SENSITIVE: []
|
|
1856
2121
|
end
|
|
@@ -1874,7 +2139,7 @@ module Aws::S3
|
|
|
1874
2139
|
class PutBucketNotificationRequest
|
|
1875
2140
|
attr_accessor bucket: ::String
|
|
1876
2141
|
attr_accessor content_md5: ::String
|
|
1877
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2142
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1878
2143
|
attr_accessor notification_configuration: Types::NotificationConfigurationDeprecated
|
|
1879
2144
|
attr_accessor expected_bucket_owner: ::String
|
|
1880
2145
|
SENSITIVE: []
|
|
@@ -1885,13 +2150,14 @@ module Aws::S3
|
|
|
1885
2150
|
attr_accessor content_md5: ::String
|
|
1886
2151
|
attr_accessor expected_bucket_owner: ::String
|
|
1887
2152
|
attr_accessor ownership_controls: Types::OwnershipControls
|
|
2153
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1888
2154
|
SENSITIVE: []
|
|
1889
2155
|
end
|
|
1890
2156
|
|
|
1891
2157
|
class PutBucketPolicyRequest
|
|
1892
2158
|
attr_accessor bucket: ::String
|
|
1893
2159
|
attr_accessor content_md5: ::String
|
|
1894
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2160
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1895
2161
|
attr_accessor confirm_remove_self_bucket_access: bool
|
|
1896
2162
|
attr_accessor policy: ::IO
|
|
1897
2163
|
attr_accessor expected_bucket_owner: ::String
|
|
@@ -1901,7 +2167,7 @@ module Aws::S3
|
|
|
1901
2167
|
class PutBucketReplicationRequest
|
|
1902
2168
|
attr_accessor bucket: ::String
|
|
1903
2169
|
attr_accessor content_md5: ::String
|
|
1904
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2170
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1905
2171
|
attr_accessor replication_configuration: Types::ReplicationConfiguration
|
|
1906
2172
|
attr_accessor token: ::String
|
|
1907
2173
|
attr_accessor expected_bucket_owner: ::String
|
|
@@ -1911,7 +2177,7 @@ module Aws::S3
|
|
|
1911
2177
|
class PutBucketRequestPaymentRequest
|
|
1912
2178
|
attr_accessor bucket: ::String
|
|
1913
2179
|
attr_accessor content_md5: ::String
|
|
1914
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2180
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1915
2181
|
attr_accessor request_payment_configuration: Types::RequestPaymentConfiguration
|
|
1916
2182
|
attr_accessor expected_bucket_owner: ::String
|
|
1917
2183
|
SENSITIVE: []
|
|
@@ -1920,7 +2186,7 @@ module Aws::S3
|
|
|
1920
2186
|
class PutBucketTaggingRequest
|
|
1921
2187
|
attr_accessor bucket: ::String
|
|
1922
2188
|
attr_accessor content_md5: ::String
|
|
1923
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2189
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1924
2190
|
attr_accessor tagging: Types::Tagging
|
|
1925
2191
|
attr_accessor expected_bucket_owner: ::String
|
|
1926
2192
|
SENSITIVE: []
|
|
@@ -1929,7 +2195,7 @@ module Aws::S3
|
|
|
1929
2195
|
class PutBucketVersioningRequest
|
|
1930
2196
|
attr_accessor bucket: ::String
|
|
1931
2197
|
attr_accessor content_md5: ::String
|
|
1932
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2198
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1933
2199
|
attr_accessor mfa: ::String
|
|
1934
2200
|
attr_accessor versioning_configuration: Types::VersioningConfiguration
|
|
1935
2201
|
attr_accessor expected_bucket_owner: ::String
|
|
@@ -1939,7 +2205,7 @@ module Aws::S3
|
|
|
1939
2205
|
class PutBucketWebsiteRequest
|
|
1940
2206
|
attr_accessor bucket: ::String
|
|
1941
2207
|
attr_accessor content_md5: ::String
|
|
1942
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2208
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1943
2209
|
attr_accessor website_configuration: Types::WebsiteConfiguration
|
|
1944
2210
|
attr_accessor expected_bucket_owner: ::String
|
|
1945
2211
|
SENSITIVE: []
|
|
@@ -1955,7 +2221,7 @@ module Aws::S3
|
|
|
1955
2221
|
attr_accessor access_control_policy: Types::AccessControlPolicy
|
|
1956
2222
|
attr_accessor bucket: ::String
|
|
1957
2223
|
attr_accessor content_md5: ::String
|
|
1958
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2224
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1959
2225
|
attr_accessor grant_full_control: ::String
|
|
1960
2226
|
attr_accessor grant_read: ::String
|
|
1961
2227
|
attr_accessor grant_read_acp: ::String
|
|
@@ -1980,7 +2246,7 @@ module Aws::S3
|
|
|
1980
2246
|
attr_accessor request_payer: ("requester")
|
|
1981
2247
|
attr_accessor version_id: ::String
|
|
1982
2248
|
attr_accessor content_md5: ::String
|
|
1983
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2249
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1984
2250
|
attr_accessor expected_bucket_owner: ::String
|
|
1985
2251
|
SENSITIVE: []
|
|
1986
2252
|
end
|
|
@@ -1996,7 +2262,7 @@ module Aws::S3
|
|
|
1996
2262
|
attr_accessor request_payer: ("requester")
|
|
1997
2263
|
attr_accessor token: ::String
|
|
1998
2264
|
attr_accessor content_md5: ::String
|
|
1999
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2265
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
2000
2266
|
attr_accessor expected_bucket_owner: ::String
|
|
2001
2267
|
SENSITIVE: []
|
|
2002
2268
|
end
|
|
@@ -2006,15 +2272,18 @@ module Aws::S3
|
|
|
2006
2272
|
attr_accessor etag: ::String
|
|
2007
2273
|
attr_accessor checksum_crc32: ::String
|
|
2008
2274
|
attr_accessor checksum_crc32c: ::String
|
|
2275
|
+
attr_accessor checksum_crc64nvme: ::String
|
|
2009
2276
|
attr_accessor checksum_sha1: ::String
|
|
2010
2277
|
attr_accessor checksum_sha256: ::String
|
|
2011
|
-
attr_accessor
|
|
2278
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
|
2279
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
2012
2280
|
attr_accessor version_id: ::String
|
|
2013
2281
|
attr_accessor sse_customer_algorithm: ::String
|
|
2014
2282
|
attr_accessor sse_customer_key_md5: ::String
|
|
2015
2283
|
attr_accessor ssekms_key_id: ::String
|
|
2016
2284
|
attr_accessor ssekms_encryption_context: ::String
|
|
2017
2285
|
attr_accessor bucket_key_enabled: bool
|
|
2286
|
+
attr_accessor size: ::Integer
|
|
2018
2287
|
attr_accessor request_charged: ("requester")
|
|
2019
2288
|
SENSITIVE: [:ssekms_key_id, :ssekms_encryption_context]
|
|
2020
2289
|
end
|
|
@@ -2030,20 +2299,24 @@ module Aws::S3
|
|
|
2030
2299
|
attr_accessor content_length: ::Integer
|
|
2031
2300
|
attr_accessor content_md5: ::String
|
|
2032
2301
|
attr_accessor content_type: ::String
|
|
2033
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2302
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
2034
2303
|
attr_accessor checksum_crc32: ::String
|
|
2035
2304
|
attr_accessor checksum_crc32c: ::String
|
|
2305
|
+
attr_accessor checksum_crc64nvme: ::String
|
|
2036
2306
|
attr_accessor checksum_sha1: ::String
|
|
2037
2307
|
attr_accessor checksum_sha256: ::String
|
|
2038
2308
|
attr_accessor expires: ::Time
|
|
2309
|
+
attr_accessor if_match: ::String
|
|
2310
|
+
attr_accessor if_none_match: ::String
|
|
2039
2311
|
attr_accessor grant_full_control: ::String
|
|
2040
2312
|
attr_accessor grant_read: ::String
|
|
2041
2313
|
attr_accessor grant_read_acp: ::String
|
|
2042
2314
|
attr_accessor grant_write_acp: ::String
|
|
2043
2315
|
attr_accessor key: ::String
|
|
2316
|
+
attr_accessor write_offset_bytes: ::Integer
|
|
2044
2317
|
attr_accessor metadata: ::Hash[::String, ::String]
|
|
2045
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
|
2046
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
|
2318
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
2319
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
|
|
2047
2320
|
attr_accessor website_redirect_location: ::String
|
|
2048
2321
|
attr_accessor sse_customer_algorithm: ::String
|
|
2049
2322
|
attr_accessor sse_customer_key: ::String
|
|
@@ -2073,7 +2346,7 @@ module Aws::S3
|
|
|
2073
2346
|
attr_accessor version_id: ::String
|
|
2074
2347
|
attr_accessor bypass_governance_retention: bool
|
|
2075
2348
|
attr_accessor content_md5: ::String
|
|
2076
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2349
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
2077
2350
|
attr_accessor expected_bucket_owner: ::String
|
|
2078
2351
|
SENSITIVE: []
|
|
2079
2352
|
end
|
|
@@ -2088,7 +2361,7 @@ module Aws::S3
|
|
|
2088
2361
|
attr_accessor key: ::String
|
|
2089
2362
|
attr_accessor version_id: ::String
|
|
2090
2363
|
attr_accessor content_md5: ::String
|
|
2091
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2364
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
2092
2365
|
attr_accessor tagging: Types::Tagging
|
|
2093
2366
|
attr_accessor expected_bucket_owner: ::String
|
|
2094
2367
|
attr_accessor request_payer: ("requester")
|
|
@@ -2098,7 +2371,7 @@ module Aws::S3
|
|
|
2098
2371
|
class PutPublicAccessBlockRequest
|
|
2099
2372
|
attr_accessor bucket: ::String
|
|
2100
2373
|
attr_accessor content_md5: ::String
|
|
2101
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2374
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
2102
2375
|
attr_accessor public_access_block_configuration: Types::PublicAccessBlockConfiguration
|
|
2103
2376
|
attr_accessor expected_bucket_owner: ::String
|
|
2104
2377
|
SENSITIVE: []
|
|
@@ -2120,6 +2393,12 @@ module Aws::S3
|
|
|
2120
2393
|
SENSITIVE: []
|
|
2121
2394
|
end
|
|
2122
2395
|
|
|
2396
|
+
class RecordExpiration
|
|
2397
|
+
attr_accessor expiration: ("ENABLED" | "DISABLED")
|
|
2398
|
+
attr_accessor days: ::Integer
|
|
2399
|
+
SENSITIVE: []
|
|
2400
|
+
end
|
|
2401
|
+
|
|
2123
2402
|
class RecordsEvent
|
|
2124
2403
|
attr_accessor payload: ::IO
|
|
2125
2404
|
attr_accessor event_type: untyped
|
|
@@ -2141,6 +2420,25 @@ module Aws::S3
|
|
|
2141
2420
|
SENSITIVE: []
|
|
2142
2421
|
end
|
|
2143
2422
|
|
|
2423
|
+
class RenameObjectOutput < Aws::EmptyStructure
|
|
2424
|
+
end
|
|
2425
|
+
|
|
2426
|
+
class RenameObjectRequest
|
|
2427
|
+
attr_accessor bucket: ::String
|
|
2428
|
+
attr_accessor key: ::String
|
|
2429
|
+
attr_accessor rename_source: ::String
|
|
2430
|
+
attr_accessor destination_if_match: ::String
|
|
2431
|
+
attr_accessor destination_if_none_match: ::String
|
|
2432
|
+
attr_accessor destination_if_modified_since: ::Time
|
|
2433
|
+
attr_accessor destination_if_unmodified_since: ::Time
|
|
2434
|
+
attr_accessor source_if_match: ::String
|
|
2435
|
+
attr_accessor source_if_none_match: ::String
|
|
2436
|
+
attr_accessor source_if_modified_since: ::Time
|
|
2437
|
+
attr_accessor source_if_unmodified_since: ::Time
|
|
2438
|
+
attr_accessor client_token: ::String
|
|
2439
|
+
SENSITIVE: []
|
|
2440
|
+
end
|
|
2441
|
+
|
|
2144
2442
|
class ReplicaModifications
|
|
2145
2443
|
attr_accessor status: ("Enabled" | "Disabled")
|
|
2146
2444
|
SENSITIVE: []
|
|
@@ -2211,7 +2509,7 @@ module Aws::S3
|
|
|
2211
2509
|
attr_accessor version_id: ::String
|
|
2212
2510
|
attr_accessor restore_request: Types::RestoreRequest
|
|
2213
2511
|
attr_accessor request_payer: ("requester")
|
|
2214
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2512
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
2215
2513
|
attr_accessor expected_bucket_owner: ::String
|
|
2216
2514
|
SENSITIVE: []
|
|
2217
2515
|
end
|
|
@@ -2264,7 +2562,21 @@ module Aws::S3
|
|
|
2264
2562
|
attr_accessor access_control_list: ::Array[Types::Grant]
|
|
2265
2563
|
attr_accessor tagging: Types::Tagging
|
|
2266
2564
|
attr_accessor user_metadata: ::Array[Types::MetadataEntry]
|
|
2267
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
|
2565
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
|
|
2566
|
+
SENSITIVE: []
|
|
2567
|
+
end
|
|
2568
|
+
|
|
2569
|
+
class S3TablesDestination
|
|
2570
|
+
attr_accessor table_bucket_arn: ::String
|
|
2571
|
+
attr_accessor table_name: ::String
|
|
2572
|
+
SENSITIVE: []
|
|
2573
|
+
end
|
|
2574
|
+
|
|
2575
|
+
class S3TablesDestinationResult
|
|
2576
|
+
attr_accessor table_bucket_arn: ::String
|
|
2577
|
+
attr_accessor table_name: ::String
|
|
2578
|
+
attr_accessor table_arn: ::String
|
|
2579
|
+
attr_accessor table_namespace: ::String
|
|
2268
2580
|
SENSITIVE: []
|
|
2269
2581
|
end
|
|
2270
2582
|
|
|
@@ -2312,7 +2624,7 @@ module Aws::S3
|
|
|
2312
2624
|
end
|
|
2313
2625
|
|
|
2314
2626
|
class ServerSideEncryptionByDefault
|
|
2315
|
-
attr_accessor sse_algorithm: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
|
2627
|
+
attr_accessor sse_algorithm: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
2316
2628
|
attr_accessor kms_master_key_id: ::String
|
|
2317
2629
|
SENSITIVE: [:kms_master_key_id]
|
|
2318
2630
|
end
|
|
@@ -2325,6 +2637,7 @@ module Aws::S3
|
|
|
2325
2637
|
class ServerSideEncryptionRule
|
|
2326
2638
|
attr_accessor apply_server_side_encryption_by_default: Types::ServerSideEncryptionByDefault
|
|
2327
2639
|
attr_accessor bucket_key_enabled: bool
|
|
2640
|
+
attr_accessor blocked_encryption_types: Types::BlockedEncryptionTypes
|
|
2328
2641
|
SENSITIVE: []
|
|
2329
2642
|
end
|
|
2330
2643
|
|
|
@@ -2403,6 +2716,9 @@ module Aws::S3
|
|
|
2403
2716
|
SENSITIVE: []
|
|
2404
2717
|
end
|
|
2405
2718
|
|
|
2719
|
+
class TooManyParts < Aws::EmptyStructure
|
|
2720
|
+
end
|
|
2721
|
+
|
|
2406
2722
|
class TopicConfiguration
|
|
2407
2723
|
attr_accessor id: ::String
|
|
2408
2724
|
attr_accessor topic_arn: ::String
|
|
@@ -2426,10 +2742,28 @@ module Aws::S3
|
|
|
2426
2742
|
SENSITIVE: []
|
|
2427
2743
|
end
|
|
2428
2744
|
|
|
2745
|
+
class UpdateBucketMetadataInventoryTableConfigurationRequest
|
|
2746
|
+
attr_accessor bucket: ::String
|
|
2747
|
+
attr_accessor content_md5: ::String
|
|
2748
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
2749
|
+
attr_accessor inventory_table_configuration: Types::InventoryTableConfigurationUpdates
|
|
2750
|
+
attr_accessor expected_bucket_owner: ::String
|
|
2751
|
+
SENSITIVE: []
|
|
2752
|
+
end
|
|
2753
|
+
|
|
2754
|
+
class UpdateBucketMetadataJournalTableConfigurationRequest
|
|
2755
|
+
attr_accessor bucket: ::String
|
|
2756
|
+
attr_accessor content_md5: ::String
|
|
2757
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
2758
|
+
attr_accessor journal_table_configuration: Types::JournalTableConfigurationUpdates
|
|
2759
|
+
attr_accessor expected_bucket_owner: ::String
|
|
2760
|
+
SENSITIVE: []
|
|
2761
|
+
end
|
|
2762
|
+
|
|
2429
2763
|
class UploadPartCopyOutput
|
|
2430
2764
|
attr_accessor copy_source_version_id: ::String
|
|
2431
2765
|
attr_accessor copy_part_result: Types::CopyPartResult
|
|
2432
|
-
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")
|
|
2433
2767
|
attr_accessor sse_customer_algorithm: ::String
|
|
2434
2768
|
attr_accessor sse_customer_key_md5: ::String
|
|
2435
2769
|
attr_accessor ssekms_key_id: ::String
|
|
@@ -2462,10 +2796,11 @@ module Aws::S3
|
|
|
2462
2796
|
end
|
|
2463
2797
|
|
|
2464
2798
|
class UploadPartOutput
|
|
2465
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
|
2799
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
2466
2800
|
attr_accessor etag: ::String
|
|
2467
2801
|
attr_accessor checksum_crc32: ::String
|
|
2468
2802
|
attr_accessor checksum_crc32c: ::String
|
|
2803
|
+
attr_accessor checksum_crc64nvme: ::String
|
|
2469
2804
|
attr_accessor checksum_sha1: ::String
|
|
2470
2805
|
attr_accessor checksum_sha256: ::String
|
|
2471
2806
|
attr_accessor sse_customer_algorithm: ::String
|
|
@@ -2481,9 +2816,10 @@ module Aws::S3
|
|
|
2481
2816
|
attr_accessor bucket: ::String
|
|
2482
2817
|
attr_accessor content_length: ::Integer
|
|
2483
2818
|
attr_accessor content_md5: ::String
|
|
2484
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2819
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
2485
2820
|
attr_accessor checksum_crc32: ::String
|
|
2486
2821
|
attr_accessor checksum_crc32c: ::String
|
|
2822
|
+
attr_accessor checksum_crc64nvme: ::String
|
|
2487
2823
|
attr_accessor checksum_sha1: ::String
|
|
2488
2824
|
attr_accessor checksum_sha256: ::String
|
|
2489
2825
|
attr_accessor key: ::String
|
|
@@ -2528,6 +2864,7 @@ module Aws::S3
|
|
|
2528
2864
|
attr_accessor content_type: ::String
|
|
2529
2865
|
attr_accessor checksum_crc32: ::String
|
|
2530
2866
|
attr_accessor checksum_crc32c: ::String
|
|
2867
|
+
attr_accessor checksum_crc64nvme: ::String
|
|
2531
2868
|
attr_accessor checksum_sha1: ::String
|
|
2532
2869
|
attr_accessor checksum_sha256: ::String
|
|
2533
2870
|
attr_accessor delete_marker: bool
|
|
@@ -2544,11 +2881,11 @@ module Aws::S3
|
|
|
2544
2881
|
attr_accessor replication_status: ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
|
|
2545
2882
|
attr_accessor request_charged: ("requester")
|
|
2546
2883
|
attr_accessor restore: ::String
|
|
2547
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
|
2884
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
2548
2885
|
attr_accessor sse_customer_algorithm: ::String
|
|
2549
2886
|
attr_accessor ssekms_key_id: ::String
|
|
2550
2887
|
attr_accessor sse_customer_key_md5: ::String
|
|
2551
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
|
2888
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
|
|
2552
2889
|
attr_accessor tag_count: ::Integer
|
|
2553
2890
|
attr_accessor version_id: ::String
|
|
2554
2891
|
attr_accessor bucket_key_enabled: bool
|