aws-sdk-s3 1.191.0 → 1.208.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +114 -0
  3. data/VERSION +1 -1
  4. data/lib/aws-sdk-s3/bucket.rb +33 -1
  5. data/lib/aws-sdk-s3/bucket_acl.rb +1 -1
  6. data/lib/aws-sdk-s3/bucket_versioning.rb +33 -0
  7. data/lib/aws-sdk-s3/client.rb +1503 -392
  8. data/lib/aws-sdk-s3/client_api.rb +248 -0
  9. data/lib/aws-sdk-s3/customizations/object.rb +76 -86
  10. data/lib/aws-sdk-s3/customizations.rb +4 -1
  11. data/lib/aws-sdk-s3/default_executor.rb +103 -0
  12. data/lib/aws-sdk-s3/encryption/client.rb +2 -2
  13. data/lib/aws-sdk-s3/encryption/default_cipher_provider.rb +2 -0
  14. data/lib/aws-sdk-s3/encryption/encrypt_handler.rb +2 -0
  15. data/lib/aws-sdk-s3/encryption/kms_cipher_provider.rb +2 -0
  16. data/lib/aws-sdk-s3/encryptionV2/client.rb +98 -23
  17. data/lib/aws-sdk-s3/encryptionV2/decrypt_handler.rb +7 -162
  18. data/lib/aws-sdk-s3/encryptionV2/decryption.rb +205 -0
  19. data/lib/aws-sdk-s3/encryptionV2/default_cipher_provider.rb +17 -0
  20. data/lib/aws-sdk-s3/encryptionV2/encrypt_handler.rb +2 -0
  21. data/lib/aws-sdk-s3/encryptionV2/io_encrypter.rb +2 -0
  22. data/lib/aws-sdk-s3/encryptionV2/kms_cipher_provider.rb +8 -0
  23. data/lib/aws-sdk-s3/encryptionV2/utils.rb +5 -0
  24. data/lib/aws-sdk-s3/encryptionV3/client.rb +885 -0
  25. data/lib/aws-sdk-s3/encryptionV3/decrypt_handler.rb +98 -0
  26. data/lib/aws-sdk-s3/encryptionV3/decryption.rb +244 -0
  27. data/lib/aws-sdk-s3/encryptionV3/default_cipher_provider.rb +159 -0
  28. data/lib/aws-sdk-s3/encryptionV3/default_key_provider.rb +35 -0
  29. data/lib/aws-sdk-s3/encryptionV3/encrypt_handler.rb +98 -0
  30. data/lib/aws-sdk-s3/encryptionV3/errors.rb +47 -0
  31. data/lib/aws-sdk-s3/encryptionV3/io_auth_decrypter.rb +60 -0
  32. data/lib/aws-sdk-s3/encryptionV3/io_decrypter.rb +35 -0
  33. data/lib/aws-sdk-s3/encryptionV3/io_encrypter.rb +84 -0
  34. data/lib/aws-sdk-s3/encryptionV3/key_provider.rb +28 -0
  35. data/lib/aws-sdk-s3/encryptionV3/kms_cipher_provider.rb +159 -0
  36. data/lib/aws-sdk-s3/encryptionV3/materials.rb +58 -0
  37. data/lib/aws-sdk-s3/encryptionV3/utils.rb +321 -0
  38. data/lib/aws-sdk-s3/encryption_v2.rb +1 -0
  39. data/lib/aws-sdk-s3/encryption_v3.rb +24 -0
  40. data/lib/aws-sdk-s3/endpoint_parameters.rb +17 -17
  41. data/lib/aws-sdk-s3/endpoint_provider.rb +220 -50
  42. data/lib/aws-sdk-s3/endpoints.rb +96 -0
  43. data/lib/aws-sdk-s3/file_downloader.rb +197 -134
  44. data/lib/aws-sdk-s3/file_uploader.rb +9 -13
  45. data/lib/aws-sdk-s3/multipart_download_error.rb +8 -0
  46. data/lib/aws-sdk-s3/multipart_file_uploader.rb +92 -107
  47. data/lib/aws-sdk-s3/multipart_stream_uploader.rb +96 -107
  48. data/lib/aws-sdk-s3/multipart_upload_error.rb +3 -4
  49. data/lib/aws-sdk-s3/object.rb +56 -27
  50. data/lib/aws-sdk-s3/object_acl.rb +1 -1
  51. data/lib/aws-sdk-s3/object_summary.rb +42 -13
  52. data/lib/aws-sdk-s3/object_version.rb +7 -9
  53. data/lib/aws-sdk-s3/plugins/endpoints.rb +1 -1
  54. data/lib/aws-sdk-s3/resource.rb +6 -0
  55. data/lib/aws-sdk-s3/transfer_manager.rb +303 -0
  56. data/lib/aws-sdk-s3/types.rb +1179 -260
  57. data/lib/aws-sdk-s3.rb +1 -1
  58. data/sig/bucket.rbs +11 -2
  59. data/sig/client.rbs +127 -13
  60. data/sig/multipart_upload.rbs +1 -1
  61. data/sig/object.rbs +7 -5
  62. data/sig/object_summary.rbs +7 -5
  63. data/sig/resource.rbs +8 -1
  64. data/sig/types.rbs +173 -14
  65. metadata +22 -3
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
 
