aws-sdk-s3 1.188.0 → 1.195.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.
data/sig/resource.rbs CHANGED
@@ -20,6 +20,7 @@ module Aws
20
20
  ?account_id: String,
21
21
  ?active_endpoint_cache: bool,
22
22
  ?adaptive_retry_wait_to_fill: bool,
23
+ ?auth_scheme_preference: Array[String],
23
24
  ?client_side_monitoring: bool,
24
25
  ?client_side_monitoring_client_id: String,
25
26
  ?client_side_monitoring_host: String,
@@ -107,7 +108,13 @@ module Aws
107
108
  bucket: {
108
109
  data_redundancy: ("SingleAvailabilityZone" | "SingleLocalZone")?,
109
110
  type: ("Directory")?
110
- }?
111
+ }?,
112
+ tags: Array[
113
+ {
114
+ key: ::String,
115
+ value: ::String
116
+ },
117
+ ]?
111
118
  },
112
119
  ?grant_full_control: ::String,
113
120
  ?grant_read: ::String,
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,16 @@ 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]
326
+ SENSITIVE: []
327
+ end
328
+
329
+ class CreateBucketMetadataConfigurationRequest
330
+ attr_accessor bucket: ::String
331
+ attr_accessor content_md5: ::String
332
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
333
+ attr_accessor metadata_configuration: Types::MetadataConfiguration
334
+ attr_accessor expected_bucket_owner: ::String
324
335
  SENSITIVE: []
325
336
  end
326
337
 
@@ -335,6 +346,7 @@ module Aws::S3
335
346
 
336
347
  class CreateBucketOutput
337
348
  attr_accessor location: ::String
349
+ attr_accessor bucket_arn: ::String
338
350
  SENSITIVE: []
339
351
  end
340
352
 
@@ -358,7 +370,7 @@ module Aws::S3
358
370
  attr_accessor bucket: ::String
359
371
  attr_accessor key: ::String
360
372
  attr_accessor upload_id: ::String
361
- attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
373
+ attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
362
374
  attr_accessor sse_customer_algorithm: ::String
363
375
  attr_accessor sse_customer_key_md5: ::String
364
376
  attr_accessor ssekms_key_id: ::String
@@ -385,8 +397,8 @@ module Aws::S3
385
397
  attr_accessor grant_write_acp: ::String
386
398
  attr_accessor key: ::String
387
399
  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")
400
+ attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
401
+ attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
390
402
  attr_accessor website_redirect_location: ::String
391
403
  attr_accessor sse_customer_algorithm: ::String
392
404
  attr_accessor sse_customer_key: ::String
@@ -406,7 +418,7 @@ module Aws::S3
406
418
  end
407
419
 
408
420
  class CreateSessionOutput
409
- attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
421
+ attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
410
422
  attr_accessor ssekms_key_id: ::String
411
423
  attr_accessor ssekms_encryption_context: ::String
412
424
  attr_accessor bucket_key_enabled: bool
@@ -417,7 +429,7 @@ module Aws::S3
417
429
  class CreateSessionRequest
418
430
  attr_accessor session_mode: ("ReadOnly" | "ReadWrite")
419
431
  attr_accessor bucket: ::String
420
- attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
432
+ attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
421
433
  attr_accessor ssekms_key_id: ::String
422
434
  attr_accessor ssekms_encryption_context: ::String
423
435
  attr_accessor bucket_key_enabled: bool
@@ -459,6 +471,7 @@ module Aws::S3
459
471
  class DeleteBucketIntelligentTieringConfigurationRequest
460
472
  attr_accessor bucket: ::String
461
473
  attr_accessor id: ::String
474
+ attr_accessor expected_bucket_owner: ::String
462
475
  SENSITIVE: []
463
476
  end
464
477
 
@@ -475,6 +488,12 @@ module Aws::S3
475
488
  SENSITIVE: []
476
489
  end
477
490
 
