aws-sdk-s3 1.178.0 → 1.180.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: 3ac7eaf7d71bec097b133248f7a0abab13486cba129139ba9c9b418ec89afa94
4
- data.tar.gz: 7bd7c9b164183b73aacf9c85b495f535fb5fbc7f9a76c6928f2187599ccfaf23
3
+ metadata.gz: e83a176fc1edc7825b0c0aea41ca525abf0083f9485e5d8984b8de8ca8ec4e58
4
+ data.tar.gz: 1f7aac741f82e8e886f0c6394c082a509e9e78ea1a26a5ee8753bd5656603dae
5
5
  SHA512:
6
- metadata.gz: ec8a0e03d794b191ffdc345db182e1a3c510d9bf6761f3f1906c27ea97085981eab79e0163b4877622f72a8ac0ef97ba960ed55b0b6b4db11315a7340b62fae4
7
- data.tar.gz: 392f2e8ee661df0e05d8c5ffd7672f5c7665c28d3339e9962bf174b51c7ae6973db991955e297ec3f6d5ca3d2678aaefe2d20f527c1ba3cead24c6a3de448090
6
+ metadata.gz: 845bfa52e89661f90e59e51e0dc11266416507d3750ea452f987a4caee5ec2640733450c70544f1c5f4b4ad237e62bf9a8c0dc27360935f8764d55f373aad6a7
7
+ data.tar.gz: df7ef9b18aecb7963ec2babbda0c78dde371065d8c346dbfd45adcfd3af97d8d499d63f29f37d8fb6b7cd847f2d841d653f1cfcf04878322d599f51bca806398
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.180.0 (2025-02-06)
5
+ ------------------
6
+
7
+ * Feature - Updated list of the valid AWS Region values for the LocationConstraint parameter for general purpose buckets.
8
+
9
+ 1.179.0 (2025-01-29)
10
+ ------------------
11
+
12
+ * Feature - Change the type of MpuObjectSize in CompleteMultipartUploadRequest from int to long.
13
+
4
14
  1.178.0 (2025-01-15)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.178.0
1
+ 1.180.0
@@ -237,7 +237,7 @@ module Aws::S3
237
237
  # bucket.create({
238
238
  # acl: "private", # accepts private, public-read, public-read-write, authenticated-read
239
239
  # create_bucket_configuration: {
240
- # location_constraint: "af-south-1", # accepts 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, ca-central-1, cn-north-1, cn-northwest-1, EU, eu-central-1, eu-north-1, eu-south-1, eu-south-2, eu-west-1, eu-west-2, eu-west-3, me-south-1, sa-east-1, us-east-2, us-gov-east-1, us-gov-west-1, us-west-1, us-west-2
240
+ # location_constraint: "af-south-1", # accepts 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
241
241
  # location: {
242
242
  # type: "AvailabilityZone", # accepts AvailabilityZone, LocalZone
243
243
  # name: "LocationNameAsString",
@@ -982,20 +982,17 @@ module Aws::S3
982
982
  # `x-amz-server-side-encryption-aws-kms-key-id`, Amazon S3 uses the
983
983
  # Amazon Web Services managed key (`aws/s3`) to protect the data.
984
984
  #