@@ -268,12 +279,14 @@ module Aws::S3
268
279
  attr_accessor grant_read: ::String
269
280
  attr_accessor grant_read_acp: ::String
270
281
  attr_accessor grant_write_acp: ::String
282
+ attr_accessor if_match: ::String
283
+ attr_accessor if_none_match: ::String
271
284
  attr_accessor key: ::String
272
285
  attr_accessor metadata: ::Hash[::String, ::String]
273
286
  attr_accessor metadata_directive: ("COPY" | "REPLACE")
274
287
  attr_accessor tagging_directive: ("COPY" | "REPLACE")
275
288
  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")
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")
277
290
  attr_accessor website_redirect_location: ::String
278
291
  attr_accessor sse_customer_algorithm: ::String
279
292
  attr_accessor sse_customer_key: ::String
@@ -321,6 +334,16 @@ module Aws::S3
321
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")
322
335
  attr_accessor location: Types::LocationInfo
323
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
324
347
  SENSITIVE: []
325
348
  end
326
349
 
@@ -335,6 +358,7 @@ module Aws::S3
335
358
 
336
359
  class CreateBucketOutput
337
360
  attr_accessor location: ::String
361
+ attr_accessor bucket_arn: ::String
338
362
  SENSITIVE: []
339
363
  end
340
364
 
@@ -386,7 +410,7 @@ module Aws::S3
386
410
  attr_accessor key: ::String
387
411
  attr_accessor metadata: ::Hash[::String, ::String]
388
412
  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")
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")
390
414
  attr_accessor website_redirect_location: ::String
391
415
  attr_accessor sse_customer_algorithm: ::String
392
416
  attr_accessor sse_customer_key: ::String
@@ -476,6 +500,12 @@ module Aws::S3
476
500
  SENSITIVE: []
477
501
  end
478
502
 
503
+ class DeleteBucketMetadataConfigurationRequest
504
+ attr_accessor bucket: ::String
505
+ attr_accessor expected_bucket_owner: ::String
506
+ SENSITIVE: []
507
+ end
508
+
479
509
  class DeleteBucketMetadataTableConfigurationRequest
480
510
  attr_accessor bucket: ::String
481
511
  attr_accessor expected_bucket_owner: ::String
@@ -608,7 +638,7 @@ module Aws::S3
608
638
  class Destination
609
639
  attr_accessor bucket: ::String
610
640
  attr_accessor account: ::String
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")
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")
612
642
  attr_accessor access_control_translation: Types::AccessControlTranslation
613
643
  attr_accessor encryption_configuration: Types::EncryptionConfiguration
614
644
  attr_accessor replication_time: Types::ReplicationTime
@@ -616,6 +646,13 @@ module Aws::S3
616
646
  SENSITIVE: []
617
647
  end
618
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
+
619
656
  class Encryption
620
657
  attr_accessor encryption_type: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
621
658
  attr_accessor kms_key_id: ::String
@@ -669,6 +706,17 @@ module Aws::S3
669
706
  SENSITIVE: []
670
707
  end
671
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
+
672
720
  class GetBucketAccelerateConfigurationOutput
673
721
  attr_accessor status: ("Enabled" | "Suspended")
674
722
  attr_accessor request_charged: ("requester")
