aws-sdk-s3 1.176.1 → 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 +202 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/bucket.rb +86 -35
- data/lib/aws-sdk-s3/bucket_acl.rb +7 -6
- data/lib/aws-sdk-s3/bucket_cors.rb +6 -5
- data/lib/aws-sdk-s3/bucket_lifecycle.rb +2 -2
- data/lib/aws-sdk-s3/bucket_lifecycle_configuration.rb +3 -3
- 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 +42 -9
- data/lib/aws-sdk-s3/bucket_website.rb +3 -3
- data/lib/aws-sdk-s3/client.rb +3038 -1226
- data/lib/aws-sdk-s3/client_api.rb +492 -164
- data/lib/aws-sdk-s3/customizations/object.rb +76 -86
- data/lib/aws-sdk-s3/customizations.rb +4 -1
- data/lib/aws-sdk-s3/default_executor.rb +103 -0
- data/lib/aws-sdk-s3/encryption/client.rb +2 -2
- 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 +2 -0
- data/lib/aws-sdk-s3/encryptionV2/client.rb +98 -23
- 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 +8 -0
- 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 +17 -17
- data/lib/aws-sdk-s3/endpoint_provider.rb +562 -304
- data/lib/aws-sdk-s3/endpoints.rb +110 -0
- data/lib/aws-sdk-s3/errors.rb +11 -0
- data/lib/aws-sdk-s3/file_downloader.rb +189 -143
- data/lib/aws-sdk-s3/file_uploader.rb +9 -13
- 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 +96 -107
- data/lib/aws-sdk-s3/multipart_upload.rb +50 -6
- data/lib/aws-sdk-s3/multipart_upload_error.rb +3 -4
- data/lib/aws-sdk-s3/multipart_upload_part.rb +50 -34
- data/lib/aws-sdk-s3/object.rb +264 -137
- data/lib/aws-sdk-s3/object_acl.rb +12 -6
- data/lib/aws-sdk-s3/object_multipart_copier.rb +2 -1
- data/lib/aws-sdk-s3/object_summary.rb +179 -103
- data/lib/aws-sdk-s3/object_version.rb +25 -23
- data/lib/aws-sdk-s3/plugins/checksum_algorithm.rb +31 -0
- data/lib/aws-sdk-s3/plugins/endpoints.rb +1 -1
- data/lib/aws-sdk-s3/plugins/express_session_auth.rb +11 -20
- 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 +4 -5
- data/lib/aws-sdk-s3/resource.rb +7 -1
- data/lib/aws-sdk-s3/transfer_manager.rb +303 -0
- data/lib/aws-sdk-s3/types.rb +2907 -1059
- data/lib/aws-sdk-s3.rb +1 -1
- data/sig/bucket.rbs +16 -6
- 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 +226 -64
- data/sig/errors.rbs +2 -0
- data/sig/multipart_upload.rbs +9 -2
- data/sig/multipart_upload_part.rbs +5 -1
- data/sig/object.rbs +31 -15
- data/sig/object_acl.rbs +1 -1
- data/sig/object_summary.rbs +22 -15
- data/sig/object_version.rbs +5 -2
- data/sig/resource.rbs +11 -2
- data/sig/types.rbs +281 -64
- metadata +26 -10
- 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: []
|
|
@@ -77,10 +82,16 @@ module Aws::S3
|
|
|
77
82
|
SENSITIVE: []
|
|
78
83
|
end
|
|
79
84
|
|
|
85
|
+
class BlockedEncryptionTypes
|
|
86
|
+
attr_accessor encryption_type: ::Array[("NONE" | "SSE-C")]
|
|
87
|
+
SENSITIVE: []
|
|
88
|
+
end
|
|
89
|
+
|
|
80
90
|
class Bucket
|
|
81
91
|
attr_accessor name: ::String
|
|
82
92
|
attr_accessor creation_date: ::Time
|
|
83
93
|
attr_accessor bucket_region: ::String
|
|
94
|
+
attr_accessor bucket_arn: ::String
|
|
84
95
|
SENSITIVE: []
|
|
85
96
|
end
|
|
86
97
|
|
|
@@ -144,8 +155,10 @@ module Aws::S3
|
|
|
144
155
|
class Checksum
|
|
145
156
|
attr_accessor checksum_crc32: ::String
|
|
146
157
|
attr_accessor checksum_crc32c: ::String
|
|
158
|
+
attr_accessor checksum_crc64nvme: ::String
|
|
147
159
|
attr_accessor checksum_sha1: ::String
|
|
148
160
|
attr_accessor checksum_sha256: ::String
|
|
161
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
|
149
162
|
SENSITIVE: []
|
|
150
163
|
end
|
|
151
164
|
|
|
@@ -171,9 +184,11 @@ module Aws::S3
|
|
|
171
184
|
attr_accessor etag: ::String
|
|
172
185
|
attr_accessor checksum_crc32: ::String
|
|
173
186
|
attr_accessor checksum_crc32c: ::String
|
|
187
|
+
attr_accessor checksum_crc64nvme: ::String
|
|
174
188
|
attr_accessor checksum_sha1: ::String
|
|
175
189
|
attr_accessor checksum_sha256: ::String
|
|
176
|
-
attr_accessor
|
|
190
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
|
191
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
177
192
|
attr_accessor version_id: ::String
|
|
178
193
|
attr_accessor ssekms_key_id: ::String
|
|
179
194
|
attr_accessor bucket_key_enabled: bool
|
|
@@ -188,8 +203,11 @@ module Aws::S3
|
|
|
188
203
|
attr_accessor upload_id: ::String
|
|
189
204
|
attr_accessor checksum_crc32: ::String
|
|
190
205
|
attr_accessor checksum_crc32c: ::String
|
|
206
|
+
attr_accessor checksum_crc64nvme: ::String
|
|
191
207
|
attr_accessor checksum_sha1: ::String
|
|
192
208
|
attr_accessor checksum_sha256: ::String
|
|
209
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
|
210
|
+
attr_accessor mpu_object_size: ::Integer
|
|
193
211
|
attr_accessor request_payer: ("requester")
|
|
194
212
|
attr_accessor expected_bucket_owner: ::String
|
|
195
213
|
attr_accessor if_match: ::String
|
|
@@ -209,6 +227,7 @@ module Aws::S3
|
|
|
209
227
|
attr_accessor etag: ::String
|
|
210
228
|
attr_accessor checksum_crc32: ::String
|
|
211
229
|
attr_accessor checksum_crc32c: ::String
|
|
230
|
+
attr_accessor checksum_crc64nvme: ::String
|
|
212
231
|
attr_accessor checksum_sha1: ::String
|
|
213
232
|
attr_accessor checksum_sha256: ::String
|
|
214
233
|
attr_accessor part_number: ::Integer
|
|
@@ -231,7 +250,7 @@ module Aws::S3
|
|
|
231
250
|
attr_accessor expiration: ::String
|
|
232
251
|
attr_accessor copy_source_version_id: ::String
|
|
233
252
|
attr_accessor version_id: ::String
|
|
234
|
-
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")
|
|
235
254
|
attr_accessor sse_customer_algorithm: ::String
|
|
236
255
|
attr_accessor sse_customer_key_md5: ::String
|
|
237
256
|
attr_accessor ssekms_key_id: ::String
|
|
@@ -245,7 +264,7 @@ module Aws::S3
|
|
|
245
264
|
attr_accessor acl: ("private" | "public-read" | "public-read-write" | "authenticated-read" | "aws-exec-read" | "bucket-owner-read" | "bucket-owner-full-control")
|
|
246
265
|
attr_accessor bucket: ::String
|
|
247
266
|
attr_accessor cache_control: ::String
|
|
248
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
267
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
249
268
|
attr_accessor content_disposition: ::String
|
|
250
269
|
attr_accessor content_encoding: ::String
|
|
251
270
|
attr_accessor content_language: ::String
|
|
@@ -260,12 +279,14 @@ module Aws::S3
|
|
|
260
279
|
attr_accessor grant_read: ::String
|
|
261
280
|
attr_accessor grant_read_acp: ::String
|
|
262
281
|
attr_accessor grant_write_acp: ::String
|
|
282
|
+
attr_accessor if_match: ::String
|
|
283
|
+
attr_accessor if_none_match: ::String
|
|
263
284
|
attr_accessor key: ::String
|
|
264
285
|
attr_accessor metadata: ::Hash[::String, ::String]
|
|
265
286
|
attr_accessor metadata_directive: ("COPY" | "REPLACE")
|
|
266
287
|
attr_accessor tagging_directive: ("COPY" | "REPLACE")
|
|
267
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
|
268
|
-
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")
|
|
269
290
|
attr_accessor website_redirect_location: ::String
|
|
270
291
|
attr_accessor sse_customer_algorithm: ::String
|
|
271
292
|
attr_accessor sse_customer_key: ::String
|
|
@@ -289,8 +310,10 @@ module Aws::S3
|
|
|
289
310
|
class CopyObjectResult
|
|
290
311
|
attr_accessor etag: ::String
|
|
291
312
|
attr_accessor last_modified: ::Time
|
|
313
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
|
292
314
|
attr_accessor checksum_crc32: ::String
|
|
293
315
|
attr_accessor checksum_crc32c: ::String
|
|
316
|
+
attr_accessor checksum_crc64nvme: ::String
|
|
294
317
|
attr_accessor checksum_sha1: ::String
|
|
295
318
|
attr_accessor checksum_sha256: ::String
|
|
296
319
|
SENSITIVE: []
|
|
@@ -301,22 +324,33 @@ module Aws::S3
|
|
|
301
324
|
attr_accessor last_modified: ::Time
|
|
302
325
|
attr_accessor checksum_crc32: ::String
|
|
303
326
|
attr_accessor checksum_crc32c: ::String
|
|
327
|
+
attr_accessor checksum_crc64nvme: ::String
|
|
304
328
|
attr_accessor checksum_sha1: ::String
|
|
305
329
|
attr_accessor checksum_sha256: ::String
|
|
306
330
|
SENSITIVE: []
|
|
307
331
|
end
|
|
308
332
|
|
|
309
333
|
class CreateBucketConfiguration
|
|
310
|
-
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")
|
|
311
335
|
attr_accessor location: Types::LocationInfo
|
|
312
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
|
|
313
347
|
SENSITIVE: []
|
|
314
348
|
end
|
|
315
349
|
|
|
316
350
|
class CreateBucketMetadataTableConfigurationRequest
|
|
317
351
|
attr_accessor bucket: ::String
|
|
318
352
|
attr_accessor content_md5: ::String
|
|
319
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
353
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
320
354
|
attr_accessor metadata_table_configuration: Types::MetadataTableConfiguration
|
|
321
355
|
attr_accessor expected_bucket_owner: ::String
|
|
322
356
|
SENSITIVE: []
|
|
@@ -324,6 +358,7 @@ module Aws::S3
|
|
|
324
358
|
|
|
325
359
|
class CreateBucketOutput
|
|
326
360
|
attr_accessor location: ::String
|
|
361
|
+
attr_accessor bucket_arn: ::String
|
|
327
362
|
SENSITIVE: []
|
|
328
363
|
end
|
|
329
364
|
|
|
@@ -347,14 +382,15 @@ module Aws::S3
|
|
|
347
382
|
attr_accessor bucket: ::String
|
|
348
383
|
attr_accessor key: ::String
|
|
349
384
|
attr_accessor upload_id: ::String
|
|
350
|
-
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")
|
|
351
386
|
attr_accessor sse_customer_algorithm: ::String
|
|
352
387
|
attr_accessor sse_customer_key_md5: ::String
|
|
353
388
|
attr_accessor ssekms_key_id: ::String
|
|
354
389
|
attr_accessor ssekms_encryption_context: ::String
|
|
355
390
|
attr_accessor bucket_key_enabled: bool
|
|
356
391
|
attr_accessor request_charged: ("requester")
|
|
357
|
-
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")
|
|
358
394
|
SENSITIVE: [:ssekms_key_id, :ssekms_encryption_context]
|
|
359
395
|
end
|
|
360
396
|
|
|
@@ -373,8 +409,8 @@ module Aws::S3
|
|
|
373
409
|
attr_accessor grant_write_acp: ::String
|
|
374
410
|
attr_accessor key: ::String
|
|
375
411
|
attr_accessor metadata: ::Hash[::String, ::String]
|
|
376
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
|
377
|
-
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")
|
|
378
414
|
attr_accessor website_redirect_location: ::String
|
|
379
415
|
attr_accessor sse_customer_algorithm: ::String
|
|
380
416
|
attr_accessor sse_customer_key: ::String
|
|
@@ -388,12 +424,13 @@ module Aws::S3
|
|
|
388
424
|
attr_accessor object_lock_retain_until_date: ::Time
|
|
389
425
|
attr_accessor object_lock_legal_hold_status: ("ON" | "OFF")
|
|
390
426
|
attr_accessor expected_bucket_owner: ::String
|
|
391
|
-
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")
|
|
392
429
|
SENSITIVE: [:sse_customer_key, :ssekms_key_id, :ssekms_encryption_context]
|
|
393
430
|
end
|
|
394
431
|
|
|
395
432
|
class CreateSessionOutput
|
|
396
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
|
433
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
397
434
|
attr_accessor ssekms_key_id: ::String
|
|
398
435
|
attr_accessor ssekms_encryption_context: ::String
|
|
399
436
|
attr_accessor bucket_key_enabled: bool
|
|
@@ -404,7 +441,7 @@ module Aws::S3
|
|
|
404
441
|
class CreateSessionRequest
|
|
405
442
|
attr_accessor session_mode: ("ReadOnly" | "ReadWrite")
|
|
406
443
|
attr_accessor bucket: ::String
|
|
407
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
|
444
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
408
445
|
attr_accessor ssekms_key_id: ::String
|
|
409
446
|
attr_accessor ssekms_encryption_context: ::String
|
|
410
447
|
attr_accessor bucket_key_enabled: bool
|
|
@@ -446,6 +483,7 @@ module Aws::S3
|
|
|
446
483
|
class DeleteBucketIntelligentTieringConfigurationRequest
|
|
447
484
|
attr_accessor bucket: ::String
|
|
448
485
|
attr_accessor id: ::String
|
|
486
|
+
attr_accessor expected_bucket_owner: ::String
|
|
449
487
|
SENSITIVE: []
|
|
450
488
|
end
|
|
451
489
|
|
|
@@ -462,6 +500,12 @@ module Aws::S3
|
|
|
462
500
|
SENSITIVE: []
|
|
463
501
|
end
|
|
464
502
|
|
|
503
|
+
class DeleteBucketMetadataConfigurationRequest
|
|
504
|
+
attr_accessor bucket: ::String
|
|
505
|
+
attr_accessor expected_bucket_owner: ::String
|
|
506
|
+
SENSITIVE: []
|
|
507
|
+
end
|
|
508
|
+
|
|
465
509
|
class DeleteBucketMetadataTableConfigurationRequest
|
|
466
510
|
attr_accessor bucket: ::String
|
|
467
511
|
attr_accessor expected_bucket_owner: ::String
|
|
@@ -573,7 +617,7 @@ module Aws::S3
|
|
|
573
617
|
attr_accessor request_payer: ("requester")
|
|
574
618
|
attr_accessor bypass_governance_retention: bool
|
|
575
619
|
attr_accessor expected_bucket_owner: ::String
|
|
576
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
620
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
577
621
|
SENSITIVE: []
|
|
578
622
|
end
|
|
579
623
|
|
|
@@ -594,7 +638,7 @@ module Aws::S3
|
|
|
594
638
|
class Destination
|
|
595
639
|
attr_accessor bucket: ::String
|
|
596
640
|
attr_accessor account: ::String
|
|
597
|
-
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")
|
|
598
642
|
attr_accessor access_control_translation: Types::AccessControlTranslation
|
|
599
643
|
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
|
600
644
|
attr_accessor replication_time: Types::ReplicationTime
|
|
@@ -602,8 +646,15 @@ module Aws::S3
|
|
|
602
646
|
SENSITIVE: []
|
|
603
647
|
end
|
|
604
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
|
+
|
|
605
656
|
class Encryption
|
|
606
|
-
attr_accessor encryption_type: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
|
657
|
+
attr_accessor encryption_type: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
607
658
|
attr_accessor kms_key_id: ::String
|
|
608
659
|
attr_accessor kms_context: ::String
|
|
609
660
|
SENSITIVE: [:kms_key_id]
|
|
@@ -655,6 +706,17 @@ module Aws::S3
|
|
|
655
706
|
SENSITIVE: []
|
|
656
707
|
end
|
|
657
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
|
+
|
|
658
720
|
class GetBucketAccelerateConfigurationOutput
|
|
659
721
|
attr_accessor status: ("Enabled" | "Suspended")
|
|
660
722
|
attr_accessor request_charged: ("requester")
|
|
@@ -722,6 +784,7 @@ module Aws::S3
|
|
|
722
784
|
class GetBucketIntelligentTieringConfigurationRequest
|
|
723
785
|
attr_accessor bucket: ::String
|
|
724
786
|
attr_accessor id: ::String
|
|
787
|
+
attr_accessor expected_bucket_owner: ::String
|
|
725
788
|
SENSITIVE: []
|
|
726
789
|
end
|
|
727
790
|
|
|
@@ -761,7 +824,7 @@ module Aws::S3
|
|
|
761
824
|
end
|
|
762
825
|
|
|
763
826
|
class GetBucketLocationOutput
|
|
764
|
-
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")
|
|
765
828
|
SENSITIVE: []
|
|
766
829
|
end
|
|
767
830
|
|
|
@@ -782,6 +845,22 @@ module Aws::S3
|
|
|
782
845
|
SENSITIVE: []
|
|
783
846
|
end
|
|
784
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
|
+
|
|
785
864
|
class GetBucketMetadataTableConfigurationOutput
|
|
786
865
|
attr_accessor get_bucket_metadata_table_configuration_result: Types::GetBucketMetadataTableConfigurationResult
|
|
787
866
|
SENSITIVE: []
|
|
@@ -934,7 +1013,7 @@ module Aws::S3
|
|
|
934
1013
|
attr_accessor etag: ::String
|
|
935
1014
|
attr_accessor checksum: Types::Checksum
|
|
936
1015
|
attr_accessor object_parts: Types::GetObjectAttributesParts
|
|
937
|
-
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")
|
|
938
1017
|
attr_accessor object_size: ::Integer
|
|
939
1018
|
SENSITIVE: []
|
|
940
1019
|
end
|
|
@@ -1000,8 +1079,10 @@ module Aws::S3
|
|
|
1000
1079
|
attr_accessor etag: ::String
|
|
1001
1080
|
attr_accessor checksum_crc32: ::String
|
|
1002
1081
|
attr_accessor checksum_crc32c: ::String
|
|
1082
|
+
attr_accessor checksum_crc64nvme: ::String
|
|
1003
1083
|
attr_accessor checksum_sha1: ::String
|
|
1004
1084
|
attr_accessor checksum_sha256: ::String
|
|
1085
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
|
1005
1086
|
attr_accessor missing_meta: ::Integer
|
|
1006
1087
|
attr_accessor version_id: ::String
|
|
1007
1088
|
attr_accessor cache_control: ::String
|
|
@@ -1013,13 +1094,13 @@ module Aws::S3
|
|
|
1013
1094
|
attr_accessor expires: ::Time
|
|
1014
1095
|
attr_accessor expires_string: ::String
|
|
1015
1096
|
attr_accessor website_redirect_location: ::String
|
|
1016
|
-
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")
|
|
1017
1098
|
attr_accessor metadata: ::Hash[::String, ::String]
|
|
1018
1099
|
attr_accessor sse_customer_algorithm: ::String
|
|
1019
1100
|
attr_accessor sse_customer_key_md5: ::String
|
|
1020
1101
|
attr_accessor ssekms_key_id: ::String
|
|
1021
1102
|
attr_accessor bucket_key_enabled: bool
|
|
1022
|
-
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")
|
|
1023
1104
|
attr_accessor request_charged: ("requester")
|
|
1024
1105
|
attr_accessor replication_status: ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
|
|
1025
1106
|
attr_accessor parts_count: ::Integer
|
|
@@ -1130,6 +1211,7 @@ module Aws::S3
|
|
|
1130
1211
|
end
|
|
1131
1212
|
|
|
1132
1213
|
class HeadBucketOutput
|
|
1214
|
+
attr_accessor bucket_arn: ::String
|
|
1133
1215
|
attr_accessor bucket_location_type: ("AvailabilityZone" | "LocalZone")
|
|
1134
1216
|
attr_accessor bucket_location_name: ::String
|
|
1135
1217
|
attr_accessor bucket_region: ::String
|
|
@@ -1153,8 +1235,10 @@ module Aws::S3
|
|
|
1153
1235
|
attr_accessor content_length: ::Integer
|
|
1154
1236
|
attr_accessor checksum_crc32: ::String
|
|
1155
1237
|
attr_accessor checksum_crc32c: ::String
|
|
1238
|
+
attr_accessor checksum_crc64nvme: ::String
|
|
1156
1239
|
attr_accessor checksum_sha1: ::String
|
|
1157
1240
|
attr_accessor checksum_sha256: ::String
|
|
1241
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
|
1158
1242
|
attr_accessor etag: ::String
|
|
1159
1243
|
attr_accessor missing_meta: ::Integer
|
|
1160
1244
|
attr_accessor version_id: ::String
|
|
@@ -1163,19 +1247,21 @@ module Aws::S3
|
|
|
1163
1247
|
attr_accessor content_encoding: ::String
|
|
1164
1248
|
attr_accessor content_language: ::String
|
|
1165
1249
|
attr_accessor content_type: ::String
|
|
1250
|
+
attr_accessor content_range: ::String
|
|
1166
1251
|
attr_accessor expires: ::Time
|
|
1167
1252
|
attr_accessor expires_string: ::String
|
|
1168
1253
|
attr_accessor website_redirect_location: ::String
|
|
1169
|
-
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")
|
|
1170
1255
|
attr_accessor metadata: ::Hash[::String, ::String]
|
|
1171
1256
|
attr_accessor sse_customer_algorithm: ::String
|
|
1172
1257
|
attr_accessor sse_customer_key_md5: ::String
|
|
1173
1258
|
attr_accessor ssekms_key_id: ::String
|
|
1174
1259
|
attr_accessor bucket_key_enabled: bool
|
|
1175
|
-
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")
|
|
1176
1261
|
attr_accessor request_charged: ("requester")
|
|
1177
1262
|
attr_accessor replication_status: ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
|
|
1178
1263
|
attr_accessor parts_count: ::Integer
|
|
1264
|
+
attr_accessor tag_count: ::Integer
|
|
1179
1265
|
attr_accessor object_lock_mode: ("GOVERNANCE" | "COMPLIANCE")
|
|
1180
1266
|
attr_accessor object_lock_retain_until_date: ::Time
|
|
1181
1267
|
attr_accessor object_lock_legal_hold_status: ("ON" | "OFF")
|
|
@@ -1207,6 +1293,9 @@ module Aws::S3
|
|
|
1207
1293
|
SENSITIVE: [:sse_customer_key]
|
|
1208
1294
|
end
|
|
1209
1295
|
|
|
1296
|
+
class IdempotencyParameterMismatch < Aws::EmptyStructure
|
|
1297
|
+
end
|
|
1298
|
+
|
|
1210
1299
|
class IndexDocument
|
|
1211
1300
|
attr_accessor suffix: ::String
|
|
1212
1301
|
SENSITIVE: []
|
|
@@ -1248,7 +1337,7 @@ module Aws::S3
|
|
|
1248
1337
|
end
|
|
1249
1338
|
|
|
1250
1339
|
class InvalidObjectState
|
|
1251
|
-
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")
|
|
1252
1341
|
attr_accessor access_tier: ("ARCHIVE_ACCESS" | "DEEP_ARCHIVE_ACCESS")
|
|
1253
1342
|
SENSITIVE: []
|
|
1254
1343
|
end
|
|
@@ -1265,7 +1354,7 @@ module Aws::S3
|
|
|
1265
1354
|
attr_accessor filter: Types::InventoryFilter
|
|
1266
1355
|
attr_accessor id: ::String
|
|
1267
1356
|
attr_accessor included_object_versions: ("All" | "Current")
|
|
1268
|
-
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")]
|
|
1269
1358
|
attr_accessor schedule: Types::InventorySchedule
|
|
1270
1359
|
SENSITIVE: []
|
|
1271
1360
|
end
|
|
@@ -1300,6 +1389,27 @@ module Aws::S3
|
|
|
1300
1389
|
SENSITIVE: []
|
|
1301
1390
|
end
|
|
1302
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
|
+
|
|
1303
1413
|
class JSONInput
|
|
1304
1414
|
attr_accessor type: ("DOCUMENT" | "LINES")
|
|
1305
1415
|
SENSITIVE: []
|
|
@@ -1310,6 +1420,26 @@ module Aws::S3
|
|
|
1310
1420
|
SENSITIVE: []
|
|
1311
1421
|
end
|
|
1312
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
|
+
|
|
1313
1443
|
class LambdaFunctionConfiguration
|
|
1314
1444
|
attr_accessor id: ::String
|
|
1315
1445
|
attr_accessor lambda_function_arn: ::String
|
|
@@ -1386,6 +1516,7 @@ module Aws::S3
|
|
|
1386
1516
|
class ListBucketIntelligentTieringConfigurationsRequest
|
|
1387
1517
|
attr_accessor bucket: ::String
|
|
1388
1518
|
attr_accessor continuation_token: ::String
|
|
1519
|
+
attr_accessor expected_bucket_owner: ::String
|
|
1389
1520
|
SENSITIVE: []
|
|
1390
1521
|
end
|
|
1391
1522
|
|
|
@@ -1582,9 +1713,10 @@ module Aws::S3
|
|
|
1582
1713
|
attr_accessor parts: ::Array[Types::Part]
|
|
1583
1714
|
attr_accessor initiator: Types::Initiator
|
|
1584
1715
|
attr_accessor owner: Types::Owner
|
|
1585
|
-
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")
|
|
1586
1717
|
attr_accessor request_charged: ("requester")
|
|
1587
|
-
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")
|
|
1588
1720
|
SENSITIVE: []
|
|
1589
1721
|
end
|
|
1590
1722
|
|
|
@@ -1616,6 +1748,19 @@ module Aws::S3
|
|
|
1616
1748
|
SENSITIVE: []
|
|
1617
1749
|
end
|
|
1618
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
|
+
|
|
1619
1764
|
class MetadataEntry
|
|
1620
1765
|
attr_accessor name: ::String
|
|
1621
1766
|
attr_accessor value: ::String
|
|
@@ -1632,6 +1777,12 @@ module Aws::S3
|
|
|
1632
1777
|
SENSITIVE: []
|
|
1633
1778
|
end
|
|
1634
1779
|
|
|
1780
|
+
class MetadataTableEncryptionConfiguration
|
|
1781
|
+
attr_accessor sse_algorithm: ("aws:kms" | "AES256")
|
|
1782
|
+
attr_accessor kms_key_arn: ::String
|
|
1783
|
+
SENSITIVE: []
|
|
1784
|
+
end
|
|
1785
|
+
|
|
1635
1786
|
class Metrics
|
|
1636
1787
|
attr_accessor status: ("Enabled" | "Disabled")
|
|
1637
1788
|
attr_accessor event_threshold: Types::ReplicationTimeValue
|
|
@@ -1663,10 +1814,11 @@ module Aws::S3
|
|
|
1663
1814
|
attr_accessor upload_id: ::String
|
|
1664
1815
|
attr_accessor key: ::String
|
|
1665
1816
|
attr_accessor initiated: ::Time
|
|
1666
|
-
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")
|
|
1667
1818
|
attr_accessor owner: Types::Owner
|
|
1668
1819
|
attr_accessor initiator: Types::Initiator
|
|
1669
|
-
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")
|
|
1670
1822
|
SENSITIVE: []
|
|
1671
1823
|
end
|
|
1672
1824
|
|
|
@@ -1716,9 +1868,10 @@ module Aws::S3
|
|
|
1716
1868
|
attr_accessor key: ::String
|
|
1717
1869
|
attr_accessor last_modified: ::Time
|
|
1718
1870
|
attr_accessor etag: ::String
|
|
1719
|
-
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")
|
|
1720
1873
|
attr_accessor size: ::Integer
|
|
1721
|
-
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")
|
|
1722
1875
|
attr_accessor owner: Types::Owner
|
|
1723
1876
|
attr_accessor restore_status: Types::RestoreStatus
|
|
1724
1877
|
SENSITIVE: []
|
|
@@ -1766,6 +1919,7 @@ module Aws::S3
|
|
|
1766
1919
|
attr_accessor size: ::Integer
|
|
1767
1920
|
attr_accessor checksum_crc32: ::String
|
|
1768
1921
|
attr_accessor checksum_crc32c: ::String
|
|
1922
|
+
attr_accessor checksum_crc64nvme: ::String
|
|
1769
1923
|
attr_accessor checksum_sha1: ::String
|
|
1770
1924
|
attr_accessor checksum_sha256: ::String
|
|
1771
1925
|
SENSITIVE: []
|
|
@@ -1773,7 +1927,8 @@ module Aws::S3
|
|
|
1773
1927
|
|
|
1774
1928
|
class ObjectVersion
|
|
1775
1929
|
attr_accessor etag: ::String
|
|
1776
|
-
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")
|
|
1777
1932
|
attr_accessor size: ::Integer
|
|
1778
1933
|
attr_accessor storage_class: ("STANDARD")
|
|
1779
1934
|
attr_accessor key: ::String
|
|
@@ -1822,6 +1977,7 @@ module Aws::S3
|
|
|
1822
1977
|
attr_accessor size: ::Integer
|
|
1823
1978
|
attr_accessor checksum_crc32: ::String
|
|
1824
1979
|
attr_accessor checksum_crc32c: ::String
|
|
1980
|
+
attr_accessor checksum_crc64nvme: ::String
|
|
1825
1981
|
attr_accessor checksum_sha1: ::String
|
|
1826
1982
|
attr_accessor checksum_sha256: ::String
|
|
1827
1983
|
SENSITIVE: []
|
|
@@ -1858,11 +2014,20 @@ module Aws::S3
|
|
|
1858
2014
|
SENSITIVE: []
|
|
1859
2015
|
end
|
|
1860
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
|
+
|
|
1861
2026
|
class PutBucketAccelerateConfigurationRequest
|
|
1862
2027
|
attr_accessor bucket: ::String
|
|
1863
2028
|
attr_accessor accelerate_configuration: Types::AccelerateConfiguration
|
|
1864
2029
|
attr_accessor expected_bucket_owner: ::String
|
|
1865
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2030
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1866
2031
|
SENSITIVE: []
|
|
1867
2032
|
end
|
|
1868
2033
|
|
|
@@ -1871,7 +2036,7 @@ module Aws::S3
|
|
|
1871
2036
|
attr_accessor access_control_policy: Types::AccessControlPolicy
|
|
1872
2037
|
attr_accessor bucket: ::String
|
|
1873
2038
|
attr_accessor content_md5: ::String
|
|
1874
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2039
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1875
2040
|
attr_accessor grant_full_control: ::String
|
|
1876
2041
|
attr_accessor grant_read: ::String
|
|
1877
2042
|
attr_accessor grant_read_acp: ::String
|
|
@@ -1893,7 +2058,7 @@ module Aws::S3
|
|
|
1893
2058
|
attr_accessor bucket: ::String
|
|
1894
2059
|
attr_accessor cors_configuration: Types::CORSConfiguration
|
|
1895
2060
|
attr_accessor content_md5: ::String
|
|
1896
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2061
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1897
2062
|
attr_accessor expected_bucket_owner: ::String
|
|
1898
2063
|
SENSITIVE: []
|
|
1899
2064
|
end
|
|
@@ -1901,7 +2066,7 @@ module Aws::S3
|
|
|
1901
2066
|
class PutBucketEncryptionRequest
|
|
1902
2067
|
attr_accessor bucket: ::String
|
|
1903
2068
|
attr_accessor content_md5: ::String
|
|
1904
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2069
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1905
2070
|
attr_accessor server_side_encryption_configuration: Types::ServerSideEncryptionConfiguration
|
|
1906
2071
|
attr_accessor expected_bucket_owner: ::String
|
|
1907
2072
|
SENSITIVE: []
|
|
@@ -1910,6 +2075,7 @@ module Aws::S3
|
|
|
1910
2075
|
class PutBucketIntelligentTieringConfigurationRequest
|
|
1911
2076
|
attr_accessor bucket: ::String
|
|
1912
2077
|
attr_accessor id: ::String
|
|
2078
|
+
attr_accessor expected_bucket_owner: ::String
|
|
1913
2079
|
attr_accessor intelligent_tiering_configuration: Types::IntelligentTieringConfiguration
|
|
1914
2080
|
SENSITIVE: []
|
|
1915
2081
|
end
|
|
@@ -1929,7 +2095,7 @@ module Aws::S3
|
|
|
1929
2095
|
|
|
1930
2096
|
class PutBucketLifecycleConfigurationRequest
|
|
1931
2097
|
attr_accessor bucket: ::String
|
|
1932
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2098
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1933
2099
|
attr_accessor lifecycle_configuration: Types::BucketLifecycleConfiguration
|
|
1934
2100
|
attr_accessor expected_bucket_owner: ::String
|
|
1935
2101
|
attr_accessor transition_default_minimum_object_size: ("varies_by_storage_class" | "all_storage_classes_128K")
|
|
@@ -1939,7 +2105,7 @@ module Aws::S3
|
|
|
1939
2105
|
class PutBucketLifecycleRequest
|
|
1940
2106
|
attr_accessor bucket: ::String
|
|
1941
2107
|
attr_accessor content_md5: ::String
|
|
1942
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2108
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1943
2109
|
attr_accessor lifecycle_configuration: Types::LifecycleConfiguration
|
|
1944
2110
|
attr_accessor expected_bucket_owner: ::String
|
|
1945
2111
|
SENSITIVE: []
|
|
@@ -1949,7 +2115,7 @@ module Aws::S3
|
|
|
1949
2115
|
attr_accessor bucket: ::String
|
|
1950
2116
|
attr_accessor bucket_logging_status: Types::BucketLoggingStatus
|
|
1951
2117
|
attr_accessor content_md5: ::String
|
|
1952
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2118
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1953
2119
|
attr_accessor expected_bucket_owner: ::String
|
|
1954
2120
|
SENSITIVE: []
|
|
1955
2121
|
end
|
|
@@ -1973,7 +2139,7 @@ module Aws::S3
|
|
|
1973
2139
|
class PutBucketNotificationRequest
|
|
1974
2140
|
attr_accessor bucket: ::String
|
|
1975
2141
|
attr_accessor content_md5: ::String
|
|
1976
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2142
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1977
2143
|
attr_accessor notification_configuration: Types::NotificationConfigurationDeprecated
|
|
1978
2144
|
attr_accessor expected_bucket_owner: ::String
|
|
1979
2145
|
SENSITIVE: []
|
|
@@ -1984,13 +2150,14 @@ module Aws::S3
|
|
|
1984
2150
|
attr_accessor content_md5: ::String
|
|
1985
2151
|
attr_accessor expected_bucket_owner: ::String
|
|
1986
2152
|
attr_accessor ownership_controls: Types::OwnershipControls
|
|
2153
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1987
2154
|
SENSITIVE: []
|
|
1988
2155
|
end
|
|
1989
2156
|
|
|
1990
2157
|
class PutBucketPolicyRequest
|
|
1991
2158
|
attr_accessor bucket: ::String
|
|
1992
2159
|
attr_accessor content_md5: ::String
|
|
1993
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2160
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1994
2161
|
attr_accessor confirm_remove_self_bucket_access: bool
|
|
1995
2162
|
attr_accessor policy: ::IO
|
|
1996
2163
|
attr_accessor expected_bucket_owner: ::String
|
|
@@ -2000,7 +2167,7 @@ module Aws::S3
|
|
|
2000
2167
|
class PutBucketReplicationRequest
|
|
2001
2168
|
attr_accessor bucket: ::String
|
|
2002
2169
|
attr_accessor content_md5: ::String
|
|
2003
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2170
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
2004
2171
|
attr_accessor replication_configuration: Types::ReplicationConfiguration
|
|
2005
2172
|
attr_accessor token: ::String
|
|
2006
2173
|
attr_accessor expected_bucket_owner: ::String
|
|
@@ -2010,7 +2177,7 @@ module Aws::S3
|
|
|
2010
2177
|
class PutBucketRequestPaymentRequest
|
|
2011
2178
|
attr_accessor bucket: ::String
|
|
2012
2179
|
attr_accessor content_md5: ::String
|
|
2013
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2180
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
2014
2181
|
attr_accessor request_payment_configuration: Types::RequestPaymentConfiguration
|
|
2015
2182
|
attr_accessor expected_bucket_owner: ::String
|
|
2016
2183
|
SENSITIVE: []
|
|
@@ -2019,7 +2186,7 @@ module Aws::S3
|
|
|
2019
2186
|
class PutBucketTaggingRequest
|
|
2020
2187
|
attr_accessor bucket: ::String
|
|
2021
2188
|
attr_accessor content_md5: ::String
|
|
2022
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2189
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
2023
2190
|
attr_accessor tagging: Types::Tagging
|
|
2024
2191
|
attr_accessor expected_bucket_owner: ::String
|
|
2025
2192
|
SENSITIVE: []
|
|
@@ -2028,7 +2195,7 @@ module Aws::S3
|
|
|
2028
2195
|
class PutBucketVersioningRequest
|
|
2029
2196
|
attr_accessor bucket: ::String
|
|
2030
2197
|
attr_accessor content_md5: ::String
|
|
2031
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2198
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
2032
2199
|
attr_accessor mfa: ::String
|
|
2033
2200
|
attr_accessor versioning_configuration: Types::VersioningConfiguration
|
|
2034
2201
|
attr_accessor expected_bucket_owner: ::String
|
|
@@ -2038,7 +2205,7 @@ module Aws::S3
|
|
|
2038
2205
|
class PutBucketWebsiteRequest
|
|
2039
2206
|
attr_accessor bucket: ::String
|
|
2040
2207
|
attr_accessor content_md5: ::String
|
|
2041
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2208
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
2042
2209
|
attr_accessor website_configuration: Types::WebsiteConfiguration
|
|
2043
2210
|
attr_accessor expected_bucket_owner: ::String
|
|
2044
2211
|
SENSITIVE: []
|
|
@@ -2054,7 +2221,7 @@ module Aws::S3
|
|
|
2054
2221
|
attr_accessor access_control_policy: Types::AccessControlPolicy
|
|
2055
2222
|
attr_accessor bucket: ::String
|
|
2056
2223
|
attr_accessor content_md5: ::String
|
|
2057
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2224
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
2058
2225
|
attr_accessor grant_full_control: ::String
|
|
2059
2226
|
attr_accessor grant_read: ::String
|
|
2060
2227
|
attr_accessor grant_read_acp: ::String
|
|
@@ -2079,7 +2246,7 @@ module Aws::S3
|
|
|
2079
2246
|
attr_accessor request_payer: ("requester")
|
|
2080
2247
|
attr_accessor version_id: ::String
|
|
2081
2248
|
attr_accessor content_md5: ::String
|
|
2082
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2249
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
2083
2250
|
attr_accessor expected_bucket_owner: ::String
|
|
2084
2251
|
SENSITIVE: []
|
|
2085
2252
|
end
|
|
@@ -2095,7 +2262,7 @@ module Aws::S3
|
|
|
2095
2262
|
attr_accessor request_payer: ("requester")
|
|
2096
2263
|
attr_accessor token: ::String
|
|
2097
2264
|
attr_accessor content_md5: ::String
|
|
2098
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2265
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
2099
2266
|
attr_accessor expected_bucket_owner: ::String
|
|
2100
2267
|
SENSITIVE: []
|
|
2101
2268
|
end
|
|
@@ -2105,9 +2272,11 @@ module Aws::S3
|
|
|
2105
2272
|
attr_accessor etag: ::String
|
|
2106
2273
|
attr_accessor checksum_crc32: ::String
|
|
2107
2274
|
attr_accessor checksum_crc32c: ::String
|
|
2275
|
+
attr_accessor checksum_crc64nvme: ::String
|
|
2108
2276
|
attr_accessor checksum_sha1: ::String
|
|
2109
2277
|
attr_accessor checksum_sha256: ::String
|
|
2110
|
-
attr_accessor
|
|
2278
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
|
2279
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
2111
2280
|
attr_accessor version_id: ::String
|
|
2112
2281
|
attr_accessor sse_customer_algorithm: ::String
|
|
2113
2282
|
attr_accessor sse_customer_key_md5: ::String
|
|
@@ -2130,9 +2299,10 @@ module Aws::S3
|
|
|
2130
2299
|
attr_accessor content_length: ::Integer
|
|
2131
2300
|
attr_accessor content_md5: ::String
|
|
2132
2301
|
attr_accessor content_type: ::String
|
|
2133
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2302
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
2134
2303
|
attr_accessor checksum_crc32: ::String
|
|
2135
2304
|
attr_accessor checksum_crc32c: ::String
|
|
2305
|
+
attr_accessor checksum_crc64nvme: ::String
|
|
2136
2306
|
attr_accessor checksum_sha1: ::String
|
|
2137
2307
|
attr_accessor checksum_sha256: ::String
|
|
2138
2308
|
attr_accessor expires: ::Time
|
|
@@ -2145,8 +2315,8 @@ module Aws::S3
|
|
|
2145
2315
|
attr_accessor key: ::String
|
|
2146
2316
|
attr_accessor write_offset_bytes: ::Integer
|
|
2147
2317
|
attr_accessor metadata: ::Hash[::String, ::String]
|
|
2148
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
|
2149
|
-
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")
|
|
2150
2320
|
attr_accessor website_redirect_location: ::String
|
|
2151
2321
|
attr_accessor sse_customer_algorithm: ::String
|
|
2152
2322
|
attr_accessor sse_customer_key: ::String
|
|
@@ -2176,7 +2346,7 @@ module Aws::S3
|
|
|
2176
2346
|
attr_accessor version_id: ::String
|
|
2177
2347
|
attr_accessor bypass_governance_retention: bool
|
|
2178
2348
|
attr_accessor content_md5: ::String
|
|
2179
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2349
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
2180
2350
|
attr_accessor expected_bucket_owner: ::String
|
|
2181
2351
|
SENSITIVE: []
|
|
2182
2352
|
end
|
|
@@ -2191,7 +2361,7 @@ module Aws::S3
|
|
|
2191
2361
|
attr_accessor key: ::String
|
|
2192
2362
|
attr_accessor version_id: ::String
|
|
2193
2363
|
attr_accessor content_md5: ::String
|
|
2194
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2364
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
2195
2365
|
attr_accessor tagging: Types::Tagging
|
|
2196
2366
|
attr_accessor expected_bucket_owner: ::String
|
|
2197
2367
|
attr_accessor request_payer: ("requester")
|
|
@@ -2201,7 +2371,7 @@ module Aws::S3
|
|
|
2201
2371
|
class PutPublicAccessBlockRequest
|
|
2202
2372
|
attr_accessor bucket: ::String
|
|
2203
2373
|
attr_accessor content_md5: ::String
|
|
2204
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2374
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
2205
2375
|
attr_accessor public_access_block_configuration: Types::PublicAccessBlockConfiguration
|
|
2206
2376
|
attr_accessor expected_bucket_owner: ::String
|
|
2207
2377
|
SENSITIVE: []
|
|
@@ -2223,6 +2393,12 @@ module Aws::S3
|
|
|
2223
2393
|
SENSITIVE: []
|
|
2224
2394
|
end
|
|
2225
2395
|
|
|
2396
|
+
class RecordExpiration
|
|
2397
|
+
attr_accessor expiration: ("ENABLED" | "DISABLED")
|
|
2398
|
+
attr_accessor days: ::Integer
|
|
2399
|
+
SENSITIVE: []
|
|
2400
|
+
end
|
|
2401
|
+
|
|
2226
2402
|
class RecordsEvent
|
|
2227
2403
|
attr_accessor payload: ::IO
|
|
2228
2404
|
attr_accessor event_type: untyped
|
|
@@ -2244,6 +2420,25 @@ module Aws::S3
|
|
|
2244
2420
|
SENSITIVE: []
|
|
2245
2421
|
end
|
|
2246
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
|
+
|
|
2247
2442
|
class ReplicaModifications
|
|
2248
2443
|
attr_accessor status: ("Enabled" | "Disabled")
|
|
2249
2444
|
SENSITIVE: []
|
|
@@ -2314,7 +2509,7 @@ module Aws::S3
|
|
|
2314
2509
|
attr_accessor version_id: ::String
|
|
2315
2510
|
attr_accessor restore_request: Types::RestoreRequest
|
|
2316
2511
|
attr_accessor request_payer: ("requester")
|
|
2317
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2512
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
2318
2513
|
attr_accessor expected_bucket_owner: ::String
|
|
2319
2514
|
SENSITIVE: []
|
|
2320
2515
|
end
|
|
@@ -2367,7 +2562,7 @@ module Aws::S3
|
|
|
2367
2562
|
attr_accessor access_control_list: ::Array[Types::Grant]
|
|
2368
2563
|
attr_accessor tagging: Types::Tagging
|
|
2369
2564
|
attr_accessor user_metadata: ::Array[Types::MetadataEntry]
|
|
2370
|
-
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")
|
|
2371
2566
|
SENSITIVE: []
|
|
2372
2567
|
end
|
|
2373
2568
|
|
|
@@ -2429,7 +2624,7 @@ module Aws::S3
|
|
|
2429
2624
|
end
|
|
2430
2625
|
|
|
2431
2626
|
class ServerSideEncryptionByDefault
|
|
2432
|
-
attr_accessor sse_algorithm: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
|
2627
|
+
attr_accessor sse_algorithm: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
2433
2628
|
attr_accessor kms_master_key_id: ::String
|
|
2434
2629
|
SENSITIVE: [:kms_master_key_id]
|
|
2435
2630
|
end
|
|
@@ -2442,6 +2637,7 @@ module Aws::S3
|
|
|
2442
2637
|
class ServerSideEncryptionRule
|
|
2443
2638
|
attr_accessor apply_server_side_encryption_by_default: Types::ServerSideEncryptionByDefault
|
|
2444
2639
|
attr_accessor bucket_key_enabled: bool
|
|
2640
|
+
attr_accessor blocked_encryption_types: Types::BlockedEncryptionTypes
|
|
2445
2641
|
SENSITIVE: []
|
|
2446
2642
|
end
|
|
2447
2643
|
|
|
@@ -2546,10 +2742,28 @@ module Aws::S3
|
|
|
2546
2742
|
SENSITIVE: []
|
|
2547
2743
|
end
|
|
2548
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
|
+
|
|
2549
2763
|
class UploadPartCopyOutput
|
|
2550
2764
|
attr_accessor copy_source_version_id: ::String
|
|
2551
2765
|
attr_accessor copy_part_result: Types::CopyPartResult
|
|
2552
|
-
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")
|
|
2553
2767
|
attr_accessor sse_customer_algorithm: ::String
|
|
2554
2768
|
attr_accessor sse_customer_key_md5: ::String
|
|
2555
2769
|
attr_accessor ssekms_key_id: ::String
|
|
@@ -2582,10 +2796,11 @@ module Aws::S3
|
|
|
2582
2796
|
end
|
|
2583
2797
|
|
|
2584
2798
|
class UploadPartOutput
|
|
2585
|
-
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")
|
|
2586
2800
|
attr_accessor etag: ::String
|
|
2587
2801
|
attr_accessor checksum_crc32: ::String
|
|
2588
2802
|
attr_accessor checksum_crc32c: ::String
|
|
2803
|
+
attr_accessor checksum_crc64nvme: ::String
|
|
2589
2804
|
attr_accessor checksum_sha1: ::String
|
|
2590
2805
|
attr_accessor checksum_sha256: ::String
|
|
2591
2806
|
attr_accessor sse_customer_algorithm: ::String
|
|
@@ -2601,9 +2816,10 @@ module Aws::S3
|
|
|
2601
2816
|
attr_accessor bucket: ::String
|
|
2602
2817
|
attr_accessor content_length: ::Integer
|
|
2603
2818
|
attr_accessor content_md5: ::String
|
|
2604
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
2819
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
2605
2820
|
attr_accessor checksum_crc32: ::String
|
|
2606
2821
|
attr_accessor checksum_crc32c: ::String
|
|
2822
|
+
attr_accessor checksum_crc64nvme: ::String
|
|
2607
2823
|
attr_accessor checksum_sha1: ::String
|
|
2608
2824
|
attr_accessor checksum_sha256: ::String
|
|
2609
2825
|
attr_accessor key: ::String
|
|
@@ -2648,6 +2864,7 @@ module Aws::S3
|
|
|
2648
2864
|
attr_accessor content_type: ::String
|
|
2649
2865
|
attr_accessor checksum_crc32: ::String
|
|
2650
2866
|
attr_accessor checksum_crc32c: ::String
|
|
2867
|
+
attr_accessor checksum_crc64nvme: ::String
|
|
2651
2868
|
attr_accessor checksum_sha1: ::String
|
|
2652
2869
|
attr_accessor checksum_sha256: ::String
|
|
2653
2870
|
attr_accessor delete_marker: bool
|
|
@@ -2664,11 +2881,11 @@ module Aws::S3
|
|
|
2664
2881
|
attr_accessor replication_status: ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
|
|
2665
2882
|
attr_accessor request_charged: ("requester")
|
|
2666
2883
|
attr_accessor restore: ::String
|
|
2667
|
-
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")
|
|
2668
2885
|
attr_accessor sse_customer_algorithm: ::String
|
|
2669
2886
|
attr_accessor ssekms_key_id: ::String
|
|
2670
2887
|
attr_accessor sse_customer_key_md5: ::String
|
|
2671
|
-
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")
|
|
2672
2889
|
attr_accessor tag_count: ::Integer
|
|
2673
2890
|
attr_accessor version_id: ::String
|
|
2674
2891
|
attr_accessor bucket_key_enabled: bool
|