aws-sdk-s3 1.189.0 → 1.192.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/bucket.rb +43 -4
- data/lib/aws-sdk-s3/client.rb +535 -61
- data/lib/aws-sdk-s3/client_api.rb +46 -0
- data/lib/aws-sdk-s3/endpoints.rb +14 -0
- data/lib/aws-sdk-s3/errors.rb +11 -0
- data/lib/aws-sdk-s3/legacy_signer.rb +2 -1
- data/lib/aws-sdk-s3/object.rb +58 -12
- data/lib/aws-sdk-s3/object_multipart_copier.rb +2 -1
- data/lib/aws-sdk-s3/object_summary.rb +34 -11
- data/lib/aws-sdk-s3/plugins/url_encoded_keys.rb +2 -1
- data/lib/aws-sdk-s3/resource.rb +6 -0
- data/lib/aws-sdk-s3/types.rb +406 -25
- data/lib/aws-sdk-s3.rb +1 -1
- data/sig/bucket.rbs +12 -3
- data/sig/client.rbs +63 -30
- data/sig/errors.rbs +2 -0
- data/sig/multipart_upload.rbs +1 -1
- data/sig/object.rbs +13 -10
- data/sig/object_summary.rbs +9 -9
- data/sig/resource.rbs +7 -1
- data/sig/types.rbs +60 -29
- metadata +1 -1
data/sig/types.rbs
CHANGED
@@ -81,6 +81,7 @@ module Aws::S3
|
|
81
81
|
attr_accessor name: ::String
|
82
82
|
attr_accessor creation_date: ::Time
|
83
83
|
attr_accessor bucket_region: ::String
|
84
|
+
attr_accessor bucket_arn: ::String
|
84
85
|
SENSITIVE: []
|
85
86
|
end
|
86
87
|
|
@@ -177,7 +178,7 @@ module Aws::S3
|
|
177
178
|
attr_accessor checksum_sha1: ::String
|
178
179
|
attr_accessor checksum_sha256: ::String
|
179
180
|
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
180
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
181
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
181
182
|
attr_accessor version_id: ::String
|
182
183
|
attr_accessor ssekms_key_id: ::String
|
183
184
|
attr_accessor bucket_key_enabled: bool
|
@@ -239,7 +240,7 @@ module Aws::S3
|
|
239
240
|
attr_accessor expiration: ::String
|
240
241
|
attr_accessor copy_source_version_id: ::String
|
241
242
|
attr_accessor version_id: ::String
|
242
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
243
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
243
244
|
attr_accessor sse_customer_algorithm: ::String
|
244
245
|
attr_accessor sse_customer_key_md5: ::String
|
245
246
|
attr_accessor ssekms_key_id: ::String
|
@@ -272,8 +273,8 @@ module Aws::S3
|
|
272
273
|
attr_accessor metadata: ::Hash[::String, ::String]
|
273
274
|
attr_accessor metadata_directive: ("COPY" | "REPLACE")
|
274
275
|
attr_accessor tagging_directive: ("COPY" | "REPLACE")
|
275
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
276
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
276
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
277
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
277
278
|
attr_accessor website_redirect_location: ::String
|
278
279
|
attr_accessor sse_customer_algorithm: ::String
|
279
280
|
attr_accessor sse_customer_key: ::String
|
@@ -321,6 +322,7 @@ module Aws::S3
|
|
321
322
|
attr_accessor location_constraint: ("af-south-1" | "ap-east-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-4" | "ap-southeast-5" | "ca-central-1" | "cn-north-1" | "cn-northwest-1" | "EU" | "eu-central-1" | "eu-central-2" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "il-central-1" | "me-central-1" | "me-south-1" | "sa-east-1" | "us-east-2" | "us-gov-east-1" | "us-gov-west-1" | "us-west-1" | "us-west-2")
|
322
323
|
attr_accessor location: Types::LocationInfo
|
323
324
|
attr_accessor bucket: Types::BucketInfo
|
325
|
+
attr_accessor tags: ::Array[Types::Tag]
|
324
326
|
SENSITIVE: []
|
325
327
|
end
|
326
328
|
|
@@ -335,6 +337,7 @@ module Aws::S3
|
|
335
337
|
|
336
338
|
class CreateBucketOutput
|
337
339
|
attr_accessor location: ::String
|
340
|
+
attr_accessor bucket_arn: ::String
|
338
341
|
SENSITIVE: []
|
339
342
|
end
|
340
343
|
|
@@ -358,7 +361,7 @@ module Aws::S3
|
|
358
361
|
attr_accessor bucket: ::String
|
359
362
|
attr_accessor key: ::String
|
360
363
|
attr_accessor upload_id: ::String
|
361
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
364
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
362
365
|
attr_accessor sse_customer_algorithm: ::String
|
363
366
|
attr_accessor sse_customer_key_md5: ::String
|
364
367
|
attr_accessor ssekms_key_id: ::String
|
@@ -385,8 +388,8 @@ module Aws::S3
|
|
385
388
|
attr_accessor grant_write_acp: ::String
|
386
389
|
attr_accessor key: ::String
|
387
390
|
attr_accessor metadata: ::Hash[::String, ::String]
|
388
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
389
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
391
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
392
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
390
393
|
attr_accessor website_redirect_location: ::String
|
391
394
|
attr_accessor sse_customer_algorithm: ::String
|
392
395
|
attr_accessor sse_customer_key: ::String
|
@@ -406,7 +409,7 @@ module Aws::S3
|
|
406
409
|
end
|
407
410
|
|
408
411
|
class CreateSessionOutput
|
409
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
412
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
410
413
|
attr_accessor ssekms_key_id: ::String
|
411
414
|
attr_accessor ssekms_encryption_context: ::String
|
412
415
|
attr_accessor bucket_key_enabled: bool
|
@@ -417,7 +420,7 @@ module Aws::S3
|
|
417
420
|
class CreateSessionRequest
|
418
421
|
attr_accessor session_mode: ("ReadOnly" | "ReadWrite")
|
419
422
|
attr_accessor bucket: ::String
|
420
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
423
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
421
424
|
attr_accessor ssekms_key_id: ::String
|
422
425
|
attr_accessor ssekms_encryption_context: ::String
|
423
426
|
attr_accessor bucket_key_enabled: bool
|
@@ -459,6 +462,7 @@ module Aws::S3
|
|
459
462
|
class DeleteBucketIntelligentTieringConfigurationRequest
|
460
463
|
attr_accessor bucket: ::String
|
461
464
|
attr_accessor id: ::String
|
465
|
+
attr_accessor expected_bucket_owner: ::String
|
462
466
|
SENSITIVE: []
|
463
467
|
end
|
464
468
|
|
@@ -607,7 +611,7 @@ module Aws::S3
|
|
607
611
|
class Destination
|
608
612
|
attr_accessor bucket: ::String
|
609
613
|
attr_accessor account: ::String
|
610
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
614
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
611
615
|
attr_accessor access_control_translation: Types::AccessControlTranslation
|
612
616
|
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
613
617
|
attr_accessor replication_time: Types::ReplicationTime
|
@@ -616,7 +620,7 @@ module Aws::S3
|
|
616
620
|
end
|
617
621
|
|
618
622
|
class Encryption
|
619
|
-
attr_accessor encryption_type: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
623
|
+
attr_accessor encryption_type: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
620
624
|
attr_accessor kms_key_id: ::String
|
621
625
|
attr_accessor kms_context: ::String
|
622
626
|
SENSITIVE: [:kms_key_id]
|
@@ -735,6 +739,7 @@ module Aws::S3
|
|
735
739
|
class GetBucketIntelligentTieringConfigurationRequest
|
736
740
|
attr_accessor bucket: ::String
|
737
741
|
attr_accessor id: ::String
|
742
|
+
attr_accessor expected_bucket_owner: ::String
|
738
743
|
SENSITIVE: []
|
739
744
|
end
|
740
745
|
|
@@ -947,7 +952,7 @@ module Aws::S3
|
|
947
952
|
attr_accessor etag: ::String
|
948
953
|
attr_accessor checksum: Types::Checksum
|
949
954
|
attr_accessor object_parts: Types::GetObjectAttributesParts
|
950
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
955
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
951
956
|
attr_accessor object_size: ::Integer
|
952
957
|
SENSITIVE: []
|
953
958
|
end
|
@@ -1028,13 +1033,13 @@ module Aws::S3
|
|
1028
1033
|
attr_accessor expires: ::Time
|
1029
1034
|
attr_accessor expires_string: ::String
|
1030
1035
|
attr_accessor website_redirect_location: ::String
|
1031
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
1036
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
1032
1037
|
attr_accessor metadata: ::Hash[::String, ::String]
|
1033
1038
|
attr_accessor sse_customer_algorithm: ::String
|
1034
1039
|
attr_accessor sse_customer_key_md5: ::String
|
1035
1040
|
attr_accessor ssekms_key_id: ::String
|
1036
1041
|
attr_accessor bucket_key_enabled: bool
|
1037
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
1042
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
1038
1043
|
attr_accessor request_charged: ("requester")
|
1039
1044
|
attr_accessor replication_status: ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
|
1040
1045
|
attr_accessor parts_count: ::Integer
|
@@ -1145,6 +1150,7 @@ module Aws::S3
|
|
1145
1150
|
end
|
1146
1151
|
|
1147
1152
|
class HeadBucketOutput
|
1153
|
+
attr_accessor bucket_arn: ::String
|
1148
1154
|
attr_accessor bucket_location_type: ("AvailabilityZone" | "LocalZone")
|
1149
1155
|
attr_accessor bucket_location_name: ::String
|
1150
1156
|
attr_accessor bucket_region: ::String
|
@@ -1184,16 +1190,17 @@ module Aws::S3
|
|
1184
1190
|
attr_accessor expires: ::Time
|
1185
1191
|
attr_accessor expires_string: ::String
|
1186
1192
|
attr_accessor website_redirect_location: ::String
|
1187
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
1193
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
1188
1194
|
attr_accessor metadata: ::Hash[::String, ::String]
|
1189
1195
|
attr_accessor sse_customer_algorithm: ::String
|
1190
1196
|
attr_accessor sse_customer_key_md5: ::String
|
1191
1197
|
attr_accessor ssekms_key_id: ::String
|
1192
1198
|
attr_accessor bucket_key_enabled: bool
|
1193
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
1199
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
1194
1200
|
attr_accessor request_charged: ("requester")
|
1195
1201
|
attr_accessor replication_status: ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
|
1196
1202
|
attr_accessor parts_count: ::Integer
|
1203
|
+
attr_accessor tag_count: ::Integer
|
1197
1204
|
attr_accessor object_lock_mode: ("GOVERNANCE" | "COMPLIANCE")
|
1198
1205
|
attr_accessor object_lock_retain_until_date: ::Time
|
1199
1206
|
attr_accessor object_lock_legal_hold_status: ("ON" | "OFF")
|
@@ -1225,6 +1232,9 @@ module Aws::S3
|
|
1225
1232
|
SENSITIVE: [:sse_customer_key]
|
1226
1233
|
end
|
1227
1234
|
|
1235
|
+
class IdempotencyParameterMismatch < Aws::EmptyStructure
|
1236
|
+
end
|
1237
|
+
|
1228
1238
|
class IndexDocument
|
1229
1239
|
attr_accessor suffix: ::String
|
1230
1240
|
SENSITIVE: []
|
@@ -1266,7 +1276,7 @@ module Aws::S3
|
|
1266
1276
|
end
|
1267
1277
|
|
1268
1278
|
class InvalidObjectState
|
1269
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
1279
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
1270
1280
|
attr_accessor access_tier: ("ARCHIVE_ACCESS" | "DEEP_ARCHIVE_ACCESS")
|
1271
1281
|
SENSITIVE: []
|
1272
1282
|
end
|
@@ -1404,6 +1414,7 @@ module Aws::S3
|
|
1404
1414
|
class ListBucketIntelligentTieringConfigurationsRequest
|
1405
1415
|
attr_accessor bucket: ::String
|
1406
1416
|
attr_accessor continuation_token: ::String
|
1417
|
+
attr_accessor expected_bucket_owner: ::String
|
1407
1418
|
SENSITIVE: []
|
1408
1419
|
end
|
1409
1420
|
|
@@ -1600,7 +1611,7 @@ module Aws::S3
|
|
1600
1611
|
attr_accessor parts: ::Array[Types::Part]
|
1601
1612
|
attr_accessor initiator: Types::Initiator
|
1602
1613
|
attr_accessor owner: Types::Owner
|
1603
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
1614
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
1604
1615
|
attr_accessor request_charged: ("requester")
|
1605
1616
|
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1606
1617
|
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
@@ -1682,7 +1693,7 @@ module Aws::S3
|
|
1682
1693
|
attr_accessor upload_id: ::String
|
1683
1694
|
attr_accessor key: ::String
|
1684
1695
|
attr_accessor initiated: ::Time
|
1685
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
1696
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
1686
1697
|
attr_accessor owner: Types::Owner
|
1687
1698
|
attr_accessor initiator: Types::Initiator
|
1688
1699
|
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
@@ -1739,7 +1750,7 @@ module Aws::S3
|
|
1739
1750
|
attr_accessor checksum_algorithm: ::Array[("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")]
|
1740
1751
|
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
1741
1752
|
attr_accessor size: ::Integer
|
1742
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "GLACIER" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
1753
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "GLACIER" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
1743
1754
|
attr_accessor owner: Types::Owner
|
1744
1755
|
attr_accessor restore_status: Types::RestoreStatus
|
1745
1756
|
SENSITIVE: []
|
@@ -1934,6 +1945,7 @@ module Aws::S3
|
|
1934
1945
|
class PutBucketIntelligentTieringConfigurationRequest
|
1935
1946
|
attr_accessor bucket: ::String
|
1936
1947
|
attr_accessor id: ::String
|
1948
|
+
attr_accessor expected_bucket_owner: ::String
|
1937
1949
|
attr_accessor intelligent_tiering_configuration: Types::IntelligentTieringConfiguration
|
1938
1950
|
SENSITIVE: []
|
1939
1951
|
end
|
@@ -2134,7 +2146,7 @@ module Aws::S3
|
|
2134
2146
|
attr_accessor checksum_sha1: ::String
|
2135
2147
|
attr_accessor checksum_sha256: ::String
|
2136
2148
|
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
2137
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
2149
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
2138
2150
|
attr_accessor version_id: ::String
|
2139
2151
|
attr_accessor sse_customer_algorithm: ::String
|
2140
2152
|
attr_accessor sse_customer_key_md5: ::String
|
@@ -2173,8 +2185,8 @@ module Aws::S3
|
|
2173
2185
|
attr_accessor key: ::String
|
2174
2186
|
attr_accessor write_offset_bytes: ::Integer
|
2175
2187
|
attr_accessor metadata: ::Hash[::String, ::String]
|
2176
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
2177
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
2188
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
2189
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
2178
2190
|
attr_accessor website_redirect_location: ::String
|
2179
2191
|
attr_accessor sse_customer_algorithm: ::String
|
2180
2192
|
attr_accessor sse_customer_key: ::String
|
@@ -2272,6 +2284,25 @@ module Aws::S3
|
|
2272
2284
|
SENSITIVE: []
|
2273
2285
|
end
|
2274
2286
|
|
2287
|
+
class RenameObjectOutput < Aws::EmptyStructure
|
2288
|
+
end
|
2289
|
+
|
2290
|
+
class RenameObjectRequest
|
2291
|
+
attr_accessor bucket: ::String
|
2292
|
+
attr_accessor key: ::String
|
2293
|
+
attr_accessor rename_source: ::String
|
2294
|
+
attr_accessor destination_if_match: ::String
|
2295
|
+
attr_accessor destination_if_none_match: ::String
|
2296
|
+
attr_accessor destination_if_modified_since: ::Time
|
2297
|
+
attr_accessor destination_if_unmodified_since: ::Time
|
2298
|
+
attr_accessor source_if_match: ::String
|
2299
|
+
attr_accessor source_if_none_match: ::String
|
2300
|
+
attr_accessor source_if_modified_since: ::Time
|
2301
|
+
attr_accessor source_if_unmodified_since: ::Time
|
2302
|
+
attr_accessor client_token: ::String
|
2303
|
+
SENSITIVE: []
|
2304
|
+
end
|
2305
|
+
|
2275
2306
|
class ReplicaModifications
|
2276
2307
|
attr_accessor status: ("Enabled" | "Disabled")
|
2277
2308
|
SENSITIVE: []
|
@@ -2395,7 +2426,7 @@ module Aws::S3
|
|
2395
2426
|
attr_accessor access_control_list: ::Array[Types::Grant]
|
2396
2427
|
attr_accessor tagging: Types::Tagging
|
2397
2428
|
attr_accessor user_metadata: ::Array[Types::MetadataEntry]
|
2398
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
2429
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
2399
2430
|
SENSITIVE: []
|
2400
2431
|
end
|
2401
2432
|
|
@@ -2457,7 +2488,7 @@ module Aws::S3
|
|
2457
2488
|
end
|
2458
2489
|
|
2459
2490
|
class ServerSideEncryptionByDefault
|
2460
|
-
attr_accessor sse_algorithm: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
2491
|
+
attr_accessor sse_algorithm: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
2461
2492
|
attr_accessor kms_master_key_id: ::String
|
2462
2493
|
SENSITIVE: [:kms_master_key_id]
|
2463
2494
|
end
|
@@ -2577,7 +2608,7 @@ module Aws::S3
|
|
2577
2608
|
class UploadPartCopyOutput
|
2578
2609
|
attr_accessor copy_source_version_id: ::String
|
2579
2610
|
attr_accessor copy_part_result: Types::CopyPartResult
|
2580
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
2611
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
2581
2612
|
attr_accessor sse_customer_algorithm: ::String
|
2582
2613
|
attr_accessor sse_customer_key_md5: ::String
|
2583
2614
|
attr_accessor ssekms_key_id: ::String
|
@@ -2610,7 +2641,7 @@ module Aws::S3
|
|
2610
2641
|
end
|
2611
2642
|
|
2612
2643
|
class UploadPartOutput
|
2613
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
2644
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
2614
2645
|
attr_accessor etag: ::String
|
2615
2646
|
attr_accessor checksum_crc32: ::String
|
2616
2647
|
attr_accessor checksum_crc32c: ::String
|
@@ -2695,11 +2726,11 @@ module Aws::S3
|
|
2695
2726
|
attr_accessor replication_status: ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
|
2696
2727
|
attr_accessor request_charged: ("requester")
|
2697
2728
|
attr_accessor restore: ::String
|
2698
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
2729
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
2699
2730
|
attr_accessor sse_customer_algorithm: ::String
|
2700
2731
|
attr_accessor ssekms_key_id: ::String
|
2701
2732
|
attr_accessor sse_customer_key_md5: ::String
|
2702
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
2733
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
2703
2734
|
attr_accessor tag_count: ::Integer
|
2704
2735
|
attr_accessor version_id: ::String
|
2705
2736
|
attr_accessor bucket_key_enabled: bool
|