@@ -797,6 +845,22 @@ module Aws::S3
797
845
  SENSITIVE: []
798
846
  end
799
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
+
800
864
  class GetBucketMetadataTableConfigurationOutput
801
865
  attr_accessor get_bucket_metadata_table_configuration_result: Types::GetBucketMetadataTableConfigurationResult
802
866
  SENSITIVE: []
@@ -949,7 +1013,7 @@ module Aws::S3
949
1013
  attr_accessor etag: ::String
950
1014
  attr_accessor checksum: Types::Checksum
951
1015
  attr_accessor object_parts: Types::GetObjectAttributesParts
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")
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")
953
1017
  attr_accessor object_size: ::Integer
954
1018
  SENSITIVE: []
955
1019
  end
@@ -1036,7 +1100,7 @@ module Aws::S3
1036
1100
  attr_accessor sse_customer_key_md5: ::String
1037
1101
  attr_accessor ssekms_key_id: ::String
1038
1102
  attr_accessor bucket_key_enabled: bool
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")
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")
1040
1104
  attr_accessor request_charged: ("requester")
1041
1105
  attr_accessor replication_status: ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
1042
1106
  attr_accessor parts_count: ::Integer
@@ -1147,6 +1211,7 @@ module Aws::S3
1147
1211
  end
1148
1212
 
1149
1213
  class HeadBucketOutput
1214
+ attr_accessor bucket_arn: ::String
1150
1215
  attr_accessor bucket_location_type: ("AvailabilityZone" | "LocalZone")
1151
1216
  attr_accessor bucket_location_name: ::String
1152
1217
  attr_accessor bucket_region: ::String
@@ -1192,7 +1257,7 @@ module Aws::S3
1192
1257
  attr_accessor sse_customer_key_md5: ::String
1193
1258
  attr_accessor ssekms_key_id: ::String
1194
1259
  attr_accessor bucket_key_enabled: bool
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")
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")
1196
1261
  attr_accessor request_charged: ("requester")
1197
1262
  attr_accessor replication_status: ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
1198
1263
  attr_accessor parts_count: ::Integer
@@ -1272,7 +1337,7 @@ module Aws::S3
1272
1337
  end
1273
1338
 
1274
1339
  class InvalidObjectState
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")
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")
1276
1341
  attr_accessor access_tier: ("ARCHIVE_ACCESS" | "DEEP_ARCHIVE_ACCESS")
1277
1342
  SENSITIVE: []
1278
1343
  end
@@ -1289,7 +1354,7 @@ module Aws::S3
1289
1354
  attr_accessor filter: Types::InventoryFilter
1290
1355
  attr_accessor id: ::String
1291
1356
  attr_accessor included_object_versions: ("All" | "Current")
1292
- 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")]
1293
1358
  attr_accessor schedule: Types::InventorySchedule
1294
1359
  SENSITIVE: []
1295
1360
  end
@@ -1324,6 +1389,27 @@ module Aws::S3
1324
1389
  SENSITIVE: []
1325
1390
  end
1326
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
+
1327
1413
  class JSONInput
1328
1414
  attr_accessor type: ("DOCUMENT" | "LINES")
1329
1415
  SENSITIVE: []
@@ -1334,6 +1420,26 @@ module Aws::S3
1334
1420
  SENSITIVE: []
1335
1421
  end
1336
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
+
1337
1443
  class LambdaFunctionConfiguration
1338
1444
  attr_accessor id: ::String
1339
1445
  attr_accessor lambda_function_arn: ::String
@@ -1607,7 +1713,7 @@ module Aws::S3
1607
1713
  attr_accessor parts: ::Array[Types::Part]
1608
1714
  attr_accessor initiator: Types::Initiator
1609
1715
  attr_accessor owner: Types::Owner
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")
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")
1611
1717
  attr_accessor request_charged: ("requester")
1612
1718
  attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1613
1719
  attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
@@ -1642,6 +1748,19 @@ module Aws::S3
1642
1748
  SENSITIVE: []
1643
1749
  end
1644
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
+
1645
1764
  class MetadataEntry
1646
1765
  attr_accessor name: ::String
1647
1766
  attr_accessor value: ::String
@@ -1658,6 +1777,12 @@ module Aws::S3
1658
1777
  SENSITIVE: []
1659
1778
  end
