aws-sdk-s3 1.133.0 → 1.135.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 04f11cfde483787571492064565bb589b16323f4bb7f33f5a7507b993f6cead3
4
- data.tar.gz: 1dd900a34a20b97fb82c41407ca12c40d33397fb14e29678e0f7e3b0a1e5b77c
3
+ metadata.gz: b4312762a051a1316d3e9bf604cc515013d79ab8d69c40f3afdd09db961abb0d
4
+ data.tar.gz: 33bbdef2172c9a372528535cac262ba397ce074f8a6b8e66e3fc82c09d37955c
5
5
  SHA512:
6
- metadata.gz: 745b68d37b0845463f3c2a1cfdb29e8833bd0d723e31a1071c1f3936f095e4c735c909573c8df49f077b3f56dfa13f9e45552c68d7e5a5c0718b67d3f08418e2
7
- data.tar.gz: f995dde0e5628863ab664b36a4db27a23e8d68827aab268fecacfa217a104f1bb3cfd67e84bf6729e52544d9015fd3c64765a53fe0758647e5904c1f104235e1
6
+ metadata.gz: 923d86f0eef2170067b2b0d943ca902e1b007ce1cf4d917f7dc6cf320b7b7ec07901e6c8246d405b86ef262135d6b0da71963d27488876e4bab8e6fd615f8ce5
7
+ data.tar.gz: 3b8c7ee1b28d1cb50ab50f833b37c12dec006bf9fe0980b7c1518ab6f7bf14a4c496f611a8f3bac416a64a1b7b7574cf8341877a5d3c34f2e0b6f82bb9269441
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.135.0 (2023-09-20)
5
+ ------------------
6
+
7
+ * Feature - Fix an issue where the SDK can fail to unmarshall response due to NumberFormatException
8
+
9
+ 1.134.0 (2023-08-24)
10
+ ------------------
11
+
12
+ * Feature - Updates to endpoint ruleset tests to address Smithy validation issues.
13
+
4
14
  1.133.0 (2023-08-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.133.0
1
+ 1.135.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
  #