491
+ class DeleteBucketMetadataConfigurationRequest
492
+ attr_accessor bucket: ::String
493
+ attr_accessor expected_bucket_owner: ::String
494
+ SENSITIVE: []
495
+ end
496
+
478
497
  class DeleteBucketMetadataTableConfigurationRequest
479
498
  attr_accessor bucket: ::String
480
499
  attr_accessor expected_bucket_owner: ::String
@@ -607,7 +626,7 @@ module Aws::S3
607
626
  class Destination
608
627
  attr_accessor bucket: ::String
609
628
  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")
629
+ attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
611
630
  attr_accessor access_control_translation: Types::AccessControlTranslation
612
631
  attr_accessor encryption_configuration: Types::EncryptionConfiguration
613
632
  attr_accessor replication_time: Types::ReplicationTime
@@ -615,8 +634,15 @@ module Aws::S3
615
634
  SENSITIVE: []
616
635
  end
617
636
 
637
+ class DestinationResult
638
+ attr_accessor table_bucket_type: ("aws" | "customer")
639
+ attr_accessor table_bucket_arn: ::String
640
+ attr_accessor table_namespace: ::String
641
+ SENSITIVE: []
642
+ end
643
+
618
644
  class Encryption
619
- attr_accessor encryption_type: ("AES256" | "aws:kms" | "aws:kms:dsse")
645
+ attr_accessor encryption_type: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
620
646
  attr_accessor kms_key_id: ::String
621
647
  attr_accessor kms_context: ::String
622
648
  SENSITIVE: [:kms_key_id]
@@ -735,6 +761,7 @@ module Aws::S3
735
761
  class GetBucketIntelligentTieringConfigurationRequest
736
762
  attr_accessor bucket: ::String
737
763
  attr_accessor id: ::String
764
+ attr_accessor expected_bucket_owner: ::String
738
765
  SENSITIVE: []
739
766
  end
740
767
 
@@ -795,6 +822,22 @@ module Aws::S3
795
822
  SENSITIVE: []
796
823
  end
797
824
 
825
+ class GetBucketMetadataConfigurationOutput
826
+ attr_accessor get_bucket_metadata_configuration_result: Types::GetBucketMetadataConfigurationResult
827
+ SENSITIVE: []
828
+ end
829
+
830
+ class GetBucketMetadataConfigurationRequest
831
+ attr_accessor bucket: ::String
832
+ attr_accessor expected_bucket_owner: ::String
833
+ SENSITIVE: []
834
+ end
835
+
836
+ class GetBucketMetadataConfigurationResult
837
+ attr_accessor metadata_configuration_result: Types::MetadataConfigurationResult
838
+ SENSITIVE: []
839
+ end
840
+
798
841
  class GetBucketMetadataTableConfigurationOutput
799
842
  attr_accessor get_bucket_metadata_table_configuration_result: Types::GetBucketMetadataTableConfigurationResult
800
843
  SENSITIVE: []
@@ -947,7 +990,7 @@ module Aws::S3
947
990
  attr_accessor etag: ::String
948
991
  attr_accessor checksum: Types::Checksum
949
992
  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")
993
+ attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
951
994
  attr_accessor object_size: ::Integer
952
995
  SENSITIVE: []
953
996
  end
@@ -1028,13 +1071,13 @@ module Aws::S3
1028
1071
  attr_accessor expires: ::Time
1029
1072
  attr_accessor expires_string: ::String
1030
1073
  attr_accessor website_redirect_location: ::String
1031
- attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
1074
+ attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
1032
1075
  attr_accessor metadata: ::Hash[::String, ::String]
1033
1076
  attr_accessor sse_customer_algorithm: ::String
1034
1077
  attr_accessor sse_customer_key_md5: ::String
1035
1078
  attr_accessor ssekms_key_id: ::String
1036
1079
  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")
1080
+ attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
1038
1081
  attr_accessor request_charged: ("requester")