1660
1779
 
1780
+ class MetadataTableEncryptionConfiguration
1781
+ attr_accessor sse_algorithm: ("aws:kms" | "AES256")
1782
+ attr_accessor kms_key_arn: ::String
1783
+ SENSITIVE: []
1784
+ end
1785
+
1661
1786
  class Metrics
1662
1787
  attr_accessor status: ("Enabled" | "Disabled")
1663
1788
  attr_accessor event_threshold: Types::ReplicationTimeValue
@@ -1689,7 +1814,7 @@ module Aws::S3
1689
1814
  attr_accessor upload_id: ::String
1690
1815
  attr_accessor key: ::String
1691
1816
  attr_accessor initiated: ::Time
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")
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")
1693
1818
  attr_accessor owner: Types::Owner
1694
1819
  attr_accessor initiator: Types::Initiator
1695
1820
  attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
@@ -1746,7 +1871,7 @@ module Aws::S3
1746
1871
  attr_accessor checksum_algorithm: ::Array[("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")]
1747
1872
  attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
1748
1873
  attr_accessor size: ::Integer
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")
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")
1750
1875
  attr_accessor owner: Types::Owner
1751
1876
  attr_accessor restore_status: Types::RestoreStatus
1752
1877
  SENSITIVE: []
@@ -1889,6 +2014,15 @@ module Aws::S3
1889
2014
  SENSITIVE: []
1890
2015
  end
1891
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
+
1892
2026
  class PutBucketAccelerateConfigurationRequest
1893
2027
  attr_accessor bucket: ::String
1894
2028
  attr_accessor accelerate_configuration: Types::AccelerateConfiguration
@@ -2182,7 +2316,7 @@ module Aws::S3
2182
2316
  attr_accessor write_offset_bytes: ::Integer
2183
2317
  attr_accessor metadata: ::Hash[::String, ::String]
2184
2318
  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")
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")
2186
2320
  attr_accessor website_redirect_location: ::String
2187
2321
  attr_accessor sse_customer_algorithm: ::String
2188
2322
  attr_accessor sse_customer_key: ::String
@@ -2259,6 +2393,12 @@ module Aws::S3
2259
2393
  SENSITIVE: []
2260
2394
  end
2261
2395
 
2396
+ class RecordExpiration
2397
+ attr_accessor expiration: ("ENABLED" | "DISABLED")
2398
+ attr_accessor days: ::Integer
2399
+ SENSITIVE: []
2400
+ end
2401
+
2262
2402
  class RecordsEvent
2263
2403
  attr_accessor payload: ::IO
2264
2404
  attr_accessor event_type: untyped
@@ -2422,7 +2562,7 @@ module Aws::S3
2422
2562
  attr_accessor access_control_list: ::Array[Types::Grant]
2423
2563
  attr_accessor tagging: Types::Tagging
2424
2564
  attr_accessor user_metadata: ::Array[Types::MetadataEntry]
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")
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")
2426
2566
  SENSITIVE: []
2427
2567
  end
2428
2568
 
@@ -2497,6 +2637,7 @@ module Aws::S3
2497
2637
  class ServerSideEncryptionRule
2498
2638
  attr_accessor apply_server_side_encryption_by_default: Types::ServerSideEncryptionByDefault
2499
2639
  attr_accessor bucket_key_enabled: bool
2640
+ attr_accessor blocked_encryption_types: Types::BlockedEncryptionTypes
2500
2641
  SENSITIVE: []
2501
2642
  end
2502
2643
 
@@ -2601,6 +2742,24 @@ module Aws::S3
2601
2742
  SENSITIVE: []
2602
2743
  end
2603
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
+
2604
2763
  class UploadPartCopyOutput
2605
2764
  attr_accessor copy_source_version_id: ::String
2606
2765
  attr_accessor copy_part_result: Types::CopyPartResult
@@ -2726,7 +2885,7 @@ module Aws::S3
2726
2885
  attr_accessor sse_customer_algorithm: ::String
2727
2886
  attr_accessor ssekms_key_id: ::String
2728
2887
  attr_accessor sse_customer_key_md5: ::String
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")
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")
2730
2889
  attr_accessor tag_count: ::Integer
2731
2890
  attr_accessor version_id: ::String
2732
2891
  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.191.0