985
- # **Directory buckets** - If you specify `x-amz-server-side-encryption`
986
- # with `aws:kms`, the ` x-amz-server-side-encryption-aws-kms-key-id`
987
- # header is implicitly assigned the ID of the KMS symmetric encryption
988
- # customer managed key that's configured for your directory bucket's
989
- # default encryption setting. If you want to specify the `
990
- # x-amz-server-side-encryption-aws-kms-key-id` header explicitly, you
991
- # can only specify it with the ID (Key ID or Key ARN) of the KMS
992
- # customer managed key that's configured for your directory bucket's
993
- # default encryption setting. Otherwise, you get an HTTP `400 Bad
994
- # Request` error. Only use the key ID or key ARN. The key alias format
995
- # of the KMS key isn't supported. Your SSE-KMS configuration can only
996
- # support 1 [customer managed key][1] per directory bucket for the
997
- # lifetime of the bucket. The [Amazon Web Services managed key][2]
998
- # (`aws/s3`) isn't supported.
985
+ # **Directory buckets** - To encrypt data using SSE-KMS, it's
986
+ # recommended to specify the `x-amz-server-side-encryption` header to
987
+ # `aws:kms`. Then, the `x-amz-server-side-encryption-aws-kms-key-id`
988
+ # header implicitly uses the bucket's default KMS customer managed key
989
+ # ID. If you want to explicitly set the `
990
+ # x-amz-server-side-encryption-aws-kms-key-id` header, it must match the
991
+ # bucket's default customer managed key (using key ID or ARN, not
992
+ # alias). Your SSE-KMS configuration can only support 1 [customer
993
+ # managed key][1] per directory bucket's lifetime. The [Amazon Web
994
+ # Services managed key][2] (`aws/s3`) isn't supported. Incorrect key
995
+ # specification results in an HTTP `400 Bad Request` error.
999
996
  #
1000
997
  #
1001
998
  #
@@ -235,7 +235,7 @@ module Aws::S3
235
235
  #
236
236
  # [1]: http://www.ietf.org/rfc/rfc1864.txt
237
237
  # @option options [String] :checksum_algorithm
238
- # Indicates the algorithm used to create the checksum for the object
238
+ # Indicates the algorithm used to create the checksum for the request
239
239
  # when you use the SDK. This header will not provide any additional
240
240
  # functionality if you don't use the SDK. When you send this header,
241
241
  # there must be a corresponding `x-amz-checksum` or `x-amz-trailer`
@@ -240,7 +240,7 @@ module Aws::S3
240
240
  #
241
241
  # [1]: http://www.ietf.org/rfc/rfc1864.txt
242
242
  # @option options [String] :checksum_algorithm
243
- # Indicates the algorithm used to create the checksum for the object
243
+ # Indicates the algorithm used to create the checksum for the request
244
244
  # when you use the SDK. This header will not provide any additional
245
245
  # functionality if you don't use the SDK. When you send this header,
246
246
  # there must be a corresponding `x-amz-checksum` or `x-amz-trailer`
@@ -246,7 +246,7 @@ module Aws::S3
246
246
  # (CLI) or Amazon Web Services SDKs, this field is calculated
247
247
  # automatically.
248
248
  # @option options [String] :checksum_algorithm
249
- # Indicates the algorithm used to create the checksum for the object
249
+ # Indicates the algorithm used to create the checksum for the request
250
250
  # when you use the SDK. This header will not provide any additional
251
251
  # functionality if you don't use the SDK. When you send this header,
252
252
  # there must be a corresponding `x-amz-checksum` or `x-amz-trailer`
@@ -291,7 +291,7 @@ module Aws::S3
291
291
  # })
292
292
  # @param [Hash] options ({})
293
293
  # @option options [String] :checksum_algorithm
294
- # Indicates the algorithm used to create the checksum for the object
294
+ # Indicates the algorithm used to create the checksum for the request
295
295
  # when you use the SDK. This header will not provide any additional
296
296
  # functionality if you don't use the SDK. When you send this header,
297
297
  # there must be a corresponding `x-amz-checksum` or `x-amz-trailer`
@@ -226,7 +226,7 @@ module Aws::S3
226
226
  # (CLI) or Amazon Web Services SDKs, this field is calculated
227
227
  # automatically.
228
228
  # @option options [String] :checksum_algorithm
229
- # Indicates the algorithm used to create the checksum for the object
229
+ # Indicates the algorithm used to create the checksum for the request
230
230
  # when you use the SDK. This header will not provide any additional
231
231
  # functionality if you don't use the SDK. When you send this header,