1039
1082
  attr_accessor replication_status: ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
1040
1083
  attr_accessor parts_count: ::Integer
@@ -1145,6 +1188,7 @@ module Aws::S3
1145
1188
  end
1146
1189
 
1147
1190
  class HeadBucketOutput
1191
+ attr_accessor bucket_arn: ::String
1148
1192
  attr_accessor bucket_location_type: ("AvailabilityZone" | "LocalZone")
1149
1193
  attr_accessor bucket_location_name: ::String
1150
1194
  attr_accessor bucket_region: ::String
@@ -1184,16 +1228,17 @@ module Aws::S3
1184
1228
  attr_accessor expires: ::Time
1185
1229
  attr_accessor expires_string: ::String
1186
1230
  attr_accessor website_redirect_location: ::String
1187
- attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
1231
+ attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
1188
1232
  attr_accessor metadata: ::Hash[::String, ::String]
1189
1233
  attr_accessor sse_customer_algorithm: ::String
1190
1234
  attr_accessor sse_customer_key_md5: ::String
1191
1235
  attr_accessor ssekms_key_id: ::String
1192
1236
  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")
1237
+ attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
1194
1238
  attr_accessor request_charged: ("requester")
1195
1239
  attr_accessor replication_status: ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
1196
1240
  attr_accessor parts_count: ::Integer
1241
+ attr_accessor tag_count: ::Integer
1197
1242
  attr_accessor object_lock_mode: ("GOVERNANCE" | "COMPLIANCE")
1198
1243
  attr_accessor object_lock_retain_until_date: ::Time
1199
1244
  attr_accessor object_lock_legal_hold_status: ("ON" | "OFF")
@@ -1225,6 +1270,9 @@ module Aws::S3
1225
1270
  SENSITIVE: [:sse_customer_key]
1226
1271
  end
1227
1272
 
1273
+ class IdempotencyParameterMismatch < Aws::EmptyStructure
1274
+ end
1275
+
1228
1276
  class IndexDocument
1229
1277
  attr_accessor suffix: ::String
1230
1278
  SENSITIVE: []
@@ -1266,7 +1314,7 @@ module Aws::S3
1266
1314
  end
1267
1315
 
1268
1316
  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")
1317
+ attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
1270
1318
  attr_accessor access_tier: ("ARCHIVE_ACCESS" | "DEEP_ARCHIVE_ACCESS")
1271
1319
  SENSITIVE: []
1272
1320
  end
@@ -1318,6 +1366,27 @@ module Aws::S3
1318
1366
  SENSITIVE: []
1319
1367
  end
1320
1368
 
1369
+ class InventoryTableConfiguration
1370
+ attr_accessor configuration_state: ("ENABLED" | "DISABLED")
1371
+ attr_accessor encryption_configuration: Types::MetadataTableEncryptionConfiguration
1372
+ SENSITIVE: []
1373
+ end
1374
+
1375
+ class InventoryTableConfigurationResult
1376
+ attr_accessor configuration_state: ("ENABLED" | "DISABLED")
1377
+ attr_accessor table_status: ::String
1378
+ attr_accessor error: Types::ErrorDetails
1379
+ attr_accessor table_name: ::String
1380
+ attr_accessor table_arn: ::String
1381
+ SENSITIVE: []
1382
+ end
1383
+
1384
+ class InventoryTableConfigurationUpdates
1385
+ attr_accessor configuration_state: ("ENABLED" | "DISABLED")
1386
+ attr_accessor encryption_configuration: Types::MetadataTableEncryptionConfiguration
1387
+ SENSITIVE: []
1388
+ end
1389
+
1321
1390
  class JSONInput
1322
1391
  attr_accessor type: ("DOCUMENT" | "LINES")
1323
1392
  SENSITIVE: []
@@ -1328,6 +1397,26 @@ module Aws::S3
1328
1397
  SENSITIVE: []