4
+ version: 1.208.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.225.0
49
+ version: 3.234.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.225.0
59
+ version: 3.234.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:
@@ -95,6 +95,7 @@ files:
95
95
  - lib/aws-sdk-s3/customizations/object_version.rb
96
96
  - lib/aws-sdk-s3/customizations/types/list_object_versions_output.rb
97
97
  - lib/aws-sdk-s3/customizations/types/permanent_redirect.rb
98
+ - lib/aws-sdk-s3/default_executor.rb
98
99
  - lib/aws-sdk-s3/encryption.rb
99
100
  - lib/aws-sdk-s3/encryption/client.rb
100
101
  - lib/aws-sdk-s3/encryption/decrypt_handler.rb
@@ -111,6 +112,7 @@ files:
111
112
  - lib/aws-sdk-s3/encryption/utils.rb
112
113
  - lib/aws-sdk-s3/encryptionV2/client.rb
113
114
  - lib/aws-sdk-s3/encryptionV2/decrypt_handler.rb
115
+ - lib/aws-sdk-s3/encryptionV2/decryption.rb
114
116
  - lib/aws-sdk-s3/encryptionV2/default_cipher_provider.rb
115
117
  - lib/aws-sdk-s3/encryptionV2/default_key_provider.rb
116
118
  - lib/aws-sdk-s3/encryptionV2/encrypt_handler.rb
@@ -122,7 +124,22 @@ files:
122
124
  - lib/aws-sdk-s3/encryptionV2/kms_cipher_provider.rb
123
125
  - lib/aws-sdk-s3/encryptionV2/materials.rb
124
126
  - lib/aws-sdk-s3/encryptionV2/utils.rb
127
+ - lib/aws-sdk-s3/encryptionV3/client.rb
128
+ - lib/aws-sdk-s3/encryptionV3/decrypt_handler.rb
129
+ - lib/aws-sdk-s3/encryptionV3/decryption.rb
130
+ - lib/aws-sdk-s3/encryptionV3/default_cipher_provider.rb
131
+ - lib/aws-sdk-s3/encryptionV3/default_key_provider.rb
132
+ - lib/aws-sdk-s3/encryptionV3/encrypt_handler.rb
133
+ - lib/aws-sdk-s3/encryptionV3/errors.rb
134
+ - lib/aws-sdk-s3/encryptionV3/io_auth_decrypter.rb
135
+ - lib/aws-sdk-s3/encryptionV3/io_decrypter.rb
136
+ - lib/aws-sdk-s3/encryptionV3/io_encrypter.rb
137
+ - lib/aws-sdk-s3/encryptionV3/key_provider.rb
138
+ - lib/aws-sdk-s3/encryptionV3/kms_cipher_provider.rb
139
+ - lib/aws-sdk-s3/encryptionV3/materials.rb
140
+ - lib/aws-sdk-s3/encryptionV3/utils.rb
125
141
  - lib/aws-sdk-s3/encryption_v2.rb
142
+ - lib/aws-sdk-s3/encryption_v3.rb
126
143
  - lib/aws-sdk-s3/endpoint_parameters.rb
127
144
  - lib/aws-sdk-s3/endpoint_provider.rb
128
145
  - lib/aws-sdk-s3/endpoints.rb
@@ -134,6 +151,7 @@ files:
134
151
  - lib/aws-sdk-s3/file_part.rb
135
152
  - lib/aws-sdk-s3/file_uploader.rb
136
153
  - lib/aws-sdk-s3/legacy_signer.rb
154
+ - lib/aws-sdk-s3/multipart_download_error.rb
137
155
  - lib/aws-sdk-s3/multipart_file_uploader.rb
138
156
  - lib/aws-sdk-s3/multipart_stream_uploader.rb
139
157
  - lib/aws-sdk-s3/multipart_upload.rb
@@ -169,6 +187,7 @@ files:
169
187
  - lib/aws-sdk-s3/presigned_post.rb
170
188
  - lib/aws-sdk-s3/presigner.rb
171
189
  - lib/aws-sdk-s3/resource.rb
190
+ - lib/aws-sdk-s3/transfer_manager.rb
172
191
  - lib/aws-sdk-s3/types.rb
173
192
  - lib/aws-sdk-s3/waiters.rb
174
193
  - sig/bucket.rbs