aws-sdk-s3 1.189.1 → 1.191.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 857c3ab6cd76b53517cd7d7052de00e1bcc52d32fb2954f0a9a561711e29ef3f
4
- data.tar.gz: 256a5e39e8120853f916c8ddff8fe408eab04a510a876bfa16fd450bbe07de22
3
+ metadata.gz: 36a6478ae4c76eddd30004239c4e34f5e547877585c66d1cb9e8aa2133b092b2
4
+ data.tar.gz: c37c962235875baa974c484948591a512fcaea0b87c6938bbd1d029eec8f9955
5
5
  SHA512:
6
- metadata.gz: e8e312b475f1e62dd64c5af02495367da49382671f99b44337464ffb31950b4f57cba8d122c3b2474f6a2d7720cd6a1dfc6599439c9d0152f4a8deafee5d3970
7
- data.tar.gz: a150937e9dd29846bd7c9a5e1f82892b6bfaa388fd048cb2b3618c6d41384c9148db33866632a14bfcb4655b4f30518ca6415fb5eb8af0de0ee8e50e03d36f69
6
+ metadata.gz: 8417b4c8f3821aa1ed703c8cee292596d537c5dfb6972126e5222bf27f00f66ef1efdfb5d591e20bcc554cf56fbea105baab964c17414ec386bd19d759bb4691
7
+ data.tar.gz: fd8673bf729de6d8e13ae90d555763dd36ec5eaa4538e7856db300a531a17541731eced4a9a9b393d9787a4c6ec4b1c9b6765afbe77bc095775c44f29a2ffd13
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.191.0 (2025-06-25)
5
+ ------------------
6
+
7
+ * Feature - Adds support for additional server-side encryption mode and storage class values for accessing Amazon FSx data from Amazon S3 using S3 Access Points
8
+
9
+ 1.190.0 (2025-06-18)
10
+ ------------------
11
+
12
+ * Feature - Added support for renaming objects within the same bucket using the new RenameObject API.
13
+
4
14
  1.189.1 (2025-06-10)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.189.1
1
+ 1.191.0
@@ -521,8 +521,8 @@ module Aws::S3
521
521
  # metadata: {
522
522
  # "MetadataKey" => "MetadataValue",
523
523
  # },
524
- # server_side_encryption: "AES256", # accepts AES256, aws:kms, aws:kms:dsse
525
- # storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS, GLACIER_IR, SNOW, EXPRESS_ONEZONE
524
+ # server_side_encryption: "AES256", # accepts AES256, aws:fsx, aws:kms, aws:kms:dsse
525
+ # storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS, GLACIER_IR, SNOW, EXPRESS_ONEZONE, FSX_OPENZFS
526
526
  # website_redirect_location: "WebsiteRedirectLocation",
527
527
  # sse_customer_algorithm: "SSECustomerAlgorithm",
528
528
  # sse_customer_key: "SSECustomerKey",
@@ -834,8 +834,7 @@ module Aws::S3
834
834
  # A map of metadata to store with the object in S3.
835
835
  # @option options [String] :server_side_encryption
836
836
  # The server-side encryption algorithm that was used when you store this
837
- # object in Amazon S3 (for example, `AES256`, `aws:kms`,
838
- # `aws:kms:dsse`).
837
+ # object in Amazon S3 or Amazon FSx.
839
838
  #
840
839
  # * <b>General purpose buckets </b> - You have four mutually exclusive
841
840
  # options to protect data using server-side encryption in Amazon S3,
@@ -889,6 +888,14 @@ module Aws::S3
889
888
  #
890
889
  # </note>
891
890
  #
891
+ # * <b>S3 access points for Amazon FSx </b> - When accessing data stored
892
+ # in Amazon FSx file systems using S3 access points, the only valid
893
+ # server side encryption option is `aws:fsx`. All Amazon FSx file
894
+ # systems have encryption configured by default and are encrypted at
895
+ # rest. Data is automatically encrypted before being written to the
896
+ # file system, and automatically decrypted as it is read. These
897
+ # processes are handled transparently by Amazon FSx.
898
+ #
892
899
  #
893
900
  #
894
901
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingServerSideEncryption.html