232
232
  # there must be a corresponding `x-amz-checksum` or `x-amz-trailer`
@@ -224,7 +224,7 @@ module Aws::S3
224
224
  #
225
225
  # </note>
226
226
  # @option options [String] :checksum_algorithm
227
- # Indicates the algorithm used to create the checksum for the object
227
+ # Indicates the algorithm used to create the checksum for the request
228
228
  # when you use the SDK. This header will not provide any additional
229
229
  # functionality if you don't use the SDK. When you send this header,
230
230
  # there must be a corresponding `x-amz-checksum-algorithm ` or
@@ -202,7 +202,7 @@ module Aws::S3
202
202
  #
203
203
  # [1]: http://www.ietf.org/rfc/rfc1864.txt
204
204
  # @option options [String] :checksum_algorithm
205
- # Indicates the algorithm used to create the checksum for the object
205
+ # Indicates the algorithm used to create the checksum for the request
206
206
  # when you use the SDK. This header will not provide any additional
207
207
  # functionality if you don't use the SDK. When you send this header,
208
208
  # there must be a corresponding `x-amz-checksum` or `x-amz-trailer`
@@ -226,7 +226,7 @@ module Aws::S3
226
226
  #
227
227
  # [1]: http://www.ietf.org/rfc/rfc1864.txt
228
228
  # @option options [String] :checksum_algorithm
229
- # Indicates the algorithm used to create the checksum for the object
229
+ # Indicates the algorithm used to create the checksum for the request
230
230
  # when you use the SDK. This header will not provide any additional
231
231
  # functionality if you don't use the SDK. When you send this header,
232
232
  # there must be a corresponding `x-amz-checksum` or `x-amz-trailer`
@@ -210,7 +210,7 @@ module Aws::S3
210
210
  #
211
211
  # [1]: http://www.ietf.org/rfc/rfc1864.txt
212
212
  # @option options [String] :checksum_algorithm
213
- # Indicates the algorithm used to create the checksum for the object
213
+ # Indicates the algorithm used to create the checksum for the request
214
214
  # when you use the SDK. This header will not provide any additional
215
215
  # functionality if you don't use the SDK. When you send this header,
216
216
  # there must be a corresponding `x-amz-checksum` or `x-amz-trailer`
@@ -272,7 +272,7 @@ module Aws::S3
272
272
  #
273
273
  # [1]: http://www.ietf.org/rfc/rfc1864.txt
274
274
  # @option options [String] :checksum_algorithm
275
- # Indicates the algorithm used to create the checksum for the object
275
+ # Indicates the algorithm used to create the checksum for the request
276
276
  # when you use the SDK. This header will not provide any additional
277
277
  # functionality if you don't use the SDK. When you send this header,
278
278
  # there must be a corresponding `x-amz-checksum` or `x-amz-trailer`
@@ -327,7 +327,7 @@ module Aws::S3
327
327
  #
328
328
  # [1]: http://www.ietf.org/rfc/rfc1864.txt
329
329
  # @option options [String] :checksum_algorithm
330
- # Indicates the algorithm used to create the checksum for the object
330
+ # Indicates the algorithm used to create the checksum for the request
331
331
  # when you use the SDK. This header will not provide any additional
332
332
  # functionality if you don't use the SDK. When you send this header,
333
333
  # there must be a corresponding `x-amz-checksum` or `x-amz-trailer`
@@ -267,7 +267,7 @@ module Aws::S3
267
267
  #
268
268
  # [1]: http://www.ietf.org/rfc/rfc1864.txt
269
269
  # @option options [String] :checksum_algorithm
270
- # Indicates the algorithm used to create the checksum for the object
270
+ # Indicates the algorithm used to create the checksum for the request
271
271
  # when you use the SDK. This header will not provide any additional
272
272
  # functionality if you don't use the SDK. When you send this header,
273
273
  # there must be a corresponding `x-amz-checksum` or `x-amz-trailer`