1329
1398
  end
1330
1399
 
1400
+ class JournalTableConfiguration
1401
+ attr_accessor record_expiration: Types::RecordExpiration
1402
+ attr_accessor encryption_configuration: Types::MetadataTableEncryptionConfiguration
1403
+ SENSITIVE: []
1404
+ end
1405
+
1406
+ class JournalTableConfigurationResult
1407
+ attr_accessor table_status: ::String
1408
+ attr_accessor error: Types::ErrorDetails
1409
+ attr_accessor table_name: ::String
1410
+ attr_accessor table_arn: ::String
1411
+ attr_accessor record_expiration: Types::RecordExpiration
1412
+ SENSITIVE: []
1413
+ end
1414
+
1415
+ class JournalTableConfigurationUpdates
1416
+ attr_accessor record_expiration: Types::RecordExpiration
1417
+ SENSITIVE: []
1418
+ end
1419
+
1331
1420
  class LambdaFunctionConfiguration
1332
1421
  attr_accessor id: ::String
1333
1422
  attr_accessor lambda_function_arn: ::String
@@ -1404,6 +1493,7 @@ module Aws::S3
1404
1493
  class ListBucketIntelligentTieringConfigurationsRequest
1405
1494
  attr_accessor bucket: ::String
1406
1495
  attr_accessor continuation_token: ::String
1496
+ attr_accessor expected_bucket_owner: ::String
1407
1497
  SENSITIVE: []
1408
1498
  end
1409
1499
 
@@ -1600,7 +1690,7 @@ module Aws::S3
1600
1690
  attr_accessor parts: ::Array[Types::Part]
1601
1691
  attr_accessor initiator: Types::Initiator
1602
1692
  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")
1693
+ attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
1604
1694
  attr_accessor request_charged: ("requester")
1605
1695
  attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1606
1696
  attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
@@ -1635,6 +1725,19 @@ module Aws::S3
1635
1725
  SENSITIVE: []
1636
1726
  end
1637
1727
 
1728
+ class MetadataConfiguration
1729
+ attr_accessor journal_table_configuration: Types::JournalTableConfiguration
1730
+ attr_accessor inventory_table_configuration: Types::InventoryTableConfiguration
1731
+ SENSITIVE: []
1732
+ end
1733
+
1734
+ class MetadataConfigurationResult
1735
+ attr_accessor destination_result: Types::DestinationResult
1736
+ attr_accessor journal_table_configuration_result: Types::JournalTableConfigurationResult
1737
+ attr_accessor inventory_table_configuration_result: Types::InventoryTableConfigurationResult
1738
+ SENSITIVE: []
1739
+ end
1740
+
1638
1741
  class MetadataEntry
1639
1742
  attr_accessor name: ::String
1640
1743
  attr_accessor value: ::String
@@ -1651,6 +1754,12 @@ module Aws::S3
1651
1754
  SENSITIVE: []
1652
1755
  end
1653
1756
 
1757
+ class MetadataTableEncryptionConfiguration
1758
+ attr_accessor sse_algorithm: ("aws:kms" | "AES256")
1759
+ attr_accessor kms_key_arn: ::String
1760
+ SENSITIVE: []
1761
+ end
1762
+
1654
1763
  class Metrics
1655
1764
  attr_accessor status: ("Enabled" | "Disabled")
1656
1765
  attr_accessor event_threshold: Types::ReplicationTimeValue
@@ -1682,7 +1791,7 @@ module Aws::S3
1682
1791
  attr_accessor upload_id: ::String
1683
1792
  attr_accessor key: ::String
1684
1793
  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")
1794
+ attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
1686
1795
  attr_accessor owner: Types::Owner
1687
1796
  attr_accessor initiator: Types::Initiator
1688
1797
  attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
@@ -1739,7 +1848,7 @@ module Aws::S3
1739
1848
  attr_accessor checksum_algorithm: ::Array[("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")]
