aws-sdk-s3 1.205.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/bucket.rb +1 -1
- data/lib/aws-sdk-s3/bucket_acl.rb +1 -1
- data/lib/aws-sdk-s3/client.rb +52 -182
- data/lib/aws-sdk-s3/customizations.rb +1 -0
- data/lib/aws-sdk-s3/encryption/client.rb +2 -2
- data/lib/aws-sdk-s3/encryption/default_cipher_provider.rb +2 -0
- data/lib/aws-sdk-s3/encryption/encrypt_handler.rb +2 -0
- data/lib/aws-sdk-s3/encryption/kms_cipher_provider.rb +2 -0
- data/lib/aws-sdk-s3/encryptionV2/client.rb +98 -23
- data/lib/aws-sdk-s3/encryptionV2/decrypt_handler.rb +7 -162
- data/lib/aws-sdk-s3/encryptionV2/decryption.rb +205 -0
- data/lib/aws-sdk-s3/encryptionV2/default_cipher_provider.rb +17 -0
- data/lib/aws-sdk-s3/encryptionV2/encrypt_handler.rb +2 -0
- data/lib/aws-sdk-s3/encryptionV2/io_encrypter.rb +2 -0
- data/lib/aws-sdk-s3/encryptionV2/kms_cipher_provider.rb +8 -0
- data/lib/aws-sdk-s3/encryptionV2/utils.rb +5 -0
- data/lib/aws-sdk-s3/encryptionV3/client.rb +885 -0
- data/lib/aws-sdk-s3/encryptionV3/decrypt_handler.rb +98 -0
- data/lib/aws-sdk-s3/encryptionV3/decryption.rb +244 -0
- data/lib/aws-sdk-s3/encryptionV3/default_cipher_provider.rb +159 -0
- data/lib/aws-sdk-s3/encryptionV3/default_key_provider.rb +35 -0
- data/lib/aws-sdk-s3/encryptionV3/encrypt_handler.rb +98 -0
- data/lib/aws-sdk-s3/encryptionV3/errors.rb +47 -0
- data/lib/aws-sdk-s3/encryptionV3/io_auth_decrypter.rb +60 -0
- data/lib/aws-sdk-s3/encryptionV3/io_decrypter.rb +35 -0
- data/lib/aws-sdk-s3/encryptionV3/io_encrypter.rb +84 -0
- data/lib/aws-sdk-s3/encryptionV3/key_provider.rb +28 -0
- data/lib/aws-sdk-s3/encryptionV3/kms_cipher_provider.rb +159 -0
- data/lib/aws-sdk-s3/encryptionV3/materials.rb +58 -0
- data/lib/aws-sdk-s3/encryptionV3/utils.rb +321 -0
- data/lib/aws-sdk-s3/encryption_v2.rb +1 -0
- data/lib/aws-sdk-s3/encryption_v3.rb +24 -0
- data/lib/aws-sdk-s3/object.rb +4 -4
- data/lib/aws-sdk-s3/object_acl.rb +1 -1
- data/lib/aws-sdk-s3/object_summary.rb +4 -4
- data/lib/aws-sdk-s3/types.rb +23 -102
- data/lib/aws-sdk-s3.rb +1 -1
- data/sig/bucket.rbs +1 -1
- data/sig/client.rbs +11 -11
- data/sig/multipart_upload.rbs +1 -1
- data/sig/object.rbs +5 -5
- data/sig/object_summary.rbs +5 -5
- data/sig/types.rbs +14 -14
- metadata +17 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d8d399e87c3b6a02f60b4fc2efbb7e656af4f8ef66302eec0454129bded2fdb0
|
|
4
|
+
data.tar.gz: 3d348a0ce7abfbc7bfd9210227df82f33d4576f321f9da5374b29f6834e62a38
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 525a8c73faf271316eb39fad4880032687e38fc54f452b733c7f161af4e367bf142c73b7218185f5d335219940bce706a5f9884d0716a388a8289a1ea44150f4
|
|
7
|
+
data.tar.gz: ff3d94155efdef438f2db5f4e2a6126590924fb5b712e74981dd174f2e05a7bebcfb1c23e69f00d1aa84b0a1f20415670a630a93ef142472159ee6d8de20df3b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,21 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.208.0 (2025-12-16)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Updates to the S3 Encryption Client. The V3 S3 Encryption Client now requires key committing algorithm suites by default.
|
|
8
|
+
|
|
9
|
+
1.207.0 (2025-12-15)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - This release adds support for the new optional field 'LifecycleExpirationDate' in S3 Inventory configurations.
|
|
13
|
+
|
|
14
|
+
1.206.0 (2025-12-02)
|
|
15
|
+
------------------
|
|
16
|
+
|
|
17
|
+
* Feature - New S3 Storage Class FSX_ONTAP
|
|
18
|
+
|
|
4
19
|
1.205.0 (2025-11-20)
|
|
5
20
|
------------------
|
|
6
21
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.208.0
|
data/lib/aws-sdk-s3/bucket.rb
CHANGED
|
@@ -545,7 +545,7 @@ module Aws::S3
|
|
|
545
545
|
# "MetadataKey" => "MetadataValue",
|
|
546
546
|
# },
|
|
547
547
|
# server_side_encryption: "AES256", # accepts AES256, aws:fsx, aws:kms, aws:kms:dsse
|
|
548
|
-
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS, GLACIER_IR, SNOW, EXPRESS_ONEZONE, FSX_OPENZFS
|
|
548
|
+
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS, GLACIER_IR, SNOW, EXPRESS_ONEZONE, FSX_OPENZFS, FSX_ONTAP
|
|
549
549
|
# website_redirect_location: "WebsiteRedirectLocation",
|
|
550
550
|
# sse_customer_algorithm: "SSECustomerAlgorithm",
|
|
551
551
|
# sse_customer_key: "SSECustomerKey",
|
data/lib/aws-sdk-s3/client.rb
CHANGED
|
@@ -1308,7 +1308,7 @@ module Aws::S3
|
|
|
1308
1308
|
# (Singapore), Asia Pacific (Sydney), Asia Pacific (Tokyo), Europe
|
|
1309
1309
|
# (Ireland), and South America (São Paulo).
|
|
1310
1310
|
#
|
|
1311
|
-
# <note markdown="1"> You can store individual objects of up to
|
|
1311
|
+
# <note markdown="1"> You can store individual objects of up to 50 TB in Amazon S3. You
|
|
1312
1312
|
# create a copy of your object up to 5 GB in size in a single atomic
|
|
1313
1313
|
# action using this API. However, to copy an object greater than 5 GB,
|
|
1314
1314
|
# you must use the multipart upload Upload Part - Copy (UploadPartCopy)
|
|
@@ -2370,7 +2370,7 @@ module Aws::S3
|
|
|
2370
2370
|
# metadata_directive: "COPY", # accepts COPY, REPLACE
|
|
2371
2371
|
# tagging_directive: "COPY", # accepts COPY, REPLACE
|
|
2372
2372
|
# server_side_encryption: "AES256", # accepts AES256, aws:fsx, aws:kms, aws:kms:dsse
|
|
2373
|
-
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS, GLACIER_IR, SNOW, EXPRESS_ONEZONE, FSX_OPENZFS
|
|
2373
|
+
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS, GLACIER_IR, SNOW, EXPRESS_ONEZONE, FSX_OPENZFS, FSX_ONTAP
|
|
2374
2374
|
# website_redirect_location: "WebsiteRedirectLocation",
|
|
2375
2375
|
# sse_customer_algorithm: "SSECustomerAlgorithm",
|
|
2376
2376
|
# sse_customer_key: "SSECustomerKey",
|
|
@@ -2420,18 +2420,6 @@ module Aws::S3
|
|
|
2420
2420
|
req.send_request(options)
|
|
2421
2421
|
end
|
|
2422
2422
|
|
|
2423
|
-
# End of support notice: As of October 1, 2025, Amazon S3 has
|
|
2424
|
-
# discontinued support for Email Grantee Access Control Lists (ACLs). If
|
|
2425
|
-
# you attempt to use an Email Grantee ACL in a request after October 1,
|
|
2426
|
-
# 2025, the request will receive an `HTTP 405` (Method Not Allowed)
|
|
2427
|
-
# error.
|
|
2428
|
-
#
|
|
2429
|
-
# This change affects the following Amazon Web Services Regions: US
|
|
2430
|
-
# East
|
|
2431
|
-
# (N. Virginia), US West (N. California), US West (Oregon), Asia Pacific
|
|
2432
|
-
# (Singapore), Asia Pacific (Sydney), Asia Pacific (Tokyo), Europe
|
|
2433
|
-
# (Ireland), and South America (São Paulo).
|
|
2434
|
-
#
|
|
2435
2423
|
# <note markdown="1"> This action creates an Amazon S3 bucket. To create an Amazon S3 on
|
|
2436
2424
|
# Outposts bucket, see [ `CreateBucket` ][1].
|
|
2437
2425
|
#
|
|
@@ -3943,7 +3931,7 @@ module Aws::S3
|
|
|
3943
3931
|
# "MetadataKey" => "MetadataValue",
|
|
3944
3932
|
# },
|
|
3945
3933
|
# server_side_encryption: "AES256", # accepts AES256, aws:fsx, aws:kms, aws:kms:dsse
|
|
3946
|
-
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS, GLACIER_IR, SNOW, EXPRESS_ONEZONE, FSX_OPENZFS
|
|
3934
|
+
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS, GLACIER_IR, SNOW, EXPRESS_ONEZONE, FSX_OPENZFS, FSX_ONTAP
|
|
3947
3935
|
# website_redirect_location: "WebsiteRedirectLocation",
|
|
3948
3936
|
# sse_customer_algorithm: "SSECustomerAlgorithm",
|
|
3949
3937
|
# sse_customer_key: "SSECustomerKey",
|
|
@@ -6401,7 +6389,10 @@ module Aws::S3
|
|
|
6401
6389
|
# </note>
|
|
6402
6390
|
#
|
|
6403
6391
|
# Removes the `PublicAccessBlock` configuration for an Amazon S3 bucket.
|
|
6404
|
-
#
|
|
6392
|
+
# This operation removes the bucket-level configuration only. The
|
|
6393
|
+
# effective public access behavior will still be governed by
|
|
6394
|
+
# account-level settings (which may inherit from organization-level
|
|
6395
|
+
# policies). To use this operation, you must have the
|
|
6405
6396
|
# `s3:PutBucketPublicAccessBlock` permission. For more information about
|
|
6406
6397
|
# permissions, see [Permissions Related to Bucket Subresource
|
|
6407
6398
|
# Operations][1] and [Managing Access Permissions to Your Amazon S3
|
|
@@ -6458,16 +6449,13 @@ module Aws::S3
|
|
|
6458
6449
|
end
|
|
6459
6450
|
|
|
6460
6451
|
# Returns the attribute-based access control (ABAC) property of the
|
|
6461
|
-
# general purpose bucket. If
|
|
6462
|
-
# tags
|
|
6463
|
-
# ABAC in general purpose buckets][1].
|
|
6464
|
-
# disabled, you can use tags for cost tracking. For more information,
|
|
6465
|
-
# see [Using tags with S3 general purpose buckets][2].
|
|
6452
|
+
# general purpose bucket. If ABAC is enabled on your bucket, you can use
|
|
6453
|
+
# tags on the bucket for access control. For more information, see
|
|
6454
|
+
# [Enabling ABAC in general purpose buckets][1].
|
|
6466
6455
|
#
|
|
6467
6456
|
#
|
|
6468
6457
|
#
|
|
6469
6458
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/buckets-tagging-enable-abac.html
|
|
6470
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/buckets-tagging.html
|
|
6471
6459
|
#
|
|
6472
6460
|
# @option params [required, String] :bucket
|
|
6473
6461
|
# The name of the general purpose bucket.
|
|
@@ -6600,19 +6588,6 @@ module Aws::S3
|
|
|
6600
6588
|
req.send_request(options)
|
|
6601
6589
|
end
|
|
6602
6590
|
|
|
6603
|
-
# End of support notice: Beginning November 21, 2025, Amazon S3 will
|
|
6604
|
-
# stop returning `DisplayName`. Update your applications to use
|
|
6605
|
-
# canonical IDs (unique identifier for Amazon Web Services accounts),
|
|
6606
|
-
# Amazon Web Services account ID (12 digit identifier) or IAM ARNs (full
|
|
6607
|
-
# resource naming) as a direct replacement of `DisplayName`.
|
|
6608
|
-
#
|
|
6609
|
-
# This change affects the following Amazon Web Services Regions: US
|
|
6610
|
-
# East
|
|
6611
|
-
# (N. Virginia) Region, US West (N. California) Region, US West (Oregon)
|
|
6612
|
-
# Region, Asia Pacific (Singapore) Region, Asia Pacific (Sydney) Region,
|
|
6613
|
-
# Asia Pacific (Tokyo) Region, Europe (Ireland) Region, and South
|
|
6614
|
-
# America (São Paulo) Region.
|
|
6615
|
-
#
|
|
6616
6591
|
# <note markdown="1"> This operation is not supported for directory buckets.
|
|
6617
6592
|
#
|
|
6618
6593
|
# </note>
|
|
@@ -6982,8 +6957,8 @@ module Aws::S3
|
|
|
6982
6957
|
#
|
|
6983
6958
|
#
|
|
6984
6959
|
#
|
|
6985
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/
|
|
6986
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/
|
|
6960
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_ServerSideEncryptionRule.html#AmazonS3-Type-ServerSideEncryptionRule-BucketKeyEnabled
|
|
6961
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_ServerSideEncryptionRule.html#AmazonS3-Type-ServerSideEncryptionRule-BlockedEncryptionTypes
|
|
6987
6962
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/bucket-encryption.html
|
|
6988
6963
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-express-bucket-encryption.html
|
|
6989
6964
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources
|
|
@@ -7220,7 +7195,7 @@ module Aws::S3
|
|
|
7220
7195
|
# resp.inventory_configuration.id #=> String
|
|
7221
7196
|
# resp.inventory_configuration.included_object_versions #=> String, one of "All", "Current"
|
|
7222
7197
|
# resp.inventory_configuration.optional_fields #=> Array
|
|
7223
|
-
# resp.inventory_configuration.optional_fields[0] #=> String, one of "Size", "LastModifiedDate", "StorageClass", "ETag", "IsMultipartUploaded", "ReplicationStatus", "EncryptionStatus", "ObjectLockRetainUntilDate", "ObjectLockMode", "ObjectLockLegalHoldStatus", "IntelligentTieringAccessTier", "BucketKeyStatus", "ChecksumAlgorithm", "ObjectAccessControlList", "ObjectOwner"
|
|
7198
|
+
# resp.inventory_configuration.optional_fields[0] #=> String, one of "Size", "LastModifiedDate", "StorageClass", "ETag", "IsMultipartUploaded", "ReplicationStatus", "EncryptionStatus", "ObjectLockRetainUntilDate", "ObjectLockMode", "ObjectLockLegalHoldStatus", "IntelligentTieringAccessTier", "BucketKeyStatus", "ChecksumAlgorithm", "ObjectAccessControlList", "ObjectOwner", "LifecycleExpirationDate"
|
|
7224
7199
|
# resp.inventory_configuration.schedule.frequency #=> String, one of "Daily", "Weekly"
|
|
7225
7200
|
#
|
|
7226
7201
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/GetBucketInventoryConfiguration AWS API Documentation
|
|
@@ -7655,19 +7630,6 @@ module Aws::S3
|
|
|
7655
7630
|
req.send_request(options)
|
|
7656
7631
|
end
|
|
7657
7632
|
|
|
7658
|
-
# End of support notice: Beginning November 21, 2025, Amazon S3 will
|
|
7659
|
-
# stop returning `DisplayName`. Update your applications to use
|
|
7660
|
-
# canonical IDs (unique identifier for Amazon Web Services accounts),
|
|
7661
|
-
# Amazon Web Services account ID (12 digit identifier) or IAM ARNs (full
|
|
7662
|
-
# resource naming) as a direct replacement of `DisplayName`.
|
|
7663
|
-
#
|
|
7664
|
-
# This change affects the following Amazon Web Services Regions: US
|
|
7665
|
-
# East
|
|
7666
|
-
# (N. Virginia) Region, US West (N. California) Region, US West (Oregon)
|
|
7667
|
-
# Region, Asia Pacific (Singapore) Region, Asia Pacific (Sydney) Region,
|
|
7668
|
-
# Asia Pacific (Tokyo) Region, Europe (Ireland) Region, and South
|
|
7669
|
-
# America (São Paulo) Region.
|
|
7670
|
-
#
|
|
7671
7633
|
# <note markdown="1"> This operation is not supported for directory buckets.
|
|
7672
7634
|
#
|
|
7673
7635
|
# </note>
|
|
@@ -8682,7 +8644,7 @@ module Aws::S3
|
|
|
8682
8644
|
# resp.replication_configuration.rules[0].existing_object_replication.status #=> String, one of "Enabled", "Disabled"
|
|
8683
8645
|
# resp.replication_configuration.rules[0].destination.bucket #=> String
|
|
8684
8646
|
# resp.replication_configuration.rules[0].destination.account #=> String
|
|
8685
|
-
# resp.replication_configuration.rules[0].destination.storage_class #=> String, one of "STANDARD", "REDUCED_REDUNDANCY", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "GLACIER", "DEEP_ARCHIVE", "OUTPOSTS", "GLACIER_IR", "SNOW", "EXPRESS_ONEZONE", "FSX_OPENZFS"
|
|
8647
|
+
# resp.replication_configuration.rules[0].destination.storage_class #=> String, one of "STANDARD", "REDUCED_REDUNDANCY", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "GLACIER", "DEEP_ARCHIVE", "OUTPOSTS", "GLACIER_IR", "SNOW", "EXPRESS_ONEZONE", "FSX_OPENZFS", "FSX_ONTAP"
|
|
8686
8648
|
# resp.replication_configuration.rules[0].destination.access_control_translation.owner #=> String, one of "Destination"
|
|
8687
8649
|
# resp.replication_configuration.rules[0].destination.encryption_configuration.replica_kms_key_id #=> String
|
|
8688
8650
|
# resp.replication_configuration.rules[0].destination.replication_time.status #=> String, one of "Enabled", "Disabled"
|
|
@@ -9697,7 +9659,7 @@ module Aws::S3
|
|
|
9697
9659
|
# resp.sse_customer_key_md5 #=> String
|
|
9698
9660
|
# resp.ssekms_key_id #=> String
|
|
9699
9661
|
# resp.bucket_key_enabled #=> Boolean
|
|
9700
|
-
# resp.storage_class #=> String, one of "STANDARD", "REDUCED_REDUNDANCY", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "GLACIER", "DEEP_ARCHIVE", "OUTPOSTS", "GLACIER_IR", "SNOW", "EXPRESS_ONEZONE", "FSX_OPENZFS"
|
|
9662
|
+
# resp.storage_class #=> String, one of "STANDARD", "REDUCED_REDUNDANCY", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "GLACIER", "DEEP_ARCHIVE", "OUTPOSTS", "GLACIER_IR", "SNOW", "EXPRESS_ONEZONE", "FSX_OPENZFS", "FSX_ONTAP"
|
|
9701
9663
|
# resp.request_charged #=> String, one of "requester"
|
|
9702
9664
|
# resp.replication_status #=> String, one of "COMPLETE", "PENDING", "FAILED", "REPLICA", "COMPLETED"
|
|
9703
9665
|
# resp.parts_count #=> Integer
|
|
@@ -9715,19 +9677,6 @@ module Aws::S3
|
|
|
9715
9677
|
req.send_request(options, &block)
|
|
9716
9678
|
end
|
|
9717
9679
|
|
|
9718
|
-
# End of support notice: Beginning November 21, 2025, Amazon S3 will
|
|
9719
|
-
# stop returning `DisplayName`. Update your applications to use
|
|
9720
|
-
# canonical IDs (unique identifier for Amazon Web Services accounts),
|
|
9721
|
-
# Amazon Web Services account ID (12 digit identifier) or IAM ARNs (full
|
|
9722
|
-
# resource naming) as a direct replacement of `DisplayName`.
|
|
9723
|
-
#
|
|
9724
|
-
# This change affects the following Amazon Web Services Regions: US
|
|
9725
|
-
# East
|
|
9726
|
-
# (N. Virginia) Region, US West (N. California) Region, US West (Oregon)
|
|
9727
|
-
# Region, Asia Pacific (Singapore) Region, Asia Pacific (Sydney) Region,
|
|
9728
|
-
# Asia Pacific (Tokyo) Region, Europe (Ireland) Region, and South
|
|
9729
|
-
# America (São Paulo) Region.
|
|
9730
|
-
#
|
|
9731
9680
|
# <note markdown="1"> This operation is not supported for directory buckets.
|
|
9732
9681
|
#
|
|
9733
9682
|
# </note>
|
|
@@ -10297,7 +10246,7 @@ module Aws::S3
|
|
|
10297
10246
|
# resp.object_parts.parts[0].checksum_crc64nvme #=> String
|
|
10298
10247
|
# resp.object_parts.parts[0].checksum_sha1 #=> String
|
|
10299
10248
|
# resp.object_parts.parts[0].checksum_sha256 #=> String
|
|
10300
|
-
# resp.storage_class #=> String, one of "STANDARD", "REDUCED_REDUNDANCY", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "GLACIER", "DEEP_ARCHIVE", "OUTPOSTS", "GLACIER_IR", "SNOW", "EXPRESS_ONEZONE", "FSX_OPENZFS"
|
|
10249
|
+
# resp.storage_class #=> String, one of "STANDARD", "REDUCED_REDUNDANCY", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "GLACIER", "DEEP_ARCHIVE", "OUTPOSTS", "GLACIER_IR", "SNOW", "EXPRESS_ONEZONE", "FSX_OPENZFS", "FSX_ONTAP"
|
|
10301
10250
|
# resp.object_size #=> Integer
|
|
10302
10251
|
#
|
|
10303
10252
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/GetObjectAttributes AWS API Documentation
|
|
@@ -10875,17 +10824,21 @@ module Aws::S3
|
|
|
10875
10824
|
# </note>
|
|
10876
10825
|
#
|
|
10877
10826
|
# Retrieves the `PublicAccessBlock` configuration for an Amazon S3
|
|
10878
|
-
# bucket.
|
|
10827
|
+
# bucket. This operation returns the bucket-level configuration only. To
|
|
10828
|
+
# understand the effective public access behavior, you must also
|
|
10829
|
+
# consider account-level settings (which may inherit from
|
|
10830
|
+
# organization-level policies). To use this operation, you must have the
|
|
10879
10831
|
# `s3:GetBucketPublicAccessBlock` permission. For more information about
|
|
10880
10832
|
# Amazon S3 permissions, see [Specifying Permissions in a Policy][1].
|
|
10881
10833
|
#
|
|
10882
10834
|
# When Amazon S3 evaluates the `PublicAccessBlock` configuration for a
|
|
10883
10835
|
# bucket or an object, it checks the `PublicAccessBlock` configuration
|
|
10884
10836
|
# for both the bucket (or the bucket that contains the object) and the
|
|
10885
|
-
# bucket owner's account.
|
|
10886
|
-
#
|
|
10887
|
-
#
|
|
10888
|
-
#
|
|
10837
|
+
# bucket owner's account. Account-level settings automatically inherit
|
|
10838
|
+
# from organization-level policies when present. If the
|
|
10839
|
+
# `PublicAccessBlock` settings are different between the bucket and the
|
|
10840
|
+
# account, Amazon S3 uses the most restrictive combination of the
|
|
10841
|
+
# bucket-level and account-level settings.
|
|
10889
10842
|
#
|
|
10890
10843
|
# For more information about when Amazon S3 considers a bucket or an
|
|
10891
10844
|
# object public, see [The Meaning of "Public"][2].
|
|
@@ -11659,7 +11612,7 @@ module Aws::S3
|
|
|
11659
11612
|
# resp.sse_customer_key_md5 #=> String
|
|
11660
11613
|
# resp.ssekms_key_id #=> String
|
|
11661
11614
|
# resp.bucket_key_enabled #=> Boolean
|
|
11662
|
-
# resp.storage_class #=> String, one of "STANDARD", "REDUCED_REDUNDANCY", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "GLACIER", "DEEP_ARCHIVE", "OUTPOSTS", "GLACIER_IR", "SNOW", "EXPRESS_ONEZONE", "FSX_OPENZFS"
|
|
11615
|
+
# resp.storage_class #=> String, one of "STANDARD", "REDUCED_REDUNDANCY", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "GLACIER", "DEEP_ARCHIVE", "OUTPOSTS", "GLACIER_IR", "SNOW", "EXPRESS_ONEZONE", "FSX_OPENZFS", "FSX_ONTAP"
|
|
11663
11616
|
# resp.request_charged #=> String, one of "requester"
|
|
11664
11617
|
# resp.replication_status #=> String, one of "COMPLETE", "PENDING", "FAILED", "REPLICA", "COMPLETED"
|
|
11665
11618
|
# resp.parts_count #=> Integer
|
|
@@ -11982,7 +11935,7 @@ module Aws::S3
|
|
|
11982
11935
|
# resp.inventory_configuration_list[0].id #=> String
|
|
11983
11936
|
# resp.inventory_configuration_list[0].included_object_versions #=> String, one of "All", "Current"
|
|
11984
11937
|
# resp.inventory_configuration_list[0].optional_fields #=> Array
|
|
11985
|
-
# resp.inventory_configuration_list[0].optional_fields[0] #=> String, one of "Size", "LastModifiedDate", "StorageClass", "ETag", "IsMultipartUploaded", "ReplicationStatus", "EncryptionStatus", "ObjectLockRetainUntilDate", "ObjectLockMode", "ObjectLockLegalHoldStatus", "IntelligentTieringAccessTier", "BucketKeyStatus", "ChecksumAlgorithm", "ObjectAccessControlList", "ObjectOwner"
|
|
11938
|
+
# resp.inventory_configuration_list[0].optional_fields[0] #=> String, one of "Size", "LastModifiedDate", "StorageClass", "ETag", "IsMultipartUploaded", "ReplicationStatus", "EncryptionStatus", "ObjectLockRetainUntilDate", "ObjectLockMode", "ObjectLockLegalHoldStatus", "IntelligentTieringAccessTier", "BucketKeyStatus", "ChecksumAlgorithm", "ObjectAccessControlList", "ObjectOwner", "LifecycleExpirationDate"
|
|
11986
11939
|
# resp.inventory_configuration_list[0].schedule.frequency #=> String, one of "Daily", "Weekly"
|
|
11987
11940
|
# resp.is_truncated #=> Boolean
|
|
11988
11941
|
# resp.next_continuation_token #=> String
|
|
@@ -12102,19 +12055,6 @@ module Aws::S3
|
|
|
12102
12055
|
req.send_request(options)
|
|
12103
12056
|
end
|
|
12104
12057
|
|
|
12105
|
-
# End of support notice: Beginning November 21, 2025, Amazon S3 will
|
|
12106
|
-
# stop returning `DisplayName`. Update your applications to use
|
|
12107
|
-
# canonical IDs (unique identifier for Amazon Web Services accounts),
|
|
12108
|
-
# Amazon Web Services account ID (12 digit identifier) or IAM ARNs (full
|
|
12109
|
-
# resource naming) as a direct replacement of `DisplayName`.
|
|
12110
|
-
#
|
|
12111
|
-
# This change affects the following Amazon Web Services Regions: US
|
|
12112
|
-
# East
|
|
12113
|
-
# (N. Virginia) Region, US West (N. California) Region, US West (Oregon)
|
|
12114
|
-
# Region, Asia Pacific (Singapore) Region, Asia Pacific (Sydney) Region,
|
|
12115
|
-
# Asia Pacific (Tokyo) Region, Europe (Ireland) Region, and South
|
|
12116
|
-
# America (São Paulo) Region.
|
|
12117
|
-
#
|
|
12118
12058
|
# <note markdown="1"> This operation is not supported for directory buckets.
|
|
12119
12059
|
#
|
|
12120
12060
|
# </note>
|
|
@@ -12351,19 +12291,6 @@ module Aws::S3
|
|
|
12351
12291
|
req.send_request(options)
|
|
12352
12292
|
end
|
|
12353
12293
|
|
|
12354
|
-
# End of support notice: Beginning November 21, 2025, Amazon S3 will
|
|
12355
|
-
# stop returning `DisplayName`. Update your applications to use
|
|
12356
|
-
# canonical IDs (unique identifier for Amazon Web Services accounts),
|
|
12357
|
-
# Amazon Web Services account ID (12 digit identifier) or IAM ARNs (full
|
|
12358
|
-
# resource naming) as a direct replacement of `DisplayName`.
|
|
12359
|
-
#
|
|
12360
|
-
# This change affects the following Amazon Web Services Regions: US
|
|
12361
|
-
# East
|
|
12362
|
-
# (N. Virginia) Region, US West (N. California) Region, US West (Oregon)
|
|
12363
|
-
# Region, Asia Pacific (Singapore) Region, Asia Pacific (Sydney) Region,
|
|
12364
|
-
# Asia Pacific (Tokyo) Region, Europe (Ireland) Region, and South
|
|
12365
|
-
# America (São Paulo) Region.
|
|
12366
|
-
#
|
|
12367
12294
|
# This operation lists in-progress multipart uploads in a bucket. An
|
|
12368
12295
|
# in-progress multipart upload is a multipart upload that has been
|
|
12369
12296
|
# initiated by the `CreateMultipartUpload` request, but has not yet been
|
|
@@ -12796,7 +12723,7 @@ module Aws::S3
|
|
|
12796
12723
|
# resp.uploads[0].upload_id #=> String
|
|
12797
12724
|
# resp.uploads[0].key #=> String
|
|
12798
12725
|
# resp.uploads[0].initiated #=> Time
|
|
12799
|
-
# resp.uploads[0].storage_class #=> String, one of "STANDARD", "REDUCED_REDUNDANCY", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "GLACIER", "DEEP_ARCHIVE", "OUTPOSTS", "GLACIER_IR", "SNOW", "EXPRESS_ONEZONE", "FSX_OPENZFS"
|
|
12726
|
+
# resp.uploads[0].storage_class #=> String, one of "STANDARD", "REDUCED_REDUNDANCY", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "GLACIER", "DEEP_ARCHIVE", "OUTPOSTS", "GLACIER_IR", "SNOW", "EXPRESS_ONEZONE", "FSX_OPENZFS", "FSX_ONTAP"
|
|
12800
12727
|
# resp.uploads[0].owner.display_name #=> String
|
|
12801
12728
|
# resp.uploads[0].owner.id #=> String
|
|
12802
12729
|
# resp.uploads[0].initiator.id #=> String
|
|
@@ -12817,19 +12744,6 @@ module Aws::S3
|
|
|
12817
12744
|
req.send_request(options)
|
|
12818
12745
|
end
|
|
12819
12746
|
|
|
12820
|
-
# End of support notice: Beginning November 21, 2025, Amazon S3 will
|
|
12821
|
-
# stop returning `DisplayName`. Update your applications to use
|
|
12822
|
-
# canonical IDs (unique identifier for Amazon Web Services accounts),
|
|
12823
|
-
# Amazon Web Services account ID (12 digit identifier) or IAM ARNs (full
|
|
12824
|
-
# resource naming) as a direct replacement of `DisplayName`.
|
|
12825
|
-
#
|
|
12826
|
-
# This change affects the following Amazon Web Services Regions: US
|
|
12827
|
-
# East
|
|
12828
|
-
# (N. Virginia) Region, US West (N. California) Region, US West (Oregon)
|
|
12829
|
-
# Region, Asia Pacific (Singapore) Region, Asia Pacific (Sydney) Region,
|
|
12830
|
-
# Asia Pacific (Tokyo) Region, Europe (Ireland) Region, and South
|
|
12831
|
-
# America (São Paulo) Region.
|
|
12832
|
-
#
|
|
12833
12747
|
# <note markdown="1"> This operation is not supported for directory buckets.
|
|
12834
12748
|
#
|
|
12835
12749
|
# </note>
|
|
@@ -13077,19 +12991,6 @@ module Aws::S3
|
|
|
13077
12991
|
req.send_request(options)
|
|
13078
12992
|
end
|
|
13079
12993
|
|
|
13080
|
-
# End of support notice: Beginning November 21, 2025, Amazon S3 will
|
|
13081
|
-
# stop returning `DisplayName`. Update your applications to use
|
|
13082
|
-
# canonical IDs (unique identifier for Amazon Web Services accounts),
|
|
13083
|
-
# Amazon Web Services account ID (12 digit identifier) or IAM ARNs (full
|
|
13084
|
-
# resource naming) as a direct replacement of `DisplayName`.
|
|
13085
|
-
#
|
|
13086
|
-
# This change affects the following Amazon Web Services Regions: US
|
|
13087
|
-
# East
|
|
13088
|
-
# (N. Virginia) Region, US West (N. California) Region, US West (Oregon)
|
|
13089
|
-
# Region, Asia Pacific (Singapore) Region, Asia Pacific (Sydney) Region,
|
|
13090
|
-
# Asia Pacific (Tokyo) Region, Europe (Ireland) Region, and South
|
|
13091
|
-
# America (São Paulo) Region.
|
|
13092
|
-
#
|
|
13093
12994
|
# <note markdown="1"> This operation is not supported for directory buckets.
|
|
13094
12995
|
#
|
|
13095
12996
|
# </note>
|
|
@@ -13310,7 +13211,7 @@ module Aws::S3
|
|
|
13310
13211
|
# resp.contents[0].checksum_algorithm[0] #=> String, one of "CRC32", "CRC32C", "SHA1", "SHA256", "CRC64NVME"
|
|
13311
13212
|
# resp.contents[0].checksum_type #=> String, one of "COMPOSITE", "FULL_OBJECT"
|
|
13312
13213
|
# resp.contents[0].size #=> Integer
|
|
13313
|
-
# resp.contents[0].storage_class #=> String, one of "STANDARD", "REDUCED_REDUNDANCY", "GLACIER", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "DEEP_ARCHIVE", "OUTPOSTS", "GLACIER_IR", "SNOW", "EXPRESS_ONEZONE", "FSX_OPENZFS"
|
|
13214
|
+
# resp.contents[0].storage_class #=> String, one of "STANDARD", "REDUCED_REDUNDANCY", "GLACIER", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "DEEP_ARCHIVE", "OUTPOSTS", "GLACIER_IR", "SNOW", "EXPRESS_ONEZONE", "FSX_OPENZFS", "FSX_ONTAP"
|
|
13314
13215
|
# resp.contents[0].owner.display_name #=> String
|
|
13315
13216
|
# resp.contents[0].owner.id #=> String
|
|
13316
13217
|
# resp.contents[0].restore_status.is_restore_in_progress #=> Boolean
|
|
@@ -13333,19 +13234,6 @@ module Aws::S3
|
|
|
13333
13234
|
req.send_request(options)
|
|
13334
13235
|
end
|
|
13335
13236
|
|
|
13336
|
-
# End of support notice: Beginning November 21, 2025, Amazon S3 will
|
|
13337
|
-
# stop returning `DisplayName`. Update your applications to use
|
|
13338
|
-
# canonical IDs (unique identifier for Amazon Web Services accounts),
|
|
13339
|
-
# Amazon Web Services account ID (12 digit identifier) or IAM ARNs (full
|
|
13340
|
-
# resource naming) as a direct replacement of `DisplayName`.
|
|
13341
|
-
#
|
|
13342
|
-
# This change affects the following Amazon Web Services Regions: US
|
|
13343
|
-
# East
|
|
13344
|
-
# (N. Virginia) Region, US West (N. California) Region, US West (Oregon)
|
|
13345
|
-
# Region, Asia Pacific (Singapore) Region, Asia Pacific (Sydney) Region,
|
|
13346
|
-
# Asia Pacific (Tokyo) Region, Europe (Ireland) Region, and South
|
|
13347
|
-
# America (São Paulo) Region.
|
|
13348
|
-
#
|
|
13349
13237
|
# Returns some or all (up to 1,000) of the objects in a bucket with each
|
|
13350
13238
|
# request. You can use the request parameters as selection criteria to
|
|
13351
13239
|
# return a subset of the objects in a bucket. A `200 OK` response can
|
|
@@ -13673,7 +13561,7 @@ module Aws::S3
|
|
|
13673
13561
|
# resp.contents[0].checksum_algorithm[0] #=> String, one of "CRC32", "CRC32C", "SHA1", "SHA256", "CRC64NVME"
|
|
13674
13562
|
# resp.contents[0].checksum_type #=> String, one of "COMPOSITE", "FULL_OBJECT"
|
|
13675
13563
|
# resp.contents[0].size #=> Integer
|
|
13676
|
-
# resp.contents[0].storage_class #=> String, one of "STANDARD", "REDUCED_REDUNDANCY", "GLACIER", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "DEEP_ARCHIVE", "OUTPOSTS", "GLACIER_IR", "SNOW", "EXPRESS_ONEZONE", "FSX_OPENZFS"
|
|
13564
|
+
# resp.contents[0].storage_class #=> String, one of "STANDARD", "REDUCED_REDUNDANCY", "GLACIER", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "DEEP_ARCHIVE", "OUTPOSTS", "GLACIER_IR", "SNOW", "EXPRESS_ONEZONE", "FSX_OPENZFS", "FSX_ONTAP"
|
|
13677
13565
|
# resp.contents[0].owner.display_name #=> String
|
|
13678
13566
|
# resp.contents[0].owner.id #=> String
|
|
13679
13567
|
# resp.contents[0].restore_status.is_restore_in_progress #=> Boolean
|
|
@@ -13700,19 +13588,6 @@ module Aws::S3
|
|
|
13700
13588
|
req.send_request(options)
|
|
13701
13589
|
end
|
|
13702
13590
|
|
|
13703
|
-
# End of support notice: Beginning November 21, 2025, Amazon S3 will
|
|
13704
|
-
# stop returning `DisplayName`. Update your applications to use
|
|
13705
|
-
# canonical IDs (unique identifier for Amazon Web Services accounts),
|
|
13706
|
-
# Amazon Web Services account ID (12 digit identifier) or IAM ARNs (full
|
|
13707
|
-
# resource naming) as a direct replacement of `DisplayName`.
|
|
13708
|
-
#
|
|
13709
|
-
# This change affects the following Amazon Web Services Regions: US
|
|
13710
|
-
# East
|
|
13711
|
-
# (N. Virginia) Region, US West (N. California) Region, US West (Oregon)
|
|
13712
|
-
# Region, Asia Pacific (Singapore) Region, Asia Pacific (Sydney) Region,
|
|
13713
|
-
# Asia Pacific (Tokyo) Region, Europe (Ireland) Region, and South
|
|
13714
|
-
# America (São Paulo) Region.
|
|
13715
|
-
#
|
|
13716
13591
|
# Lists the parts that have been uploaded for a specific multipart
|
|
13717
13592
|
# upload.
|
|
13718
13593
|
#
|
|
@@ -14032,7 +13907,7 @@ module Aws::S3
|
|
|
14032
13907
|
# resp.initiator.display_name #=> String
|
|
14033
13908
|
# resp.owner.display_name #=> String
|
|
14034
13909
|
# resp.owner.id #=> String
|
|
14035
|
-
# resp.storage_class #=> String, one of "STANDARD", "REDUCED_REDUNDANCY", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "GLACIER", "DEEP_ARCHIVE", "OUTPOSTS", "GLACIER_IR", "SNOW", "EXPRESS_ONEZONE", "FSX_OPENZFS"
|
|
13910
|
+
# resp.storage_class #=> String, one of "STANDARD", "REDUCED_REDUNDANCY", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "GLACIER", "DEEP_ARCHIVE", "OUTPOSTS", "GLACIER_IR", "SNOW", "EXPRESS_ONEZONE", "FSX_OPENZFS", "FSX_ONTAP"
|
|
14036
13911
|
# resp.request_charged #=> String, one of "requester"
|
|
14037
13912
|
# resp.checksum_algorithm #=> String, one of "CRC32", "CRC32C", "SHA1", "SHA256", "CRC64NVME"
|
|
14038
13913
|
# resp.checksum_type #=> String, one of "COMPOSITE", "FULL_OBJECT"
|
|
@@ -14047,23 +13922,21 @@ module Aws::S3
|
|
|
14047
13922
|
end
|
|
14048
13923
|
|
|
14049
13924
|
# Sets the attribute-based access control (ABAC) property of the general
|
|
14050
|
-
# purpose bucket.
|
|
14051
|
-
#
|
|
14052
|
-
#
|
|
14053
|
-
# actions to manage
|
|
14054
|
-
# [PutBucketTagging][
|
|
14055
|
-
#
|
|
14056
|
-
#
|
|
14057
|
-
# buckets][6].
|
|
13925
|
+
# purpose bucket. You must have `s3:PutBucketABAC` permission to perform
|
|
13926
|
+
# this action. When you enable ABAC, you can use tags for access control
|
|
13927
|
+
# on your buckets. Additionally, when ABAC is enabled, you must use the
|
|
13928
|
+
# [TagResource][1] and [UntagResource][2] actions to manage tags on your
|
|
13929
|
+
# buckets. You can nolonger use the [PutBucketTagging][3] and
|
|
13930
|
+
# [DeleteBucketTagging][4] actions to tag your bucket. For more
|
|
13931
|
+
# information, see [Enabling ABAC in general purpose buckets][5].
|
|
14058
13932
|
#
|
|
14059
13933
|
#
|
|
14060
13934
|
#
|
|
14061
13935
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_TagResource.html
|
|
14062
13936
|
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_UntagResource.html
|
|
14063
|
-
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/
|
|
14064
|
-
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/
|
|
14065
|
-
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/
|
|
14066
|
-
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/buckets-tagging-enable-abac.html
|
|
13937
|
+
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketTagging.html
|
|
13938
|
+
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketTagging.html
|
|
13939
|
+
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/buckets-tagging-enable-abac.html
|
|
14067
13940
|
#
|
|
14068
13941
|
# @option params [required, String] :bucket
|
|
14069
13942
|
# The name of the general purpose bucket.
|
|
@@ -15381,7 +15254,7 @@ module Aws::S3
|
|
|
15381
15254
|
# },
|
|
15382
15255
|
# id: "InventoryId", # required
|
|
15383
15256
|
# included_object_versions: "All", # required, accepts All, Current
|
|
15384
|
-
# optional_fields: ["Size"], # accepts Size, LastModifiedDate, StorageClass, ETag, IsMultipartUploaded, ReplicationStatus, EncryptionStatus, ObjectLockRetainUntilDate, ObjectLockMode, ObjectLockLegalHoldStatus, IntelligentTieringAccessTier, BucketKeyStatus, ChecksumAlgorithm, ObjectAccessControlList, ObjectOwner
|
|
15257
|
+
# optional_fields: ["Size"], # accepts Size, LastModifiedDate, StorageClass, ETag, IsMultipartUploaded, ReplicationStatus, EncryptionStatus, ObjectLockRetainUntilDate, ObjectLockMode, ObjectLockLegalHoldStatus, IntelligentTieringAccessTier, BucketKeyStatus, ChecksumAlgorithm, ObjectAccessControlList, ObjectOwner, LifecycleExpirationDate
|
|
15385
15258
|
# schedule: { # required
|
|
15386
15259
|
# frequency: "Daily", # required, accepts Daily, Weekly
|
|
15387
15260
|
# },
|
|
@@ -16944,7 +16817,7 @@ module Aws::S3
|
|
|
16944
16817
|
# destination: { # required
|
|
16945
16818
|
# bucket: "BucketName", # required
|
|
16946
16819
|
# account: "AccountId",
|
|
16947
|
-
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS, GLACIER_IR, SNOW, EXPRESS_ONEZONE, FSX_OPENZFS
|
|
16820
|
+
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS, GLACIER_IR, SNOW, EXPRESS_ONEZONE, FSX_OPENZFS, FSX_ONTAP
|
|
16948
16821
|
# access_control_translation: {
|
|
16949
16822
|
# owner: "Destination", # required, accepts Destination
|
|
16950
16823
|
# },
|
|
@@ -17094,10 +16967,6 @@ module Aws::S3
|
|
|
17094
16967
|
# for that bucket and must use the [TagResource][2] or
|
|
17095
16968
|
# [UntagResource][3] operations instead.
|
|
17096
16969
|
#
|
|
17097
|
-
# if ABAC is not enabled for the bucket. When you [enable ABAC for a
|
|
17098
|
-
# general purpose bucket][1], you can no longer use this operation for
|
|
17099
|
-
# that bucket and must use [TagResource][2] instead.
|
|
17100
|
-
#
|
|
17101
16970
|
# Use tags to organize your Amazon Web Services bill to reflect your own
|
|
17102
16971
|
# cost structure. To do this, sign up to get your Amazon Web Services
|
|
17103
16972
|
# account bill with tag key values included. Then, to see the cost of
|
|
@@ -18594,7 +18463,7 @@ module Aws::S3
|
|
|
18594
18463
|
# "MetadataKey" => "MetadataValue",
|
|
18595
18464
|
# },
|
|
18596
18465
|
# server_side_encryption: "AES256", # accepts AES256, aws:fsx, aws:kms, aws:kms:dsse
|
|
18597
|
-
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS, GLACIER_IR, SNOW, EXPRESS_ONEZONE, FSX_OPENZFS
|
|
18466
|
+
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS, GLACIER_IR, SNOW, EXPRESS_ONEZONE, FSX_OPENZFS, FSX_ONTAP
|
|
18598
18467
|
# website_redirect_location: "WebsiteRedirectLocation",
|
|
18599
18468
|
# sse_customer_algorithm: "SSECustomerAlgorithm",
|
|
18600
18469
|
# sse_customer_key: "SSECustomerKey",
|
|
@@ -19618,10 +19487,11 @@ module Aws::S3
|
|
|
19618
19487
|
# When Amazon S3 evaluates the `PublicAccessBlock` configuration for a
|
|
19619
19488
|
# bucket or an object, it checks the `PublicAccessBlock` configuration
|
|
19620
19489
|
# for both the bucket (or the bucket that contains the object) and the
|
|
19621
|
-
# bucket owner's account.
|
|
19622
|
-
#
|
|
19623
|
-
#
|
|
19624
|
-
#
|
|
19490
|
+
# bucket owner's account. Account-level settings automatically inherit
|
|
19491
|
+
# from organization-level policies when present. If the
|
|
19492
|
+
# `PublicAccessBlock` configurations are different between the bucket
|
|
19493
|
+
# and the account, Amazon S3 uses the most restrictive combination of
|
|
19494
|
+
# the bucket-level and account-level settings.
|
|
19625
19495
|
#
|
|
19626
19496
|
# For more information about when Amazon S3 considers a bucket or an
|
|
19627
19497
|
# object public, see [The Meaning of "Public"][2].
|
|
@@ -20260,7 +20130,7 @@ module Aws::S3
|
|
|
20260
20130
|
# value: "MetadataValue",
|
|
20261
20131
|
# },
|
|
20262
20132
|
# ],
|
|
20263
|
-
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS, GLACIER_IR, SNOW, EXPRESS_ONEZONE, FSX_OPENZFS
|
|
20133
|
+
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS, GLACIER_IR, SNOW, EXPRESS_ONEZONE, FSX_OPENZFS, FSX_ONTAP
|
|
20264
20134
|
# },
|
|
20265
20135
|
# },
|
|
20266
20136
|
# },
|
|
@@ -22380,7 +22250,7 @@ module Aws::S3
|
|
|
22380
22250
|
# sse_customer_algorithm: "SSECustomerAlgorithm",
|
|
22381
22251
|
# ssekms_key_id: "SSEKMSKeyId",
|
|
22382
22252
|
# sse_customer_key_md5: "SSECustomerKeyMD5",
|
|
22383
|
-
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS, GLACIER_IR, SNOW, EXPRESS_ONEZONE, FSX_OPENZFS
|
|
22253
|
+
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS, GLACIER_IR, SNOW, EXPRESS_ONEZONE, FSX_OPENZFS, FSX_ONTAP
|
|
22384
22254
|
# tag_count: 1,
|
|
22385
22255
|
# version_id: "ObjectVersionId",
|
|
22386
22256
|
# bucket_key_enabled: false,
|
|
@@ -22413,7 +22283,7 @@ module Aws::S3
|
|
|
22413
22283
|
tracer: tracer
|
|
22414
22284
|
)
|
|
22415
22285
|
context[:gem_name] = 'aws-sdk-s3'
|
|
22416
|
-
context[:gem_version] = '1.
|
|
22286
|
+
context[:gem_version] = '1.208.0'
|
|
22417
22287
|
Seahorse::Client::Request.new(handlers, context)
|
|
22418
22288
|
end
|
|
22419
22289
|
|
|
@@ -6,6 +6,7 @@ module Aws
|
|
|
6
6
|
autoload :BucketRegionCache, 'aws-sdk-s3/bucket_region_cache'
|
|
7
7
|
autoload :Encryption, 'aws-sdk-s3/encryption'
|
|
8
8
|
autoload :EncryptionV2, 'aws-sdk-s3/encryption_v2'
|
|
9
|
+
autoload :EncryptionV3, 'aws-sdk-s3/encryption_v3'
|
|
9
10
|
autoload :FilePart, 'aws-sdk-s3/file_part'
|
|
10
11
|
autoload :DefaultExecutor, 'aws-sdk-s3/default_executor'
|
|
11
12
|
autoload :FileUploader, 'aws-sdk-s3/file_uploader'
|
|
@@ -6,9 +6,9 @@ module Aws
|
|
|
6
6
|
module S3
|
|
7
7
|
|
|
8
8
|
# [MAINTENANCE MODE] There is a new version of the Encryption Client.
|
|
9
|
-
# AWS strongly recommends upgrading to the {Aws::S3::
|
|
9
|
+
# AWS strongly recommends upgrading to the {Aws::S3::EncryptionV3::Client},
|
|
10
10
|
# which provides updated data security best practices.
|
|
11
|
-
# See documentation for {Aws::S3::
|
|
11
|
+
# See documentation for {Aws::S3::EncryptionV3::Client}.
|
|
12
12
|
# Provides an encryption client that encrypts and decrypts data client-side,
|
|
13
13
|
# storing the encrypted data in Amazon S3.
|
|
14
14
|
#
|
|
@@ -16,6 +16,8 @@ module Aws
|
|
|
16
16
|
# envelope and encryption cipher.
|
|
17
17
|
def encryption_cipher
|
|
18
18
|
cipher = Utils.aes_encryption_cipher(:CBC)
|
|
19
|
+
##= ../specification/s3-encryption/data-format/content-metadata.md#algorithm-suite-and-message-format-version-compatibility
|
|
20
|
+
##% Objects encrypted with ALG_AES_256_CBC_IV16_NO_KDF MAY use either the V1 or V2 message format version.
|
|
19
21
|
envelope = {
|
|
20
22
|
'x-amz-key' => encode64(encrypt(envelope_key(cipher))),
|
|
21
23
|
'x-amz-iv' => encode64(envelope_iv(cipher)),
|
|
@@ -38,6 +38,8 @@ module Aws
|
|
|
38
38
|
io = StringIO.new(io) if String === io
|
|
39
39
|
context.params[:body] = IOEncrypter.new(cipher, io)
|
|
40
40
|
context.params[:metadata] ||= {}
|
|
41
|
+
##= ../specification/s3-encryption/data-format/content-metadata.md#content-metadata-mapkeys
|
|
42
|
+
##% - The mapkey "x-amz-unencrypted-content-length" SHOULD be present for V1 format objects.
|
|
41
43
|
context.params[:metadata]['x-amz-unencrypted-content-length'] = io.size
|
|
42
44
|
if context.params.delete(:content_md5)
|
|
43
45
|
warn('Setting content_md5 on client side encrypted objects is deprecated')
|
|
@@ -26,6 +26,8 @@ module Aws
|
|
|
26
26
|
end
|
|
27
27
|
cipher = Utils.aes_encryption_cipher(:CBC)
|
|
28
28
|
cipher.key = key_data.plaintext
|
|
29
|
+
##= ../specification/s3-encryption/data-format/content-metadata.md#algorithm-suite-and-message-format-version-compatibility
|
|
30
|
+
##% Objects encrypted with ALG_AES_256_CBC_IV16_NO_KDF MAY use either the V1 or V2 message format version.
|
|
29
31
|
envelope = {
|
|
30
32
|
'x-amz-key-v2' => encode64(key_data.ciphertext_blob),
|
|
31
33
|
'x-amz-iv' => encode64(cipher.iv = cipher.random_iv),
|