aws-sdk-s3 1.134.0 → 1.136.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: 4dabfe3971a40ef24074bc1a9597c0e12306eb0e28f2af29e7040e70db38eed3
4
- data.tar.gz: 9faa89158a73a21aa8918581b110791b1c897be0f6598bee61e1848b7a3d1d42
3
+ metadata.gz: 3a563e0602ed3c1393406bb2158324b9571f7c579924f3f349fe237333d218d1
4
+ data.tar.gz: 4559f4a20a3abd9dcddde15fd814012e3874813d2e5cc15cd0066125aea8348f
5
5
  SHA512:
6
- metadata.gz: '0486d1ec2aa3211bd9d6c31ae42c3421be4fdd10d78136f0e76bda94efd7d8f93f52a93670f466629ea7f236ac2267895a78de5ac2a05cb4932de0c562cddfaf'
7
- data.tar.gz: 0a5d34bfda22ee9f2ba916f104303c8ccba03c2b019a020f74b77d2d207814ab95b3a2d5c216f34107bb82f1b705d87d67cbfeb83cb9d0c2a3e69f4b9109d849
6
+ metadata.gz: 03eda70ab440bdf32208be9a6f8bbe5435d77090ef6198129b9cb06b91d2aba9fb5bb3820d53380af6863f4538344d6833d507d5c46b3609d648f2c52a26561c
7
+ data.tar.gz: 43cd7b5022e8602f9590463478de5adf88de7cc31d1d13179551b9434a21fd6150c61009b98796eddc91a772c70e47698e58720f79733ad03ea638c27e052653
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.136.0 (2023-09-26)
5
+ ------------------
6
+
7
+ * Feature - This release adds a new field COMPLETED to the ReplicationStatus Enum. You can now use this field to validate the replication status of S3 objects using the AWS SDK.
8
+
9
+ 1.135.0 (2023-09-20)
10
+ ------------------
11
+
12
+ * Feature - Fix an issue where the SDK can fail to unmarshall response due to NumberFormatException
13
+
4
14
  1.134.0 (2023-08-24)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.134.0
1
+ 1.136.0
@@ -335,9 +335,11 @@ module Aws::S3
335
335
  # @option options [String] :request_payer
336
336
  # Confirms that the requester knows that they will be charged for the
337
337
  # request. Bucket owners need not specify this parameter in their
338
- # requests. For information about downloading objects from Requester
339
- # Pays buckets, see [Downloading Objects in Requester Pays Buckets][1]
340
- # in the *Amazon S3 User Guide*.
338
+ # requests. If either the source or destination Amazon S3 bucket has
339
+ # Requester Pays enabled, the requester will pay for corresponding
340
+ # charges to copy the object. For information about downloading objects
341
+ # from Requester Pays buckets, see [Downloading Objects in Requester
342
+ # Pays Buckets][1] in the *Amazon S3 User Guide*.
341
343
  #
342
344
  #
343
345
  #
@@ -624,10 +626,11 @@ module Aws::S3
624
626
  # ensure that the encryption key was transmitted without error.
625
627
  # @option options [String] :ssekms_key_id
626
628
  # If `x-amz-server-side-encryption` has a valid value of `aws:kms` or
627
- # `aws:kms:dsse`, this header specifies the ID of the Key Management
628
- # Service (KMS) symmetric encryption customer managed key that was used
629
- # for the object. If you specify `x-amz-server-side-encryption:aws:kms`
630
- # or `x-amz-server-side-encryption:aws:kms:dsse`, but do not provide`
629
+ # `aws:kms:dsse`, this header specifies the ID (Key ID, Key ARN, or Key
630
+ # Alias) of the Key Management Service (KMS) symmetric encryption
631
+ # customer managed key that was used for the object. If you specify
632
+ # `x-amz-server-side-encryption:aws:kms` or
633
+ # `x-amz-server-side-encryption:aws:kms:dsse`, but do not provide`
631
634
  # x-amz-server-side-encryption-aws-kms-key-id`, Amazon S3 uses the
632
635
  # Amazon Web Services managed key (`aws/s3`) to protect the data. If the
633
636
  # KMS key does not exist in the same account that's issuing the
@@ -650,9 +653,11 @@ module Aws::S3
650
653
  # @option options [String] :request_payer
651
654
  # Confirms that the requester knows that they will be charged for the
652
655
  # request. Bucket owners need not specify this parameter in their
653
- # requests. For information about downloading objects from Requester
654
- # Pays buckets, see [Downloading Objects in Requester Pays Buckets][1]
655
- # in the *Amazon S3 User Guide*.
656
+ # requests. If either the source or destination Amazon S3 bucket has
657
+ # Requester Pays enabled, the requester will pay for corresponding
658
+ # charges to copy the object. For information about downloading objects
659
+ # from Requester Pays buckets, see [Downloading Objects in Requester
660
+ # Pays Buckets][1] in the *Amazon S3 User Guide*.
656
661
  #
657
662
  #
658
663
  #
@@ -790,9 +795,11 @@ module Aws::S3
790
795
  # @option options [String] :request_payer
791
796
  # Confirms that the requester knows that they will be charged for the
792
797
  # request. Bucket owners need not specify this parameter in their
793
- # requests. For information about downloading objects from Requester
794
- # Pays buckets, see [Downloading Objects in Requester Pays Buckets][1]
795
- # in the *Amazon S3 User Guide*.
798
+ # requests. If either the source or destination Amazon S3 bucket has
799
+ # Requester Pays enabled, the requester will pay for corresponding
800
+ # charges to copy the object. For information about downloading objects
801
+ # from Requester Pays buckets, see [Downloading Objects in Requester
802
+ # Pays Buckets][1] in the *Amazon S3 User Guide*.
796
803
  #
797
804
  #
798
805
  #
@@ -884,9 +891,11 @@ module Aws::S3
884
891
  # @option options [String] :request_payer
885
892
  # Confirms that the requester knows that they will be charged for the
886
893
  # request. Bucket owners need not specify this parameter in their
887
- # requests. For information about downloading objects from Requester
888
- # Pays buckets, see [Downloading Objects in Requester Pays Buckets][1]
889
- # in the *Amazon S3 User Guide*.
894
+ # requests. If either the source or destination Amazon S3 bucket has
895
+ # Requester Pays enabled, the requester will pay for corresponding
896
+ # charges to copy the object. For information about downloading objects
897
+ # from Requester Pays buckets, see [Downloading Objects in Requester
898
+ # Pays Buckets][1] in the *Amazon S3 User Guide*.
890
899
  #
891
900
  #
892
901
  #