1740
1849
  attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
1741
1850
  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")
1851
+ attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "GLACIER" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
1743
1852
  attr_accessor owner: Types::Owner
1744
1853
  attr_accessor restore_status: Types::RestoreStatus
1745
1854
  SENSITIVE: []
@@ -1934,6 +2043,7 @@ module Aws::S3
1934
2043
  class PutBucketIntelligentTieringConfigurationRequest
1935
2044
  attr_accessor bucket: ::String
1936
2045
  attr_accessor id: ::String
2046
+ attr_accessor expected_bucket_owner: ::String
1937
2047
  attr_accessor intelligent_tiering_configuration: Types::IntelligentTieringConfiguration
1938
2048
  SENSITIVE: []
1939
2049
  end
@@ -2134,7 +2244,7 @@ module Aws::S3
2134
2244
  attr_accessor checksum_sha1: ::String
2135
2245
  attr_accessor checksum_sha256: ::String
2136
2246
  attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
2137
- attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
2247
+ attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
2138
2248
  attr_accessor version_id: ::String
2139
2249
  attr_accessor sse_customer_algorithm: ::String
2140
2250
  attr_accessor sse_customer_key_md5: ::String
@@ -2173,8 +2283,8 @@ module Aws::S3
2173
2283
  attr_accessor key: ::String
2174
2284
  attr_accessor write_offset_bytes: ::Integer
2175
2285
  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")
2286
+ attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
2287
+ attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
2178
2288
  attr_accessor website_redirect_location: ::String
2179
2289
  attr_accessor sse_customer_algorithm: ::String
2180
2290
  attr_accessor sse_customer_key: ::String
@@ -2251,6 +2361,12 @@ module Aws::S3
2251
2361
  SENSITIVE: []
2252
2362
  end
2253
2363
 
2364
+ class RecordExpiration
2365
+ attr_accessor expiration: ("ENABLED" | "DISABLED")
2366
+ attr_accessor days: ::Integer
2367
+ SENSITIVE: []
2368
+ end
2369
+
2254
2370
  class RecordsEvent
2255
2371
  attr_accessor payload: ::IO
2256
2372
  attr_accessor event_type: untyped
@@ -2272,6 +2388,25 @@ module Aws::S3
2272
2388
  SENSITIVE: []
2273
2389
  end
2274
2390
 
2391
+ class RenameObjectOutput < Aws::EmptyStructure
2392
+ end
2393
+
2394
+ class RenameObjectRequest
2395
+ attr_accessor bucket: ::String
2396
+ attr_accessor key: ::String
2397
+ attr_accessor rename_source: ::String
2398
+ attr_accessor destination_if_match: ::String
2399
+ attr_accessor destination_if_none_match: ::String
2400
+ attr_accessor destination_if_modified_since: ::Time
2401
+ attr_accessor destination_if_unmodified_since: ::Time
2402
+ attr_accessor source_if_match: ::String
2403
+ attr_accessor source_if_none_match: ::String
2404
+ attr_accessor source_if_modified_since: ::Time
2405
+ attr_accessor source_if_unmodified_since: ::Time
2406
+ attr_accessor client_token: ::String
2407
+ SENSITIVE: []
2408
+ end
2409
+
2275
2410
  class ReplicaModifications
2276
2411
  attr_accessor status: ("Enabled" | "Disabled")
2277
2412
  SENSITIVE: []
@@ -2395,7 +2530,7 @@ module Aws::S3
2395
2530
  attr_accessor access_control_list: ::Array[Types::Grant]
2396
2531
  attr_accessor tagging: Types::Tagging
2397
2532
  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")
2533
+ attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
2399
2534
  SENSITIVE: []
2400
2535
  end
2401
2536
 
@@ -2457,7 +2592,7 @@ module Aws::S3
2457
2592
  end
2458
2593
 
2459
2594
  class ServerSideEncryptionByDefault
