aws-sdk-s3 1.189.1 → 1.191.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/bucket.rb +11 -4
- data/lib/aws-sdk-s3/client.rb +511 -61
- data/lib/aws-sdk-s3/client_api.rb +41 -0
- data/lib/aws-sdk-s3/endpoints.rb +14 -0
- data/lib/aws-sdk-s3/errors.rb +11 -0
- data/lib/aws-sdk-s3/object.rb +58 -12
- data/lib/aws-sdk-s3/object_summary.rb +34 -11
- data/lib/aws-sdk-s3/types.rb +325 -22
- data/lib/aws-sdk-s3.rb +1 -1
- data/sig/bucket.rbs +2 -2
- data/sig/client.rbs +54 -29
- 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/types.rbs +56 -29
- metadata +1 -1
data/sig/types.rbs
CHANGED
@@ -177,7 +177,7 @@ module Aws::S3
|
|
177
177
|
attr_accessor checksum_sha1: ::String
|
178
178
|
attr_accessor checksum_sha256: ::String
|
179
179
|
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
180
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
180
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
181
181
|
attr_accessor version_id: ::String
|
182
182
|
attr_accessor ssekms_key_id: ::String
|
183
183
|
attr_accessor bucket_key_enabled: bool
|
@@ -239,7 +239,7 @@ module Aws::S3
|
|
239
239
|
attr_accessor expiration: ::String
|
240
240
|
attr_accessor copy_source_version_id: ::String
|
241
241
|
attr_accessor version_id: ::String
|
242
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
242
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
243
243
|
attr_accessor sse_customer_algorithm: ::String
|
244
244
|
attr_accessor sse_customer_key_md5: ::String
|
245
245
|
attr_accessor ssekms_key_id: ::String
|
@@ -272,8 +272,8 @@ module Aws::S3
|
|
272
272
|
attr_accessor metadata: ::Hash[::String, ::String]
|
273
273
|
attr_accessor metadata_directive: ("COPY" | "REPLACE")
|
274
274
|
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")
|
275
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "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" | "FSX_OPENZFS")
|
277
277
|
attr_accessor website_redirect_location: ::String
|
278
278
|
attr_accessor sse_customer_algorithm: ::String
|
279
279
|
attr_accessor sse_customer_key: ::String
|
@@ -358,7 +358,7 @@ module Aws::S3
|
|
358
358
|
attr_accessor bucket: ::String
|
359
359
|
attr_accessor key: ::String
|
360
360
|
attr_accessor upload_id: ::String
|
361
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
361
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
362
362
|
attr_accessor sse_customer_algorithm: ::String
|
363
363
|
attr_accessor sse_customer_key_md5: ::String
|
364
364
|
attr_accessor ssekms_key_id: ::String
|
@@ -385,8 +385,8 @@ module Aws::S3
|
|
385
385
|
attr_accessor grant_write_acp: ::String
|
386
386
|
attr_accessor key: ::String
|
387
387
|
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")
|
388
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "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" | "FSX_OPENZFS")
|
390
390
|
attr_accessor website_redirect_location: ::String
|
391
391
|
attr_accessor sse_customer_algorithm: ::String
|
392
392
|
attr_accessor sse_customer_key: ::String
|
@@ -406,7 +406,7 @@ module Aws::S3
|
|
406
406
|
end
|
407
407
|
|
408
408
|
class CreateSessionOutput
|
409
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
409
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
410
410
|
attr_accessor ssekms_key_id: ::String
|
411
411
|
attr_accessor ssekms_encryption_context: ::String
|
412
412
|
attr_accessor bucket_key_enabled: bool
|
@@ -417,7 +417,7 @@ module Aws::S3
|
|
417
417
|
class CreateSessionRequest
|
418
418
|
attr_accessor session_mode: ("ReadOnly" | "ReadWrite")
|
419
419
|
attr_accessor bucket: ::String
|
420
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
420
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
421
421
|
attr_accessor ssekms_key_id: ::String
|
422
422
|
attr_accessor ssekms_encryption_context: ::String
|
423
423
|
attr_accessor bucket_key_enabled: bool
|
@@ -459,6 +459,7 @@ module Aws::S3
|
|
459
459
|
class DeleteBucketIntelligentTieringConfigurationRequest
|
460
460
|
attr_accessor bucket: ::String
|
461
461
|
attr_accessor id: ::String
|
462
|
+
attr_accessor expected_bucket_owner: ::String
|
462
463
|
SENSITIVE: []
|
463
464
|
end
|
464
465
|
|
@@ -607,7 +608,7 @@ module Aws::S3
|
|
607
608
|
class Destination
|
608
609
|
attr_accessor bucket: ::String
|
609
610
|
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")
|
611
|
+
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
612
|
attr_accessor access_control_translation: Types::AccessControlTranslation
|
612
613
|
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
613
614
|
attr_accessor replication_time: Types::ReplicationTime
|
@@ -616,7 +617,7 @@ module Aws::S3
|
|
616
617
|
end
|
617
618
|
|
618
619
|
class Encryption
|
619
|
-
attr_accessor encryption_type: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
620
|
+
attr_accessor encryption_type: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
620
621
|
attr_accessor kms_key_id: ::String
|
621
622
|
attr_accessor kms_context: ::String
|
622
623
|
SENSITIVE: [:kms_key_id]
|
@@ -735,6 +736,7 @@ module Aws::S3
|
|
735
736
|
class GetBucketIntelligentTieringConfigurationRequest
|
736
737
|
attr_accessor bucket: ::String
|
737
738
|
attr_accessor id: ::String
|
739
|
+
attr_accessor expected_bucket_owner: ::String
|
738
740
|
SENSITIVE: []
|
739
741
|
end
|
740
742
|
|
@@ -947,7 +949,7 @@ module Aws::S3
|
|
947
949
|
attr_accessor etag: ::String
|
948
950
|
attr_accessor checksum: Types::Checksum
|
949
951
|
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")
|
952
|
+
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
953
|
attr_accessor object_size: ::Integer
|
952
954
|
SENSITIVE: []
|
953
955
|
end
|
@@ -1028,13 +1030,13 @@ module Aws::S3
|
|
1028
1030
|
attr_accessor expires: ::Time
|
1029
1031
|
attr_accessor expires_string: ::String
|
1030
1032
|
attr_accessor website_redirect_location: ::String
|
1031
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
1033
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
1032
1034
|
attr_accessor metadata: ::Hash[::String, ::String]
|
1033
1035
|
attr_accessor sse_customer_algorithm: ::String
|
1034
1036
|
attr_accessor sse_customer_key_md5: ::String
|
1035
1037
|
attr_accessor ssekms_key_id: ::String
|
1036
1038
|
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")
|
1039
|
+
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
1040
|
attr_accessor request_charged: ("requester")
|
1039
1041
|
attr_accessor replication_status: ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
|
1040
1042
|
attr_accessor parts_count: ::Integer
|
@@ -1184,16 +1186,17 @@ module Aws::S3
|
|
1184
1186
|
attr_accessor expires: ::Time
|
1185
1187
|
attr_accessor expires_string: ::String
|
1186
1188
|
attr_accessor website_redirect_location: ::String
|
1187
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
1189
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
1188
1190
|
attr_accessor metadata: ::Hash[::String, ::String]
|
1189
1191
|
attr_accessor sse_customer_algorithm: ::String
|
1190
1192
|
attr_accessor sse_customer_key_md5: ::String
|
1191
1193
|
attr_accessor ssekms_key_id: ::String
|
1192
1194
|
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")
|
1195
|
+
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
1196
|
attr_accessor request_charged: ("requester")
|
1195
1197
|
attr_accessor replication_status: ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
|
1196
1198
|
attr_accessor parts_count: ::Integer
|
1199
|
+
attr_accessor tag_count: ::Integer
|
1197
1200
|
attr_accessor object_lock_mode: ("GOVERNANCE" | "COMPLIANCE")
|
1198
1201
|
attr_accessor object_lock_retain_until_date: ::Time
|
1199
1202
|
attr_accessor object_lock_legal_hold_status: ("ON" | "OFF")
|
@@ -1225,6 +1228,9 @@ module Aws::S3
|
|
1225
1228
|
SENSITIVE: [:sse_customer_key]
|
1226
1229
|
end
|
1227
1230
|
|
1231
|
+
class IdempotencyParameterMismatch < Aws::EmptyStructure
|
1232
|
+
end
|
1233
|
+
|
1228
1234
|
class IndexDocument
|
1229
1235
|
attr_accessor suffix: ::String
|
1230
1236
|
SENSITIVE: []
|
@@ -1266,7 +1272,7 @@ module Aws::S3
|
|
1266
1272
|
end
|
1267
1273
|
|
1268
1274
|
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")
|
1275
|
+
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
1276
|
attr_accessor access_tier: ("ARCHIVE_ACCESS" | "DEEP_ARCHIVE_ACCESS")
|
1271
1277
|
SENSITIVE: []
|
1272
1278
|
end
|
@@ -1404,6 +1410,7 @@ module Aws::S3
|
|
1404
1410
|
class ListBucketIntelligentTieringConfigurationsRequest
|
1405
1411
|
attr_accessor bucket: ::String
|
1406
1412
|
attr_accessor continuation_token: ::String
|
1413
|
+
attr_accessor expected_bucket_owner: ::String
|
1407
1414
|
SENSITIVE: []
|
1408
1415
|
end
|
1409
1416
|
|
@@ -1600,7 +1607,7 @@ module Aws::S3
|
|
1600
1607
|
attr_accessor parts: ::Array[Types::Part]
|
1601
1608
|
attr_accessor initiator: Types::Initiator
|
1602
1609
|
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")
|
1610
|
+
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
1611
|
attr_accessor request_charged: ("requester")
|
1605
1612
|
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1606
1613
|
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
@@ -1682,7 +1689,7 @@ module Aws::S3
|
|
1682
1689
|
attr_accessor upload_id: ::String
|
1683
1690
|
attr_accessor key: ::String
|
1684
1691
|
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")
|
1692
|
+
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
1693
|
attr_accessor owner: Types::Owner
|
1687
1694
|
attr_accessor initiator: Types::Initiator
|
1688
1695
|
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
@@ -1739,7 +1746,7 @@ module Aws::S3
|
|
1739
1746
|
attr_accessor checksum_algorithm: ::Array[("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")]
|
1740
1747
|
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
1741
1748
|
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")
|
1749
|
+
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
1750
|
attr_accessor owner: Types::Owner
|
1744
1751
|
attr_accessor restore_status: Types::RestoreStatus
|
1745
1752
|
SENSITIVE: []
|
@@ -1934,6 +1941,7 @@ module Aws::S3
|
|
1934
1941
|
class PutBucketIntelligentTieringConfigurationRequest
|
1935
1942
|
attr_accessor bucket: ::String
|
1936
1943
|
attr_accessor id: ::String
|
1944
|
+
attr_accessor expected_bucket_owner: ::String
|
1937
1945
|
attr_accessor intelligent_tiering_configuration: Types::IntelligentTieringConfiguration
|
1938
1946
|
SENSITIVE: []
|
1939
1947
|
end
|
@@ -2134,7 +2142,7 @@ module Aws::S3
|
|
2134
2142
|
attr_accessor checksum_sha1: ::String
|
2135
2143
|
attr_accessor checksum_sha256: ::String
|
2136
2144
|
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
2137
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
2145
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
2138
2146
|
attr_accessor version_id: ::String
|
2139
2147
|
attr_accessor sse_customer_algorithm: ::String
|
2140
2148
|
attr_accessor sse_customer_key_md5: ::String
|
@@ -2173,8 +2181,8 @@ module Aws::S3
|
|
2173
2181
|
attr_accessor key: ::String
|
2174
2182
|
attr_accessor write_offset_bytes: ::Integer
|
2175
2183
|
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")
|
2184
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
2185
|
+
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
2186
|
attr_accessor website_redirect_location: ::String
|
2179
2187
|
attr_accessor sse_customer_algorithm: ::String
|
2180
2188
|
attr_accessor sse_customer_key: ::String
|
@@ -2272,6 +2280,25 @@ module Aws::S3
|
|
2272
2280
|
SENSITIVE: []
|
2273
2281
|
end
|
2274
2282
|
|
2283
|
+
class RenameObjectOutput < Aws::EmptyStructure
|
2284
|
+
end
|
2285
|
+
|
2286
|
+
class RenameObjectRequest
|
2287
|
+
attr_accessor bucket: ::String
|
2288
|
+
attr_accessor key: ::String
|
2289
|
+
attr_accessor rename_source: ::String
|
2290
|
+
attr_accessor destination_if_match: ::String
|
2291
|
+
attr_accessor destination_if_none_match: ::String
|
2292
|
+
attr_accessor destination_if_modified_since: ::Time
|
2293
|
+
attr_accessor destination_if_unmodified_since: ::Time
|
2294
|
+
attr_accessor source_if_match: ::String
|
2295
|
+
attr_accessor source_if_none_match: ::String
|
2296
|
+
attr_accessor source_if_modified_since: ::Time
|
2297
|
+
attr_accessor source_if_unmodified_since: ::Time
|
2298
|
+
attr_accessor client_token: ::String
|
2299
|
+
SENSITIVE: []
|
2300
|
+
end
|
2301
|
+
|
2275
2302
|
class ReplicaModifications
|
2276
2303
|
attr_accessor status: ("Enabled" | "Disabled")
|
2277
2304
|
SENSITIVE: []
|
@@ -2395,7 +2422,7 @@ module Aws::S3
|
|
2395
2422
|
attr_accessor access_control_list: ::Array[Types::Grant]
|
2396
2423
|
attr_accessor tagging: Types::Tagging
|
2397
2424
|
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")
|
2425
|
+
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
2426
|
SENSITIVE: []
|
2400
2427
|
end
|
2401
2428
|
|
@@ -2457,7 +2484,7 @@ module Aws::S3
|
|
2457
2484
|
end
|
2458
2485
|
|
2459
2486
|
class ServerSideEncryptionByDefault
|
2460
|
-
attr_accessor sse_algorithm: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
2487
|
+
attr_accessor sse_algorithm: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
2461
2488
|
attr_accessor kms_master_key_id: ::String
|
2462
2489
|
SENSITIVE: [:kms_master_key_id]
|
2463
2490
|
end
|
@@ -2577,7 +2604,7 @@ module Aws::S3
|
|
2577
2604
|
class UploadPartCopyOutput
|
2578
2605
|
attr_accessor copy_source_version_id: ::String
|
2579
2606
|
attr_accessor copy_part_result: Types::CopyPartResult
|
2580
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
2607
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
2581
2608
|
attr_accessor sse_customer_algorithm: ::String
|
2582
2609
|
attr_accessor sse_customer_key_md5: ::String
|
2583
2610
|
attr_accessor ssekms_key_id: ::String
|
@@ -2610,7 +2637,7 @@ module Aws::S3
|
|
2610
2637
|
end
|
2611
2638
|
|
2612
2639
|
class UploadPartOutput
|
2613
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
2640
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
2614
2641
|
attr_accessor etag: ::String
|
2615
2642
|
attr_accessor checksum_crc32: ::String
|
2616
2643
|
attr_accessor checksum_crc32c: ::String
|
@@ -2695,11 +2722,11 @@ module Aws::S3
|
|
2695
2722
|
attr_accessor replication_status: ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
|
2696
2723
|
attr_accessor request_charged: ("requester")
|
2697
2724
|
attr_accessor restore: ::String
|
2698
|
-
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
2725
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
2699
2726
|
attr_accessor sse_customer_algorithm: ::String
|
2700
2727
|
attr_accessor ssekms_key_id: ::String
|
2701
2728
|
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")
|
2729
|
+
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
2730
|
attr_accessor tag_count: ::Integer
|
2704
2731
|
attr_accessor version_id: ::String
|
2705
2732
|
attr_accessor bucket_key_enabled: bool
|