2460
- attr_accessor sse_algorithm: ("AES256" | "aws:kms" | "aws:kms:dsse")
2595
+ attr_accessor sse_algorithm: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
2461
2596
  attr_accessor kms_master_key_id: ::String
2462
2597
  SENSITIVE: [:kms_master_key_id]
2463
2598
  end
@@ -2574,10 +2709,28 @@ module Aws::S3
2574
2709
  SENSITIVE: []
2575
2710
  end
2576
2711
 
2712
+ class UpdateBucketMetadataInventoryTableConfigurationRequest
2713
+ attr_accessor bucket: ::String
2714
+ attr_accessor content_md5: ::String
2715
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
2716
+ attr_accessor inventory_table_configuration: Types::InventoryTableConfigurationUpdates
2717
+ attr_accessor expected_bucket_owner: ::String
2718
+ SENSITIVE: []
2719
+ end
2720
+
2721
+ class UpdateBucketMetadataJournalTableConfigurationRequest
2722
+ attr_accessor bucket: ::String
2723
+ attr_accessor content_md5: ::String
2724
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
2725
+ attr_accessor journal_table_configuration: Types::JournalTableConfigurationUpdates
2726
+ attr_accessor expected_bucket_owner: ::String
2727
+ SENSITIVE: []
2728
+ end
2729
+
2577
2730
  class UploadPartCopyOutput
2578
2731
  attr_accessor copy_source_version_id: ::String
2579
2732
  attr_accessor copy_part_result: Types::CopyPartResult
2580
- attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
2733
+ attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
2581
2734
  attr_accessor sse_customer_algorithm: ::String
2582
2735
  attr_accessor sse_customer_key_md5: ::String
2583
2736
  attr_accessor ssekms_key_id: ::String
@@ -2610,7 +2763,7 @@ module Aws::S3
2610
2763
  end
2611
2764
 
2612
2765
  class UploadPartOutput
2613
- 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")
2614
2767
  attr_accessor etag: ::String
2615
2768
  attr_accessor checksum_crc32: ::String
2616
2769
  attr_accessor checksum_crc32c: ::String
@@ -2695,11 +2848,11 @@ module Aws::S3
2695
2848
  attr_accessor replication_status: ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
2696
2849
  attr_accessor request_charged: ("requester")
2697
2850
  attr_accessor restore: ::String
2698
- attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
2851
+ attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
2699
2852
  attr_accessor sse_customer_algorithm: ::String
2700
2853
  attr_accessor ssekms_key_id: ::String
2701
2854
  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")
2855
+ attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
2703
2856
  attr_accessor tag_count: ::Integer
2704
2857
  attr_accessor version_id: ::String
2705
2858
  attr_accessor bucket_key_enabled: bool
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-s3
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.188.0
4
+ version: 1.195.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -46,7 +46,7 @@ dependencies:
46
46
  version: '3'
47
47
  - - ">="
48
48
  - !ruby/object:Gem::Version
49
- version: 3.224.1
49
+ version: 3.228.0
50
50
  type: :runtime
51
51
  prerelease: false
52
52
  version_requirements: !ruby/object:Gem::Requirement
@@ -56,7 +56,7 @@ dependencies:
56
56
  version: '3'
57
57
  - - ">="
58
58
  - !ruby/object:Gem::Version
59
- version: 3.224.1
59
+ version: 3.228.0
60
60
  description: Official AWS Ruby gem for Amazon Simple Storage Service (Amazon S3).
61
61
  This gem is part of the AWS SDK for Ruby.
62
62
  email:
@@ -210,7 +210,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
210
210
  requirements:
211
211
  - - ">="
212
212
  - !ruby/object:Gem::Version
213
- version: '2.5'
213
+ version: '2.7'
214
214
  required_rubygems_version: !ruby/object:Gem::Requirement
215
215
  requirements:
216
216
  - - ">="