aws-sdk-s3 1.200.0 → 1.204.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.
@@ -269,7 +269,7 @@ module Aws::S3
269
269
  # When set to 'true' the request body will not be compressed
270
270
  # for supported operations.
271
271
  #
272
- # @option options [Boolean] :disable_s3_express_session_auth
272
+ # @option options [boolean] :disable_s3_express_session_auth
273
273
  # Parameter to indicate whether S3Express session auth should be disabled
274
274
  #
275
275
  # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
@@ -650,6 +650,10 @@ module Aws::S3
650
650
  #
651
651
  # * [ListMultipartUploads][9]
652
652
  #
653
+ # You must URL encode any signed header values that contain spaces. For
654
+ # example, if your header value is `my file.txt`, containing two spaces
655
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
656
+ #
653
657
  #
654
658
  #
655
659
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListParts.html
@@ -924,6 +928,10 @@ module Aws::S3
924
928
  #
925
929
  # * [ListMultipartUploads][13]
926
930
  #
931
+ # You must URL encode any signed header values that contain spaces. For
932
+ # example, if your header value is `my file.txt`, containing two spaces
933
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
934
+ #
927
935
  #
928
936
  #
929
937
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_UploadPart.html
@@ -1286,21 +1294,19 @@ module Aws::S3
1286
1294
  req.send_request(options)
1287
1295
  end
1288
1296
 
1289
- # End of support notice: Beginning October 1, 2025, Amazon S3 will
1290
- # discontinue support for creating new Email Grantee Access Control
1291
- # Lists (ACL). Email Grantee ACLs created prior to this date will
1292
- # continue to work and remain accessible through the Amazon Web Services
1293
- # Management Console, Command Line Interface (CLI), SDKs, and REST API.
1294
- # However, you will no longer be able to create new Email Grantee ACLs.
1297
+ # Creates a copy of an object that is already stored in Amazon S3.
1298
+ #
1299
+ # End of support notice: As of October 1, 2025, Amazon S3 has
1300
+ # discontinued support for Email Grantee Access Control Lists (ACLs). If
1301
+ # you attempt to use an Email Grantee ACL in a request after October 1,
1302
+ # 2025, the request will receive an `HTTP 405` (Method Not Allowed)
1303
+ # error.
1295
1304
  #
1296
1305
  # This change affects the following Amazon Web Services Regions: US
1297
1306
  # East
1298
- # (N. Virginia) Region, US West (N. California) Region, US West (Oregon)
1299
- # Region, Asia Pacific (Singapore) Region, Asia Pacific (Sydney) Region,
1300
- # Asia Pacific (Tokyo) Region, Europe (Ireland) Region, and South
1301
- # America (São Paulo) Region.
1302
- #
1303
- # Creates a copy of an object that is already stored in Amazon S3.
1307
+ # (N. Virginia), US West (N. California), US West (Oregon), Asia Pacific
1308
+ # (Singapore), Asia Pacific (Sydney), Asia Pacific (Tokyo), Europe
1309
+ # (Ireland), and South America (São Paulo).
1304
1310
  #
1305
1311
  # <note markdown="1"> You can store individual objects of up to 5 TB in Amazon S3. You
1306
1312
  # create a copy of your object up to 5 GB in size in a single atomic
@@ -1469,6 +1475,10 @@ module Aws::S3
1469
1475
  #
1470
1476
  # * [GetObject][12]
1471
1477
  #
1478
+ # You must URL encode any signed header values that contain spaces. For
1479
+ # example, if your header value is `my file.txt`, containing two spaces
1480
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
1481
+ #
1472
1482
  #
1473
1483
  #
1474
1484
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/CopyingObjctsUsingRESTMPUapi.html
@@ -1789,6 +1799,37 @@ module Aws::S3
1789
1799
  #
1790
1800
  # </note>
1791
1801
  #
1802
+ # @option params [String] :if_match
1803
+ # Copies the object if the entity tag (ETag) of the destination object
1804
+ # matches the specified tag. If the ETag values do not match, the
1805
+ # operation returns a `412 Precondition Failed` error. If a concurrent
1806
+ # operation occurs during the upload S3 returns a `409
1807
+ # ConditionalRequestConflict` response. On a 409 failure you should
1808
+ # fetch the object's ETag and retry the upload.
1809
+ #
1810
+ # Expects the ETag value as a string.
1811
+ #
1812
+ # For more information about conditional requests, see [RFC 7232][1].
1813
+ #
1814
+ #
1815
+ #
1816
+ # [1]: https://tools.ietf.org/html/rfc7232
1817
+ #
1818
+ # @option params [String] :if_none_match
1819
+ # Copies the object only if the object key name at the destination does
1820
+ # not already exist in the bucket specified. Otherwise, Amazon S3
1821
+ # returns a `412 Precondition Failed` error. If a concurrent operation
1822
+ # occurs during the upload S3 returns a `409 ConditionalRequestConflict`
1823
+ # response. On a 409 failure you should retry the upload.
1824
+ #
1825
+ # Expects the '*' (asterisk) character.
1826
+ #
1827
+ # For more information about conditional requests, see [RFC 7232][1].
1828
+ #
1829
+ #
1830
+ #
1831
+ # [1]: https://tools.ietf.org/html/rfc7232
1832
+ #
1792
1833
  # @option params [required, String] :key
1793
1834
  # The key of the destination object.
1794
1835
  #
@@ -2320,6 +2361,8 @@ module Aws::S3
2320
2361
  # grant_read: "GrantRead",
2321
2362
  # grant_read_acp: "GrantReadACP",
2322
2363
  # grant_write_acp: "GrantWriteACP",
2364
+ # if_match: "IfMatch",
2365
+ # if_none_match: "IfNoneMatch",
2323
2366
  # key: "ObjectKey", # required
2324
2367
  # metadata: {
2325
2368
  # "MetadataKey" => "MetadataValue",
@@ -2377,32 +2420,17 @@ module Aws::S3
2377
2420
  req.send_request(options)
2378
2421
  end
2379
2422
 
2380
- # End of support notice: Beginning October 1, 2025, Amazon S3 will
2381
- # discontinue support for creating new Email Grantee Access Control
2382
- # Lists (ACL). Email Grantee ACLs created prior to this date will
2383
- # continue to work and remain accessible through the Amazon Web Services
2384
- # Management Console, Command Line Interface (CLI), SDKs, and REST API.
2385
- # However, you will no longer be able to create new Email Grantee ACLs.
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.
2386
2428
  #
2387
2429
  # This change affects the following Amazon Web Services Regions: US
2388
2430
  # East
2389
- # (N. Virginia) Region, US West (N. California) Region, US West (Oregon)
2390
- # Region, Asia Pacific (Singapore) Region, Asia Pacific (Sydney) Region,
2391
- # Asia Pacific (Tokyo) Region, Europe (Ireland) Region, and South
2392
- # America (São Paulo) Region.
2393
- #
2394
- # End of support notice: Beginning October 1, 2025, Amazon S3 will stop
2395
- # returning `DisplayName`. Update your applications to use canonical IDs
2396
- # (unique identifier for Amazon Web Services accounts), Amazon Web
2397
- # Services account ID (12 digit identifier) or IAM ARNs (full resource
2398
- # naming) as a direct replacement of `DisplayName`.
2399
- #
2400
- # This change affects the following Amazon Web Services Regions: US
2401
- # East
2402
- # (N. Virginia) Region, US West (N. California) Region, US West (Oregon)
2403
- # Region, Asia Pacific (Singapore) Region, Asia Pacific (Sydney) Region,
2404
- # Asia Pacific (Tokyo) Region, Europe (Ireland) Region, and South
2405
- # America (São Paulo) Region.
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).
2406
2434
  #
2407
2435
  # <note markdown="1"> This action creates an Amazon S3 bucket. To create an Amazon S3 on
2408
2436
  # Outposts bucket, see [ `CreateBucket` ][1].
@@ -2525,6 +2553,10 @@ module Aws::S3
2525
2553
  #
2526
2554
  # * [DeleteBucket][13]
2527
2555
  #
2556
+ # You must URL encode any signed header values that contain spaces. For
2557
+ # example, if your header value is `my file.txt`, containing two spaces
2558
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
2559
+ #
2528
2560
  #
2529
2561
  #
2530
2562
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_CreateBucket.html
@@ -2794,6 +2826,10 @@ module Aws::S3
2794
2826
  #
2795
2827
  # * [UpdateBucketMetadataJournalTableConfiguration][8]
2796
2828
  #
2829
+ # You must URL encode any signed header values that contain spaces. For
2830
+ # example, if your header value is `my file.txt`, containing two spaces
2831
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
2832
+ #
2797
2833
  #
2798
2834
  #
2799
2835
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/metadata-tables-overview.html
@@ -2911,6 +2947,10 @@ module Aws::S3
2911
2947
  #
2912
2948
  # * [GetBucketMetadataTableConfiguration][6]
2913
2949
  #
2950
+ # You must URL encode any signed header values that contain spaces. For
2951
+ # example, if your header value is `my file.txt`, containing two spaces
2952
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
2953
+ #
2914
2954
  #
2915
2955
  #
2916
2956
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucketMetadataConfiguration.html
@@ -2963,19 +3003,17 @@ module Aws::S3
2963
3003
  req.send_request(options)
2964
3004
  end
2965
3005
 
2966
- # End of support notice: Beginning October 1, 2025, Amazon S3 will
2967
- # discontinue support for creating new Email Grantee Access Control
2968
- # Lists (ACL). Email Grantee ACLs created prior to this date will
2969
- # continue to work and remain accessible through the Amazon Web Services
2970
- # Management Console, Command Line Interface (CLI), SDKs, and REST API.
2971
- # However, you will no longer be able to create new Email Grantee ACLs.
3006
+ # End of support notice: As of October 1, 2025, Amazon S3 has
3007
+ # discontinued support for Email Grantee Access Control Lists (ACLs). If
3008
+ # you attempt to use an Email Grantee ACL in a request after October 1,
3009
+ # 2025, the request will receive an `HTTP 405` (Method Not Allowed)
3010
+ # error.
2972
3011
  #
2973
3012
  # This change affects the following Amazon Web Services Regions: US
2974
3013
  # East
2975
- # (N. Virginia) Region, US West (N. California) Region, US West (Oregon)
2976
- # Region, Asia Pacific (Singapore) Region, Asia Pacific (Sydney) Region,
2977
- # Asia Pacific (Tokyo) Region, Europe (Ireland) Region, and South
2978
- # America (São Paulo) Region.
3014
+ # (N. Virginia), US West (N. California), US West (Oregon), Asia Pacific
3015
+ # (Singapore), Asia Pacific (Sydney), Asia Pacific (Tokyo), Europe
3016
+ # (Ireland), and South America (São Paulo).
2979
3017
  #
2980
3018
  # This action initiates a multipart upload and returns an upload ID.
2981
3019
  # This upload ID is used to associate all of the parts in the specific
@@ -3211,6 +3249,10 @@ module Aws::S3
3211
3249
  #
3212
3250
  # * [ListMultipartUploads][19]
3213
3251
  #
3252
+ # You must URL encode any signed header values that contain spaces. For
3253
+ # example, if your header value is `my file.txt`, containing two spaces
3254
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
3255
+ #
3214
3256
  #
3215
3257
  #
3216
3258
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_UploadPart.html
@@ -4091,6 +4133,10 @@ module Aws::S3
4091
4133
  # : <b>Directory buckets </b> - The HTTP Host header syntax is `
4092
4134
  # Bucket-name.s3express-zone-id.region-code.amazonaws.com`.
4093
4135
  #
4136
+ # You must URL encode any signed header values that contain spaces. For
4137
+ # example, if your header value is `my file.txt`, containing two spaces
4138
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
4139
+ #
4094
4140
  #
4095
4141
  #
4096
4142
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-express-APIs.html
@@ -4293,6 +4339,10 @@ module Aws::S3
4293
4339
  #
4294
4340
  # * [DeleteObject][5]
4295
4341
  #
4342
+ # You must URL encode any signed header values that contain spaces. For
4343
+ # example, if your header value is `my file.txt`, containing two spaces
4344
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
4345
+ #
4296
4346
  #
4297
4347
  #
4298
4348
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/endpoint-directory-buckets-AZ.html
@@ -4383,6 +4433,10 @@ module Aws::S3
4383
4433
  #
4384
4434
  # * [PutBucketAnalyticsConfiguration][6]
4385
4435
  #
4436
+ # You must URL encode any signed header values that contain spaces. For
4437
+ # example, if your header value is `my file.txt`, containing two spaces
4438
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
4439
+ #
4386
4440
  #
4387
4441
  #
4388
4442
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources
@@ -4442,6 +4496,10 @@ module Aws::S3
4442
4496
  #
4443
4497
  # * [RESTOPTIONSobject][3]
4444
4498
  #
4499
+ # You must URL encode any signed header values that contain spaces. For
4500
+ # example, if your header value is `my file.txt`, containing two spaces
4501
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
4502
+ #
4445
4503
  #
4446
4504
  #
4447
4505
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/cors.html
@@ -4530,6 +4588,10 @@ module Aws::S3
4530
4588
  #
4531
4589
  # * [GetBucketEncryption][7]
4532
4590
  #
4591
+ # You must URL encode any signed header values that contain spaces. For
4592
+ # example, if your header value is `my file.txt`, containing two spaces
4593
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
4594
+ #
4533
4595
  #
4534
4596
  #
4535
4597
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/bucket-encryption.html
@@ -4623,6 +4685,10 @@ module Aws::S3
4623
4685
  #
4624
4686
  # * [ListBucketIntelligentTieringConfigurations][4]
4625
4687
  #
4688
+ # You must URL encode any signed header values that contain spaces. For
4689
+ # example, if your header value is `my file.txt`, containing two spaces
4690
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
4691
+ #
4626
4692
  #
4627
4693
  #
4628
4694
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-class-intro.html#sc-dynamic-data-access
@@ -4686,6 +4752,10 @@ module Aws::S3
4686
4752
  #
4687
4753
  # * [ListBucketInventoryConfigurations][6]
4688
4754
  #
4755
+ # You must URL encode any signed header values that contain spaces. For
4756
+ # example, if your header value is `my file.txt`, containing two spaces
4757
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
4758
+ #
4689
4759
  #
4690
4760
  #
4691
4761
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources
@@ -4786,6 +4856,10 @@ module Aws::S3
4786
4856
  #
4787
4857
  # * [GetBucketLifecycleConfiguration][7]
4788
4858
  #
4859
+ # You must URL encode any signed header values that contain spaces. For
4860
+ # example, if your header value is `my file.txt`, containing two spaces
4861
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
4862
+ #
4789
4863
  #
4790
4864
  #
4791
4865
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-access-control.html
@@ -4871,6 +4945,10 @@ module Aws::S3
4871
4945
  #
4872
4946
  # * [UpdateBucketMetadataJournalTableConfiguration][6]
4873
4947
  #
4948
+ # You must URL encode any signed header values that contain spaces. For
4949
+ # example, if your header value is `my file.txt`, containing two spaces
4950
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
4951
+ #
4874
4952
  #
4875
4953
  #
4876
4954
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/metadata-tables-overview.html
@@ -4948,6 +5026,10 @@ module Aws::S3
4948
5026
  #
4949
5027
  # * [GetBucketMetadataTableConfiguration][6]
4950
5028
  #
5029
+ # You must URL encode any signed header values that contain spaces. For
5030
+ # example, if your header value is `my file.txt`, containing two spaces
5031
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
5032
+ #
4951
5033
  #
4952
5034
  #
4953
5035
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketMetadataTableConfiguration.html
@@ -5012,6 +5094,10 @@ module Aws::S3
5012
5094
  #
5013
5095
  # * [Monitoring Metrics with Amazon CloudWatch][3]
5014
5096
  #
5097
+ # You must URL encode any signed header values that contain spaces. For
5098
+ # example, if your header value is `my file.txt`, containing two spaces
5099
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
5100
+ #
5015
5101
  #
5016
5102
  #
5017
5103
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources
@@ -5072,6 +5158,10 @@ module Aws::S3
5072
5158
  #
5073
5159
  # * PutBucketOwnershipControls
5074
5160
  #
5161
+ # You must URL encode any signed header values that contain spaces. For
5162
+ # example, if your header value is `my file.txt`, containing two spaces
5163
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
5164
+ #
5075
5165
  #
5076
5166
  #
5077
5167
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-with-s3-actions.html
@@ -5168,6 +5258,10 @@ module Aws::S3
5168
5258
  #
5169
5259
  # * [DeleteObject][6]
5170
5260
  #
5261
+ # You must URL encode any signed header values that contain spaces. For
5262
+ # example, if your header value is `my file.txt`, containing two spaces
5263
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
5264
+ #
5171
5265
  #
5172
5266
  #
5173
5267
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/endpoint-directory-buckets-AZ.html
@@ -5260,6 +5354,10 @@ module Aws::S3
5260
5354
  #
5261
5355
  # * [GetBucketReplication][5]
5262
5356
  #
5357
+ # You must URL encode any signed header values that contain spaces. For
5358
+ # example, if your header value is `my file.txt`, containing two spaces
5359
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
5360
+ #
5263
5361
  #
5264
5362
  #
5265
5363
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources
@@ -5307,7 +5405,7 @@ module Aws::S3
5307
5405
  #
5308
5406
  # </note>
5309
5407
  #
5310
- # Deletes the tags from the bucket.
5408
+ # Deletes tags from the bucket.
5311
5409
  #
5312
5410
  # To use this operation, you must have permission to perform the
5313
5411
  # `s3:PutBucketTagging` action. By default, the bucket owner has this
@@ -5319,6 +5417,10 @@ module Aws::S3
5319
5417
  #
5320
5418
  # * [PutBucketTagging][2]
5321
5419
  #
5420
+ # You must URL encode any signed header values that contain spaces. For
5421
+ # example, if your header value is `my file.txt`, containing two spaces
5422
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
5423
+ #
5322
5424
  #
5323
5425
  #
5324
5426
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketTagging.html
@@ -5385,6 +5487,10 @@ module Aws::S3
5385
5487
  #
5386
5488
  # * [PutBucketWebsite][3]
5387
5489
  #
5490
+ # You must URL encode any signed header values that contain spaces. For
5491
+ # example, if your header value is `my file.txt`, containing two spaces
5492
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
5493
+ #
5388
5494
  #
5389
5495
  #
5390
5496
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/WebsiteHosting.html
@@ -5507,6 +5613,12 @@ module Aws::S3
5507
5613
  # * <b> <code>s3:DeleteObjectVersion</code> </b> - To delete a
5508
5614
  # specific version of an object from a versioning-enabled bucket,
5509
5615
  # you must have the `s3:DeleteObjectVersion` permission.
5616
+ #
5617
+ # <note markdown="1"> If the `s3:DeleteObject` or `s3:DeleteObjectVersion` permissions
5618
+ # are explicitly denied in your bucket policy, attempts to delete
5619
+ # any unversioned objects result in a `403 Access Denied` error.
5620
+ #
5621
+ # </note>
5510
5622
  # * **Directory bucket permissions** - To grant access to this API
5511
5623
  # operation on a directory bucket, we recommend that you use the [
5512
5624
  # `CreateSession` ][8] API operation for session-based
@@ -5533,6 +5645,16 @@ module Aws::S3
5533
5645
  #
5534
5646
  # ^
5535
5647
  #
5648
+ # You must URL encode any signed header values that contain spaces. For
5649
+ # example, if your header value is `my file.txt`, containing two spaces
5650
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
5651
+ #
5652
+ # <note markdown="1"> The `If-Match` header is supported for both general purpose and
5653
+ # directory buckets. `IfMatchLastModifiedTime` and `IfMatchSize` is only
5654
+ # supported for directory buckets.
5655
+ #
5656
+ # </note>
5657
+ #
5536
5658
  #
5537
5659
  #
5538
5660
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/DeletingObjectVersions.html
@@ -5643,17 +5765,15 @@ module Aws::S3
5643
5765
  # fails with the HTTP status code `403 Forbidden` (access denied).
5644
5766
  #
5645
5767
  # @option params [String] :if_match
5646
- # The `If-Match` header field makes the request method conditional on
5647
- # ETags. If the ETag value does not match, the operation returns a `412
5648
- # Precondition Failed` error. If the ETag matches or if the object
5649
- # doesn't exist, the operation will return a `204 Success (No Content)
5650
- # response`.
5651
- #
5652
- # For more information about conditional requests, see [RFC 7232][1].
5768
+ # Deletes the object if the ETag (entity tag) value provided during the
5769
+ # delete operation matches the ETag of the object in S3. If the ETag
5770
+ # values do not match, the operation returns a `412 Precondition Failed`
5771
+ # error.
5653
5772
  #
5654
- # <note markdown="1"> This functionality is only supported for directory buckets.
5773
+ # Expects the ETag value as a string. `If-Match` does accept a string
5774
+ # value of an '*' (asterisk) character to denote a match of any ETag.
5655
5775
  #
5656
- # </note>
5776
+ # For more information about conditional requests, see [RFC 7232][1].
5657
5777
  #
5658
5778
  #
5659
5779
  #
@@ -5764,6 +5884,10 @@ module Aws::S3
5764
5884
  #
5765
5885
  # * [GetObjectTagging][3]
5766
5886
  #
5887
+ # You must URL encode any signed header values that contain spaces. For
5888
+ # example, if your header value is `my file.txt`, containing two spaces
5889
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
5890
+ #
5767
5891
  #
5768
5892
  #
5769
5893
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/object-tagging.html
@@ -5934,6 +6058,12 @@ module Aws::S3
5934
6058
  # * <b> <code>s3:DeleteObjectVersion</code> </b> - To delete a
5935
6059
  # specific version of an object from a versioning-enabled bucket,
5936
6060
  # you must specify the `s3:DeleteObjectVersion` permission.
6061
+ #
6062
+ # <note markdown="1"> If the `s3:DeleteObject` or `s3:DeleteObjectVersion` permissions
6063
+ # are explicitly denied in your bucket policy, attempts to delete
6064
+ # any unversioned objects result in a `403 Access Denied` error.
6065
+ #
6066
+ # </note>
5937
6067
  # * **Directory bucket permissions** - To grant access to this API
5938
6068
  # operation on a directory bucket, we recommend that you use the [
5939
6069
  # `CreateSession` ][4] API operation for session-based
@@ -5978,6 +6108,10 @@ module Aws::S3
5978
6108
  #
5979
6109
  # * [AbortMultipartUpload][9]
5980
6110
  #
6111
+ # You must URL encode any signed header values that contain spaces. For
6112
+ # example, if your header value is `my file.txt`, containing two spaces
6113
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
6114
+ #
5981
6115
  #
5982
6116
  #
5983
6117
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/endpoint-directory-buckets-AZ.html
@@ -6274,6 +6408,10 @@ module Aws::S3
6274
6408
  #
6275
6409
  # * [GetBucketPolicyStatus][6]
6276
6410
  #
6411
+ # You must URL encode any signed header values that contain spaces. For
6412
+ # example, if your header value is `my file.txt`, containing two spaces
6413
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
6414
+ #
6277
6415
  #
6278
6416
  #
6279
6417
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources
@@ -6346,6 +6484,10 @@ module Aws::S3
6346
6484
  #
6347
6485
  # ^
6348
6486
  #
6487
+ # You must URL encode any signed header values that contain spaces. For
6488
+ # example, if your header value is `my file.txt`, containing two spaces
6489
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
6490
+ #
6349
6491
  #
6350
6492
  #
6351
6493
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources
@@ -6406,11 +6548,11 @@ module Aws::S3
6406
6548
  req.send_request(options)
6407
6549
  end
6408
6550
 
6409
- # End of support notice: Beginning October 1, 2025, Amazon S3 will stop
6410
- # returning `DisplayName`. Update your applications to use canonical IDs
6411
- # (unique identifier for Amazon Web Services accounts), Amazon Web
6412
- # Services account ID (12 digit identifier) or IAM ARNs (full resource
6413
- # naming) as a direct replacement of `DisplayName`.
6551
+ # End of support notice: Beginning November 21, 2025, Amazon S3 will
6552
+ # stop returning `DisplayName`. Update your applications to use
6553
+ # canonical IDs (unique identifier for Amazon Web Services accounts),
6554
+ # Amazon Web Services account ID (12 digit identifier) or IAM ARNs (full
6555
+ # resource naming) as a direct replacement of `DisplayName`.
6414
6556
  #
6415
6557
  # This change affects the following Amazon Web Services Regions: US
6416
6558
  # East
@@ -6448,6 +6590,10 @@ module Aws::S3
6448
6590
  #
6449
6591
  # </note>
6450
6592
  #
6593
+ # You must URL encode any signed header values that contain spaces. For
6594
+ # example, if your header value is `my file.txt`, containing two spaces
6595
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
6596
+ #
6451
6597
  # The following operations are related to `GetBucketAcl`:
6452
6598
  #
6453
6599
  # * [ListObjects][3]
@@ -6543,6 +6689,10 @@ module Aws::S3
6543
6689
  #
6544
6690
  # * [PutBucketAnalyticsConfiguration][6]
6545
6691
  #
6692
+ # You must URL encode any signed header values that contain spaces. For
6693
+ # example, if your header value is `my file.txt`, containing two spaces
6694
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
6695
+ #
6546
6696
  #
6547
6697
  #
6548
6698
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources
@@ -6631,6 +6781,10 @@ module Aws::S3
6631
6781
  #
6632
6782
  # * [DeleteBucketCors][4]
6633
6783
  #
6784
+ # You must URL encode any signed header values that contain spaces. For
6785
+ # example, if your header value is `my file.txt`, containing two spaces
6786
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
6787
+ #
6634
6788
  #
6635
6789
  #
6636
6790
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html#ErrorCodeList
@@ -6723,7 +6877,9 @@ module Aws::S3
6723
6877
 
6724
6878
  # Returns the default encryption configuration for an Amazon S3 bucket.
6725
6879
  # By default, all buckets have a default encryption configuration that
6726
- # uses server-side encryption with Amazon S3 managed keys (SSE-S3).
6880
+ # uses server-side encryption with Amazon S3 managed keys (SSE-S3). This
6881
+ # operation also returns the `BucketKeyEnabled` and
6882
+ # `BlockedEncryptionTypes` statuses.
6727
6883
  #
6728
6884
  # <note markdown="1"> * **General purpose buckets** - For information about the bucket
6729
6885
  # default encryption feature, see [Amazon S3 Bucket Default
@@ -6768,9 +6924,13 @@ module Aws::S3
6768
6924
  #
6769
6925
  # * [DeleteBucketEncryption][7]
6770
6926
  #
6927
+ # You must URL encode any signed header values that contain spaces. For
6928
+ # example, if your header value is `my file.txt`, containing two spaces
6929
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
6771
6930
  #
6772
6931
  #
6773
- # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/bucket-encryption.html
6932
+ #
6933
+ # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/bucket-encryption.html
6774
6934
  # [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-express-bucket-encryption.html
6775
6935
  # [3]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources
6776
6936
  # [4]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-access-control.html
@@ -6825,6 +6985,8 @@ module Aws::S3
6825
6985
  # resp.server_side_encryption_configuration.rules[0].apply_server_side_encryption_by_default.sse_algorithm #=> String, one of "AES256", "aws:fsx", "aws:kms", "aws:kms:dsse"
6826
6986
  # resp.server_side_encryption_configuration.rules[0].apply_server_side_encryption_by_default.kms_master_key_id #=> String
6827
6987
  # resp.server_side_encryption_configuration.rules[0].bucket_key_enabled #=> Boolean
6988
+ # resp.server_side_encryption_configuration.rules[0].blocked_encryption_types.encryption_type #=> Array
6989
+ # resp.server_side_encryption_configuration.rules[0].blocked_encryption_types.encryption_type[0] #=> String, one of "NONE", "SSE-C"
6828
6990
  #
6829
6991
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/GetBucketEncryption AWS API Documentation
6830
6992
  #
@@ -6870,6 +7032,10 @@ module Aws::S3
6870
7032
  #
6871
7033
  # * [ListBucketIntelligentTieringConfigurations][4]
6872
7034
  #
7035
+ # You must URL encode any signed header values that contain spaces. For
7036
+ # example, if your header value is `my file.txt`, containing two spaces
7037
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
7038
+ #
6873
7039
  #
6874
7040
  #
6875
7041
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-class-intro.html#sc-dynamic-data-access
@@ -6951,6 +7117,10 @@ module Aws::S3
6951
7117
  #
6952
7118
  # * [PutBucketInventoryConfiguration][6]
6953
7119
  #
7120
+ # You must URL encode any signed header values that contain spaces. For
7121
+ # example, if your header value is `my file.txt`, containing two spaces
7122
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
7123
+ #
6954
7124
  #
6955
7125
  #
6956
7126
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources
@@ -7047,6 +7217,10 @@ module Aws::S3
7047
7217
  #
7048
7218
  # * [DeleteBucketLifecycle][6]
7049
7219
  #
7220
+ # You must URL encode any signed header values that contain spaces. For
7221
+ # example, if your header value is `my file.txt`, containing two spaces
7222
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
7223
+ #
7050
7224
  #
7051
7225
  #
7052
7226
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketLifecycleConfiguration.html
@@ -7208,6 +7382,10 @@ module Aws::S3
7208
7382
  #
7209
7383
  # * [DeleteBucketLifecycle][8]
7210
7384
  #
7385
+ # You must URL encode any signed header values that contain spaces. For
7386
+ # example, if your header value is `my file.txt`, containing two spaces
7387
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
7388
+ #
7211
7389
  #
7212
7390
  #
7213
7391
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lifecycle-mgmt.html
@@ -7312,13 +7490,25 @@ module Aws::S3
7312
7490
  req.send_request(options)
7313
7491
  end
7314
7492
 
7315
- # <note markdown="1"> This operation is not supported for directory buckets.
7316
- #
7317
- # </note>
7493
+ # Using the `GetBucketLocation` operation is no longer a best practice.
7494
+ # To return the Region that a bucket resides in, we recommend that you
7495
+ # use the [HeadBucket][1] operation instead. For backward compatibility,
7496
+ # Amazon S3 continues to support the `GetBucketLocation` operation.
7318
7497
  #
7319
7498
  # Returns the Region the bucket resides in. You set the bucket's Region
7320
7499
  # using the `LocationConstraint` request parameter in a `CreateBucket`
7321
- # request. For more information, see [CreateBucket][1].
7500
+ # request. For more information, see [CreateBucket][2].
7501
+ #
7502
+ # <note markdown="1"> In a bucket's home Region, calls to the `GetBucketLocation` operation
7503
+ # are governed by the bucket's policy. In other Regions, the bucket
7504
+ # policy doesn't apply, which means that cross-account access won't be
7505
+ # authorized. However, calls to the `HeadBucket` operation always return
7506
+ # the bucket’s location through an HTTP response header, whether access
7507
+ # to the bucket is authorized or not. Therefore, we recommend using the
7508
+ # `HeadBucket` operation for bucket Region discovery and to avoid using
7509
+ # the `GetBucketLocation` operation.
7510
+ #
7511
+ # </note>
7322
7512
  #
7323
7513
  # When you use this API operation with an access point, provide the
7324
7514
  # alias of the access point in place of the bucket name.
@@ -7328,11 +7518,9 @@ module Aws::S3
7328
7518
  # bucket name. If the Object Lambda access point alias in a request is
7329
7519
  # not valid, the error code `InvalidAccessPointAliasError` is returned.
7330
7520
  # For more information about `InvalidAccessPointAliasError`, see [List
7331
- # of Error Codes][2].
7521
+ # of Error Codes][3].
7332
7522
  #
7333
- # <note markdown="1"> We recommend that you use [HeadBucket][3] to return the Region that a
7334
- # bucket resides in. For backward compatibility, Amazon S3 continues to
7335
- # support GetBucketLocation.
7523
+ # <note markdown="1"> This operation is not supported for directory buckets.
7336
7524
  #
7337
7525
  # </note>
7338
7526
  #
@@ -7340,13 +7528,17 @@ module Aws::S3
7340
7528
  #
7341
7529
  # * [GetObject][4]
7342
7530
  #
7343
- # * [CreateBucket][1]
7531
+ # * [CreateBucket][2]
7344
7532
  #
7533
+ # You must URL encode any signed header values that contain spaces. For
7534
+ # example, if your header value is `my file.txt`, containing two spaces
7535
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
7345
7536
  #
7346
7537
  #
7347
- # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucket.html
7348
- # [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html#ErrorCodeList
7349
- # [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_HeadBucket.html
7538
+ #
7539
+ # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_HeadBucket.html
7540
+ # [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucket.html
7541
+ # [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html#ErrorCodeList
7350
7542
  # [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html
7351
7543
  #
7352
7544
  # @option params [required, String] :bucket
@@ -7409,11 +7601,11 @@ module Aws::S3
7409
7601
  req.send_request(options)
7410
7602
  end
7411
7603
 
7412
- # End of support notice: Beginning October 1, 2025, Amazon S3 will stop
7413
- # returning `DisplayName`. Update your applications to use canonical IDs
7414
- # (unique identifier for Amazon Web Services accounts), Amazon Web
7415
- # Services account ID (12 digit identifier) or IAM ARNs (full resource
7416
- # naming) as a direct replacement of `DisplayName`.
7604
+ # End of support notice: Beginning November 21, 2025, Amazon S3 will
7605
+ # stop returning `DisplayName`. Update your applications to use
7606
+ # canonical IDs (unique identifier for Amazon Web Services accounts),
7607
+ # Amazon Web Services account ID (12 digit identifier) or IAM ARNs (full
7608
+ # resource naming) as a direct replacement of `DisplayName`.
7417
7609
  #
7418
7610
  # This change affects the following Amazon Web Services Regions: US
7419
7611
  # East
@@ -7435,6 +7627,10 @@ module Aws::S3
7435
7627
  #
7436
7628
  # * [PutBucketLogging][2]
7437
7629
  #
7630
+ # You must URL encode any signed header values that contain spaces. For
7631
+ # example, if your header value is `my file.txt`, containing two spaces
7632
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
7633
+ #
7438
7634
  #
7439
7635
  #
7440
7636
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucket.html
@@ -7516,6 +7712,10 @@ module Aws::S3
7516
7712
  #
7517
7713
  # * [UpdateBucketMetadataJournalTableConfiguration][6]
7518
7714
  #
7715
+ # You must URL encode any signed header values that contain spaces. For
7716
+ # example, if your header value is `my file.txt`, containing two spaces
7717
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
7718
+ #
7519
7719
  #
7520
7720
  #
7521
7721
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/metadata-tables-overview.html
@@ -7614,6 +7814,10 @@ module Aws::S3
7614
7814
  #
7615
7815
  # * [DeleteBucketMetadataTableConfiguration][6]
7616
7816
  #
7817
+ # You must URL encode any signed header values that contain spaces. For
7818
+ # example, if your header value is `my file.txt`, containing two spaces
7819
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
7820
+ #
7617
7821
  #
7618
7822
  #
7619
7823
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketMetadataTableConfiguration.html
@@ -7690,6 +7894,10 @@ module Aws::S3
7690
7894
  #
7691
7895
  # * [Monitoring Metrics with Amazon CloudWatch][3]
7692
7896
  #
7897
+ # You must URL encode any signed header values that contain spaces. For
7898
+ # example, if your header value is `my file.txt`, containing two spaces
7899
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
7900
+ #
7693
7901
  #
7694
7902
  #
7695
7903
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources
@@ -7913,6 +8121,10 @@ module Aws::S3
7913
8121
  #
7914
8122
  # ^
7915
8123
  #
8124
+ # You must URL encode any signed header values that contain spaces. For
8125
+ # example, if your header value is `my file.txt`, containing two spaces
8126
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
8127
+ #
7916
8128
  #
7917
8129
  #
7918
8130
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html#ErrorCodeList
@@ -8026,6 +8238,10 @@ module Aws::S3
8026
8238
  #
8027
8239
  # * DeleteBucketOwnershipControls
8028
8240
  #
8241
+ # You must URL encode any signed header values that contain spaces. For
8242
+ # example, if your header value is `my file.txt`, containing two spaces
8243
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
8244
+ #
8029
8245
  #
8030
8246
  #
8031
8247
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html
@@ -8137,6 +8353,10 @@ module Aws::S3
8137
8353
  #
8138
8354
  # ^
8139
8355
  #
8356
+ # You must URL encode any signed header values that contain spaces. For
8357
+ # example, if your header value is `my file.txt`, containing two spaces
8358
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
8359
+ #
8140
8360
  #
8141
8361
  #
8142
8362
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/endpoint-directory-buckets-AZ.html
@@ -8207,7 +8427,7 @@ module Aws::S3
8207
8427
  #
8208
8428
  # resp.to_h outputs the following:
8209
8429
  # {
8210
- # policy: "{\"Version\":\"2008-10-17\",\"Id\":\"LogPolicy\",\"Statement\":[{\"Sid\":\"Enables the log delivery group to publish logs to your bucket \",\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"111122223333\"},\"Action\":[\"s3:GetBucketAcl\",\"s3:GetObjectAcl\",\"s3:PutObject\"],\"Resource\":[\"arn:aws:s3:::policytest1/*\",\"arn:aws:s3:::policytest1\"]}]}",
8430
+ # policy: "{\"Version\":\"2008-10-17\",&TCX5-2025-waiver;\"Id\":\"LogPolicy\",\"Statement\":[{\"Sid\":\"Enables the log delivery group to publish logs to your bucket \",\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"111122223333\"},\"Action\":[\"s3:GetBucketAcl\",\"s3:GetObjectAcl\",\"s3:PutObject\"],\"Resource\":[\"arn:aws:s3:::policytest1/*\",\"arn:aws:s3:::policytest1\"]}]}",
8211
8431
  # }
8212
8432
  #
8213
8433
  # @example Request syntax with placeholder values
@@ -8253,6 +8473,10 @@ module Aws::S3
8253
8473
  #
8254
8474
  # * [DeletePublicAccessBlock][6]
8255
8475
  #
8476
+ # You must URL encode any signed header values that contain spaces. For
8477
+ # example, if your header value is `my file.txt`, containing two spaces
8478
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
8479
+ #
8256
8480
  #
8257
8481
  #
8258
8482
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-with-s3-actions.html
@@ -8327,6 +8551,10 @@ module Aws::S3
8327
8551
  #
8328
8552
  # * [DeleteBucketReplication][5]
8329
8553
  #
8554
+ # You must URL encode any signed header values that contain spaces. For
8555
+ # example, if your header value is `my file.txt`, containing two spaces
8556
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
8557
+ #
8330
8558
  #
8331
8559
  #
8332
8560
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/replication.html
@@ -8432,6 +8660,10 @@ module Aws::S3
8432
8660
  #
8433
8661
  # ^
8434
8662
  #
8663
+ # You must URL encode any signed header values that contain spaces. For
8664
+ # example, if your header value is `my file.txt`, containing two spaces
8665
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
8666
+ #
8435
8667
  #
8436
8668
  #
8437
8669
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/RequesterPaysBuckets.html
@@ -8488,7 +8720,7 @@ module Aws::S3
8488
8720
  #
8489
8721
  # </note>
8490
8722
  #
8491
- # Returns the tag set associated with the bucket.
8723
+ # Returns the tag set associated with the general purpose bucket.
8492
8724
  #
8493
8725
  # To use this operation, you must have permission to perform the
8494
8726
  # `s3:GetBucketTagging` action. By default, the bucket owner has this
@@ -8508,6 +8740,10 @@ module Aws::S3
8508
8740
  #
8509
8741
  # * [DeleteBucketTagging][2]
8510
8742
  #
8743
+ # You must URL encode any signed header values that contain spaces. For
8744
+ # example, if your header value is `my file.txt`, containing two spaces
8745
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
8746
+ #
8511
8747
  #
8512
8748
  #
8513
8749
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketTagging.html
@@ -8592,6 +8828,10 @@ module Aws::S3
8592
8828
  #
8593
8829
  # * [DeleteObject][3]
8594
8830
  #
8831
+ # You must URL encode any signed header values that contain spaces. For
8832
+ # example, if your header value is `my file.txt`, containing two spaces
8833
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
8834
+ #
8595
8835
  #
8596
8836
  #
8597
8837
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html
@@ -8668,6 +8908,10 @@ module Aws::S3
8668
8908
  #
8669
8909
  # * [PutBucketWebsite][3]
8670
8910
  #
8911
+ # You must URL encode any signed header values that contain spaces. For
8912
+ # example, if your header value is `my file.txt`, containing two spaces
8913
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
8914
+ #
8671
8915
  #
8672
8916
  #
8673
8917
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/WebsiteHosting.html
@@ -8902,6 +9146,10 @@ module Aws::S3
8902
9146
  #
8903
9147
  # * [GetObjectAcl][10]
8904
9148
  #
9149
+ # You must URL encode any signed header values that contain spaces. For
9150
+ # example, if your header value is `my file.txt`, containing two spaces
9151
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
9152
+ #
8905
9153
  #
8906
9154
  #
8907
9155
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/VirtualHosting.html#VirtualHostingSpecifyBucket
@@ -9407,6 +9655,19 @@ module Aws::S3
9407
9655
  req.send_request(options, &block)
9408
9656
  end
9409
9657
 
9658
+ # End of support notice: Beginning November 21, 2025, Amazon S3 will
9659
+ # stop returning `DisplayName`. Update your applications to use
9660
+ # canonical IDs (unique identifier for Amazon Web Services accounts),
9661
+ # Amazon Web Services account ID (12 digit identifier) or IAM ARNs (full
9662
+ # resource naming) as a direct replacement of `DisplayName`.
9663
+ #
9664
+ # This change affects the following Amazon Web Services Regions: US
9665
+ # East
9666
+ # (N. Virginia) Region, US West (N. California) Region, US West (Oregon)
9667
+ # Region, Asia Pacific (Singapore) Region, Asia Pacific (Sydney) Region,
9668
+ # Asia Pacific (Tokyo) Region, Europe (Ireland) Region, and South
9669
+ # America (São Paulo) Region.
9670
+ #
9410
9671
  # <note markdown="1"> This operation is not supported for directory buckets.
9411
9672
  #
9412
9673
  # </note>
@@ -9441,6 +9702,10 @@ module Aws::S3
9441
9702
  #
9442
9703
  # * [PutObject][6]
9443
9704
  #
9705
+ # You must URL encode any signed header values that contain spaces. For
9706
+ # example, if your header value is `my file.txt`, containing two spaces
9707
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
9708
+ #
9444
9709
  #
9445
9710
  #
9446
9711
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/acl-overview.html#acl-access-policy-permission-mapping
@@ -9764,6 +10029,10 @@ module Aws::S3
9764
10029
  #
9765
10030
  # * [ListParts][16]
9766
10031
  #
10032
+ # You must URL encode any signed header values that contain spaces. For
10033
+ # example, if your header value is `my file.txt`, containing two spaces
10034
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
10035
+ #
9767
10036
  #
9768
10037
  #
9769
10038
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/endpoint-directory-buckets-AZ.html
@@ -9995,6 +10264,10 @@ module Aws::S3
9995
10264
  #
9996
10265
  # ^
9997
10266
  #
10267
+ # You must URL encode any signed header values that contain spaces. For
10268
+ # example, if your header value is `my file.txt`, containing two spaces
10269
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
10270
+ #
9998
10271
  #
9999
10272
  #
10000
10273
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lock.html
@@ -10093,6 +10366,10 @@ module Aws::S3
10093
10366
  #
10094
10367
  # ^
10095
10368
  #
10369
+ # You must URL encode any signed header values that contain spaces. For
10370
+ # example, if your header value is `my file.txt`, containing two spaces
10371
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
10372
+ #
10096
10373
  #
10097
10374
  #
10098
10375
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lock.html
@@ -10165,6 +10442,10 @@ module Aws::S3
10165
10442
  #
10166
10443
  # ^
10167
10444
  #
10445
+ # You must URL encode any signed header values that contain spaces. For
10446
+ # example, if your header value is `my file.txt`, containing two spaces
10447
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
10448
+ #
10168
10449
  #
10169
10450
  #
10170
10451
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lock.html
@@ -10277,6 +10558,10 @@ module Aws::S3
10277
10558
  #
10278
10559
  # * [PutObjectTagging][4]
10279
10560
  #
10561
+ # You must URL encode any signed header values that contain spaces. For
10562
+ # example, if your header value is `my file.txt`, containing two spaces
10563
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
10564
+ #
10280
10565
  #
10281
10566
  #
10282
10567
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/object-tagging.html
@@ -10443,6 +10728,10 @@ module Aws::S3
10443
10728
  #
10444
10729
  # ^
10445
10730
  #
10731
+ # You must URL encode any signed header values that contain spaces. For
10732
+ # example, if your header value is `my file.txt`, containing two spaces
10733
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
10734
+ #
10446
10735
  #
10447
10736
  #
10448
10737
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html
@@ -10551,6 +10840,10 @@ module Aws::S3
10551
10840
  #
10552
10841
  # * [DeletePublicAccessBlock][6]
10553
10842
  #
10843
+ # You must URL encode any signed header values that contain spaces. For
10844
+ # example, if your header value is `my file.txt`, containing two spaces
10845
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
10846
+ #
10554
10847
  #
10555
10848
  #
10556
10849
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-with-s3-actions.html
@@ -10597,13 +10890,19 @@ module Aws::S3
10597
10890
  end
10598
10891
 
10599
10892
  # You can use this operation to determine if a bucket exists and if you
10600
- # have permission to access it. The action returns a `200 OK` if the
10601
- # bucket exists and you have permission to access it.
10602
- #
10603
- # <note markdown="1"> If the bucket does not exist or you do not have permission to access
10893
+ # have permission to access it. The action returns a `200 OK` HTTP
10894
+ # status code if the bucket exists and you have permission to access it.
10895
+ # You can make a `HeadBucket` call on any bucket name to any Region in
10896
+ # the partition, and regardless of the permissions on the bucket, you
10897
+ # will receive a response header with the correct bucket location so
10898
+ # that you can then make a proper, signed request to the appropriate
10899
+ # Regional endpoint.
10900
+ #
10901
+ # <note markdown="1"> If the bucket doesn't exist or you don't have permission to access
10604
10902
  # it, the `HEAD` request returns a generic `400 Bad Request`, `403
10605
- # Forbidden` or `404 Not Found` code. A message body is not included, so
10606
- # you cannot determine the exception beyond these HTTP response codes.
10903
+ # Forbidden`, or `404 Not Found` HTTP status code. A message body isn't
10904
+ # included, so you can't determine the exception beyond these HTTP
10905
+ # response codes.
10607
10906
  #
10608
10907
  # </note>
10609
10908
  #
@@ -10666,6 +10965,10 @@ module Aws::S3
10666
10965
  #
10667
10966
  # </note>
10668
10967
  #
10968
+ # You must URL encode any signed header values that contain spaces. For
10969
+ # example, if your header value is `my file.txt`, containing two spaces
10970
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
10971
+ #
10669
10972
  #
10670
10973
  #
10671
10974
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/RESTAuthentication.html
@@ -10926,6 +11229,10 @@ module Aws::S3
10926
11229
  #
10927
11230
  # * [GetObjectAttributes][9]
10928
11231
  #
11232
+ # You must URL encode any signed header values that contain spaces. For
11233
+ # example, if your header value is `my file.txt`, containing two spaces
11234
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
11235
+ #
10929
11236
  #
10930
11237
  #
10931
11238
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/RESTCommonRequestHeaders.html
@@ -11351,6 +11658,10 @@ module Aws::S3
11351
11658
  #
11352
11659
  # * [PutBucketAnalyticsConfiguration][6]
11353
11660
  #
11661
+ # You must URL encode any signed header values that contain spaces. For
11662
+ # example, if your header value is `my file.txt`, containing two spaces
11663
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
11664
+ #
11354
11665
  #
11355
11666
  #
11356
11667
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources
@@ -11452,6 +11763,10 @@ module Aws::S3
11452
11763
  #
11453
11764
  # * [GetBucketIntelligentTieringConfiguration][4]
11454
11765
  #
11766
+ # You must URL encode any signed header values that contain spaces. For
11767
+ # example, if your header value is `my file.txt`, containing two spaces
11768
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
11769
+ #
11455
11770
  #
11456
11771
  #
11457
11772
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-class-intro.html#sc-dynamic-data-access
@@ -11520,7 +11835,7 @@ module Aws::S3
11520
11835
  # </note>
11521
11836
  #
11522
11837
  # Returns a list of S3 Inventory configurations for the bucket. You can
11523
- # have up to 1,000 analytics configurations per bucket.
11838
+ # have up to 1,000 inventory configurations per bucket.
11524
11839
  #
11525
11840
  # This action supports list pagination and does not return more than 100
11526
11841
  # configurations at a time. Always check the `IsTruncated` element in
@@ -11550,6 +11865,10 @@ module Aws::S3
11550
11865
  #
11551
11866
  # * [PutBucketInventoryConfiguration][6]
11552
11867
  #
11868
+ # You must URL encode any signed header values that contain spaces. For
11869
+ # example, if your header value is `my file.txt`, containing two spaces
11870
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
11871
+ #
11553
11872
  #
11554
11873
  #
11555
11874
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources
@@ -11654,6 +11973,10 @@ module Aws::S3
11654
11973
  #
11655
11974
  # * [DeleteBucketMetricsConfiguration][6]
11656
11975
  #
11976
+ # You must URL encode any signed header values that contain spaces. For
11977
+ # example, if your header value is `my file.txt`, containing two spaces
11978
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
11979
+ #
11657
11980
  #
11658
11981
  #
11659
11982
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources
@@ -11719,11 +12042,11 @@ module Aws::S3
11719
12042
  req.send_request(options)
11720
12043
  end
11721
12044
 
11722
- # End of support notice: Beginning October 1, 2025, Amazon S3 will stop
11723
- # returning `DisplayName`. Update your applications to use canonical IDs
11724
- # (unique identifier for Amazon Web Services accounts), Amazon Web
11725
- # Services account ID (12 digit identifier) or IAM ARNs (full resource
11726
- # naming) as a direct replacement of `DisplayName`.
12045
+ # End of support notice: Beginning November 21, 2025, Amazon S3 will
12046
+ # stop returning `DisplayName`. Update your applications to use
12047
+ # canonical IDs (unique identifier for Amazon Web Services accounts),
12048
+ # Amazon Web Services account ID (12 digit identifier) or IAM ARNs (full
12049
+ # resource naming) as a direct replacement of `DisplayName`.
11727
12050
  #
11728
12051
  # This change affects the following Amazon Web Services Regions: US
11729
12052
  # East
@@ -11752,6 +12075,10 @@ module Aws::S3
11752
12075
  # rejected for Amazon Web Services accounts with a general purpose
11753
12076
  # bucket quota greater than 10,000.
11754
12077
  #
12078
+ # You must URL encode any signed header values that contain spaces. For
12079
+ # example, if your header value is `my file.txt`, containing two spaces
12080
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
12081
+ #
11755
12082
  #
11756
12083
  #
11757
12084
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/creating-buckets-s3.html
@@ -11910,6 +12237,10 @@ module Aws::S3
11910
12237
  #
11911
12238
  # </note>
11912
12239
  #
12240
+ # You must URL encode any signed header values that contain spaces. For
12241
+ # example, if your header value is `my file.txt`, containing two spaces
12242
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
12243
+ #
11913
12244
  #
11914
12245
  #
11915
12246
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-buckets-overview.html
@@ -11960,11 +12291,11 @@ module Aws::S3
11960
12291
  req.send_request(options)
11961
12292
  end
11962
12293
 
11963
- # End of support notice: Beginning October 1, 2025, Amazon S3 will stop
11964
- # returning `DisplayName`. Update your applications to use canonical IDs
11965
- # (unique identifier for Amazon Web Services accounts), Amazon Web
11966
- # Services account ID (12 digit identifier) or IAM ARNs (full resource
11967
- # naming) as a direct replacement of `DisplayName`.
12294
+ # End of support notice: Beginning November 21, 2025, Amazon S3 will
12295
+ # stop returning `DisplayName`. Update your applications to use
12296
+ # canonical IDs (unique identifier for Amazon Web Services accounts),
12297
+ # Amazon Web Services account ID (12 digit identifier) or IAM ARNs (full
12298
+ # resource naming) as a direct replacement of `DisplayName`.
11968
12299
  #
11969
12300
  # This change affects the following Amazon Web Services Regions: US
11970
12301
  # East
@@ -12081,6 +12412,10 @@ module Aws::S3
12081
12412
  #
12082
12413
  # * [AbortMultipartUpload][10]
12083
12414
  #
12415
+ # You must URL encode any signed header values that contain spaces. For
12416
+ # example, if your header value is `my file.txt`, containing two spaces
12417
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
12418
+ #
12084
12419
  #
12085
12420
  #
12086
12421
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/uploadobjusingmpu.html
@@ -12422,11 +12757,11 @@ module Aws::S3
12422
12757
  req.send_request(options)
12423
12758
  end
12424
12759
 
12425
- # End of support notice: Beginning October 1, 2025, Amazon S3 will stop
12426
- # returning `DisplayName`. Update your applications to use canonical IDs
12427
- # (unique identifier for Amazon Web Services accounts), Amazon Web
12428
- # Services account ID (12 digit identifier) or IAM ARNs (full resource
12429
- # naming) as a direct replacement of `DisplayName`.
12760
+ # End of support notice: Beginning November 21, 2025, Amazon S3 will
12761
+ # stop returning `DisplayName`. Update your applications to use
12762
+ # canonical IDs (unique identifier for Amazon Web Services accounts),
12763
+ # Amazon Web Services account ID (12 digit identifier) or IAM ARNs (full
12764
+ # resource naming) as a direct replacement of `DisplayName`.
12430
12765
  #
12431
12766
  # This change affects the following Amazon Web Services Regions: US
12432
12767
  # East
@@ -12464,6 +12799,10 @@ module Aws::S3
12464
12799
  #
12465
12800
  # * [DeleteObject][4]
12466
12801
  #
12802
+ # You must URL encode any signed header values that contain spaces. For
12803
+ # example, if your header value is `my file.txt`, containing two spaces
12804
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
12805
+ #
12467
12806
  #
12468
12807
  #
12469
12808
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListObjectsV2.html
@@ -12678,11 +13017,11 @@ module Aws::S3
12678
13017
  req.send_request(options)
12679
13018
  end
12680
13019
 
12681
- # End of support notice: Beginning October 1, 2025, Amazon S3 will stop
12682
- # returning `DisplayName`. Update your applications to use canonical IDs
12683
- # (unique identifier for Amazon Web Services accounts), Amazon Web
12684
- # Services account ID (12 digit identifier) or IAM ARNs (full resource
12685
- # naming) as a direct replacement of `DisplayName`.
13020
+ # End of support notice: Beginning November 21, 2025, Amazon S3 will
13021
+ # stop returning `DisplayName`. Update your applications to use
13022
+ # canonical IDs (unique identifier for Amazon Web Services accounts),
13023
+ # Amazon Web Services account ID (12 digit identifier) or IAM ARNs (full
13024
+ # resource naming) as a direct replacement of `DisplayName`.
12686
13025
  #
12687
13026
  # This change affects the following Amazon Web Services Regions: US
12688
13027
  # East
@@ -12717,6 +13056,10 @@ module Aws::S3
12717
13056
  #
12718
13057
  # * [ListBuckets][5]
12719
13058
  #
13059
+ # You must URL encode any signed header values that contain spaces. For
13060
+ # example, if your header value is `my file.txt`, containing two spaces
13061
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
13062
+ #
12720
13063
  #
12721
13064
  #
12722
13065
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListObjectsV2.html
@@ -12930,6 +13273,19 @@ module Aws::S3
12930
13273
  req.send_request(options)
12931
13274
  end
12932
13275
 
13276
+ # End of support notice: Beginning November 21, 2025, Amazon S3 will
13277
+ # stop returning `DisplayName`. Update your applications to use
13278
+ # canonical IDs (unique identifier for Amazon Web Services accounts),
13279
+ # Amazon Web Services account ID (12 digit identifier) or IAM ARNs (full
13280
+ # resource naming) as a direct replacement of `DisplayName`.
13281
+ #
13282
+ # This change affects the following Amazon Web Services Regions: US
13283
+ # East
13284
+ # (N. Virginia) Region, US West (N. California) Region, US West (Oregon)
13285
+ # Region, Asia Pacific (Singapore) Region, Asia Pacific (Sydney) Region,
13286
+ # Asia Pacific (Tokyo) Region, Europe (Ireland) Region, and South
13287
+ # America (São Paulo) Region.
13288
+ #
12933
13289
  # Returns some or all (up to 1,000) of the objects in a bucket with each
12934
13290
  # request. You can use the request parameters as selection criteria to
12935
13291
  # return a subset of the objects in a bucket. A `200 OK` response can
@@ -13010,6 +13366,10 @@ module Aws::S3
13010
13366
  #
13011
13367
  # * [CreateBucket][11]
13012
13368
  #
13369
+ # You must URL encode any signed header values that contain spaces. For
13370
+ # example, if your header value is `my file.txt`, containing two spaces
13371
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
13372
+ #
13013
13373
  #
13014
13374
  #
13015
13375
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/ListingKeysUsingAPIs.html
@@ -13280,11 +13640,11 @@ module Aws::S3
13280
13640
  req.send_request(options)
13281
13641
  end
13282
13642
 
13283
- # End of support notice: Beginning October 1, 2025, Amazon S3 will stop
13284
- # returning `DisplayName`. Update your applications to use canonical IDs
13285
- # (unique identifier for Amazon Web Services accounts), Amazon Web
13286
- # Services account ID (12 digit identifier) or IAM ARNs (full resource
13287
- # naming) as a direct replacement of `DisplayName`.
13643
+ # End of support notice: Beginning November 21, 2025, Amazon S3 will
13644
+ # stop returning `DisplayName`. Update your applications to use
13645
+ # canonical IDs (unique identifier for Amazon Web Services accounts),
13646
+ # Amazon Web Services account ID (12 digit identifier) or IAM ARNs (full
13647
+ # resource naming) as a direct replacement of `DisplayName`.
13288
13648
  #
13289
13649
  # This change affects the following Amazon Web Services Regions: US
13290
13650
  # East
@@ -13372,6 +13732,10 @@ module Aws::S3
13372
13732
  #
13373
13733
  # * [ListMultipartUploads][11]
13374
13734
  #
13735
+ # You must URL encode any signed header values that contain spaces. For
13736
+ # example, if your header value is `my file.txt`, containing two spaces
13737
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
13738
+ #
13375
13739
  #
13376
13740
  #
13377
13741
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateMultipartUpload.html
@@ -13664,6 +14028,10 @@ module Aws::S3
13664
14028
  #
13665
14029
  # * [CreateBucket][5]
13666
14030
  #
14031
+ # You must URL encode any signed header values that contain spaces. For
14032
+ # example, if your header value is `my file.txt`, containing two spaces
14033
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
14034
+ #
13667
14035
  #
13668
14036
  #
13669
14037
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources
@@ -13721,19 +14089,17 @@ module Aws::S3
13721
14089
  req.send_request(options)
13722
14090
  end
13723
14091
 
13724
- # End of support notice: Beginning October 1, 2025, Amazon S3 will
13725
- # discontinue support for creating new Email Grantee Access Control
13726
- # Lists (ACL). Email Grantee ACLs created prior to this date will
13727
- # continue to work and remain accessible through the Amazon Web Services
13728
- # Management Console, Command Line Interface (CLI), SDKs, and REST API.
13729
- # However, you will no longer be able to create new Email Grantee ACLs.
14092
+ # End of support notice: As of October 1, 2025, Amazon S3 has
14093
+ # discontinued support for Email Grantee Access Control Lists (ACLs). If
14094
+ # you attempt to use an Email Grantee ACL in a request after October 1,
14095
+ # 2025, the request will receive an `HTTP 405` (Method Not Allowed)
14096
+ # error.
13730
14097
  #
13731
14098
  # This change affects the following Amazon Web Services Regions: US
13732
14099
  # East
13733
- # (N. Virginia) Region, US West (N. California) Region, US West (Oregon)
13734
- # Region, Asia Pacific (Singapore) Region, Asia Pacific (Sydney) Region,
13735
- # Asia Pacific (Tokyo) Region, Europe (Ireland) Region, and South
13736
- # America (São Paulo) Region.
14100
+ # (N. Virginia), US West (N. California), US West (Oregon), Asia Pacific
14101
+ # (Singapore), Asia Pacific (Sydney), Asia Pacific (Tokyo), Europe
14102
+ # (Ireland), and South America (São Paulo).
13737
14103
  #
13738
14104
  # <note markdown="1"> This operation is not supported for directory buckets.
13739
14105
  #
@@ -13900,6 +14266,10 @@ module Aws::S3
13900
14266
  #
13901
14267
  # * [GetObjectAcl][9]
13902
14268
  #
14269
+ # You must URL encode any signed header values that contain spaces. For
14270
+ # example, if your header value is `my file.txt`, containing two spaces
14271
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
14272
+ #
13903
14273
  #
13904
14274
  #
13905
14275
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/S3_ACLs_UsingACLs.html
@@ -14094,6 +14464,10 @@ module Aws::S3
14094
14464
  #
14095
14465
  # * [ListBucketAnalyticsConfigurations][7]
14096
14466
  #
14467
+ # You must URL encode any signed header values that contain spaces. For
14468
+ # example, if your header value is `my file.txt`, containing two spaces
14469
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
14470
+ #
14097
14471
  #
14098
14472
  #
14099
14473
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/analytics-storage-class.html
@@ -14219,6 +14593,10 @@ module Aws::S3
14219
14593
  #
14220
14594
  # * [RESTOPTIONSobject][4]
14221
14595
  #
14596
+ # You must URL encode any signed header values that contain spaces. For
14597
+ # example, if your header value is `my file.txt`, containing two spaces
14598
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
14599
+ #
14222
14600
  #
14223
14601
  #
14224
14602
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/cors.html
@@ -14350,7 +14728,8 @@ module Aws::S3
14350
14728
  end
14351
14729
 
14352
14730
  # This operation configures default encryption and Amazon S3 Bucket Keys
14353
- # for an existing bucket.
14731
+ # for an existing bucket. You can also block encryption types using this
14732
+ # operation.
14354
14733
  #
14355
14734
  # <note markdown="1"> <b>Directory buckets </b> - For directory buckets, you must make
14356
14735
  # requests for this API operation to the Regional endpoint. These
@@ -14466,6 +14845,10 @@ module Aws::S3
14466
14845
  #
14467
14846
  # * [DeleteBucketEncryption][17]
14468
14847
  #
14848
+ # You must URL encode any signed header values that contain spaces. For
14849
+ # example, if your header value is `my file.txt`, containing two spaces
14850
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
14851
+ #
14469
14852
  #
14470
14853
  #
14471
14854
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/endpoint-directory-buckets-AZ.html
@@ -14568,6 +14951,9 @@ module Aws::S3
14568
14951
  # kms_master_key_id: "SSEKMSKeyId",
14569
14952
  # },
14570
14953
  # bucket_key_enabled: false,
14954
+ # blocked_encryption_types: {
14955
+ # encryption_type: ["NONE"], # accepts NONE, SSE-C
14956
+ # },
14571
14957
  # },
14572
14958
  # ],
14573
14959
  # },
@@ -14647,6 +15033,10 @@ module Aws::S3
14647
15033
  # not have the `s3:PutIntelligentTieringConfiguration` bucket
14648
15034
  # permission to set the configuration on the bucket.
14649
15035
  #
15036
+ # You must URL encode any signed header values that contain spaces. For
15037
+ # example, if your header value is `my file.txt`, containing two spaces
15038
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
15039
+ #
14650
15040
  #
14651
15041
  #
14652
15042
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-class-intro.html#sc-dynamic-data-access
@@ -14792,6 +15182,10 @@ module Aws::S3
14792
15182
  #
14793
15183
  # * [ListBucketInventoryConfigurations][10]
14794
15184
  #
15185
+ # You must URL encode any signed header values that contain spaces. For
15186
+ # example, if your header value is `my file.txt`, containing two spaces
15187
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
15188
+ #
14795
15189
  #
14796
15190
  #
14797
15191
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html
@@ -14929,6 +15323,10 @@ module Aws::S3
14929
15323
  #
14930
15324
  # * [Managing Access Permissions to your Amazon S3 Resources][3]
14931
15325
  #
15326
+ # You must URL encode any signed header values that contain spaces. For
15327
+ # example, if your header value is `my file.txt`, containing two spaces
15328
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
15329
+ #
14932
15330
  #
14933
15331
  #
14934
15332
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketLifecycleConfiguration.html
@@ -15138,6 +15536,10 @@ module Aws::S3
15138
15536
  #
15139
15537
  # * [DeleteBucketLifecycle][10]
15140
15538
  #
15539
+ # You must URL encode any signed header values that contain spaces. For
15540
+ # example, if your header value is `my file.txt`, containing two spaces
15541
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
15542
+ #
15141
15543
  #
15142
15544
  #
15143
15545
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-lifecycle-mgmt.html
@@ -15315,19 +15717,17 @@ module Aws::S3
15315
15717
  req.send_request(options)
15316
15718
  end
15317
15719
 
15318
- # End of support notice: Beginning October 1, 2025, Amazon S3 will
15319
- # discontinue support for creating new Email Grantee Access Control
15320
- # Lists (ACL). Email Grantee ACLs created prior to this date will
15321
- # continue to work and remain accessible through the Amazon Web Services
15322
- # Management Console, Command Line Interface (CLI), SDKs, and REST API.
15323
- # However, you will no longer be able to create new Email Grantee ACLs.
15720
+ # End of support notice: As of October 1, 2025, Amazon S3 has
15721
+ # discontinued support for Email Grantee Access Control Lists (ACLs). If
15722
+ # you attempt to use an Email Grantee ACL in a request after October 1,
15723
+ # 2025, the request will receive an `HTTP 405` (Method Not Allowed)
15724
+ # error.
15324
15725
  #
15325
15726
  # This change affects the following Amazon Web Services Regions: US
15326
15727
  # East
15327
- # (N. Virginia) Region, US West (N. California) Region, US West (Oregon)
15328
- # Region, Asia Pacific (Singapore) Region, Asia Pacific (Sydney) Region,
15329
- # Asia Pacific (Tokyo) Region, Europe (Ireland) Region, and South
15330
- # America (São Paulo) Region.
15728
+ # (N. Virginia), US West (N. California), US West (Oregon), Asia Pacific
15729
+ # (Singapore), Asia Pacific (Sydney), Asia Pacific (Tokyo), Europe
15730
+ # (Ireland), and South America (São Paulo).
15331
15731
  #
15332
15732
  # <note markdown="1"> This operation is not supported for directory buckets.
15333
15733
  #
@@ -15402,6 +15802,10 @@ module Aws::S3
15402
15802
  #
15403
15803
  # * [GetBucketLogging][5]
15404
15804
  #
15805
+ # You must URL encode any signed header values that contain spaces. For
15806
+ # example, if your header value is `my file.txt`, containing two spaces
15807
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
15808
+ #
15405
15809
  #
15406
15810
  #
15407
15811
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/enable-server-access-logging.html#grant-log-delivery-permissions-general
@@ -15555,6 +15959,10 @@ module Aws::S3
15555
15959
  #
15556
15960
  # * HTTP Status Code: HTTP 400 Bad Request
15557
15961
  #
15962
+ # You must URL encode any signed header values that contain spaces. For
15963
+ # example, if your header value is `my file.txt`, containing two spaces
15964
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
15965
+ #
15558
15966
  #
15559
15967
  #
15560
15968
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources
@@ -15774,6 +16182,10 @@ module Aws::S3
15774
16182
  #
15775
16183
  # ^
15776
16184
  #
16185
+ # You must URL encode any signed header values that contain spaces. For
16186
+ # example, if your header value is `my file.txt`, containing two spaces
16187
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
16188
+ #
15777
16189
  #
15778
16190
  #
15779
16191
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/NotificationHowTo.html
@@ -15908,6 +16320,10 @@ module Aws::S3
15908
16320
  #
15909
16321
  # * DeleteBucketOwnershipControls
15910
16322
  #
16323
+ # You must URL encode any signed header values that contain spaces. For
16324
+ # example, if your header value is `my file.txt`, containing two spaces
16325
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
16326
+ #
15911
16327
  #
15912
16328
  #
15913
16329
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/user-guide/using-with-s3-actions.html
@@ -16048,6 +16464,10 @@ module Aws::S3
16048
16464
  #
16049
16465
  # * [DeleteBucket][8]
16050
16466
  #
16467
+ # You must URL encode any signed header values that contain spaces. For
16468
+ # example, if your header value is `my file.txt`, containing two spaces
16469
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
16470
+ #
16051
16471
  #
16052
16472
  #
16053
16473
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/endpoint-directory-buckets-AZ.html
@@ -16256,6 +16676,10 @@ module Aws::S3
16256
16676
  #
16257
16677
  # * [DeleteBucketReplication][11]
16258
16678
  #
16679
+ # You must URL encode any signed header values that contain spaces. For
16680
+ # example, if your header value is `my file.txt`, containing two spaces
16681
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
16682
+ #
16259
16683
  #
16260
16684
  #
16261
16685
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/replication.html
@@ -16437,6 +16861,10 @@ module Aws::S3
16437
16861
  #
16438
16862
  # * [GetBucketRequestPayment][3]
16439
16863
  #
16864
+ # You must URL encode any signed header values that contain spaces. For
16865
+ # example, if your header value is `my file.txt`, containing two spaces
16866
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
16867
+ #
16440
16868
  #
16441
16869
  #
16442
16870
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/RequesterPaysBuckets.html
@@ -16522,7 +16950,7 @@ module Aws::S3
16522
16950
  #
16523
16951
  # </note>
16524
16952
  #
16525
- # Sets the tags for a bucket.
16953
+ # Sets the tags for a general purpose bucket.
16526
16954
  #
16527
16955
  # Use tags to organize your Amazon Web Services bill to reflect your own
16528
16956
  # cost structure. To do this, sign up to get your Amazon Web Services
@@ -16570,6 +16998,10 @@ module Aws::S3
16570
16998
  #
16571
16999
  # * [DeleteBucketTagging][7]
16572
17000
  #
17001
+ # You must URL encode any signed header values that contain spaces. For
17002
+ # example, if your header value is `my file.txt`, containing two spaces
17003
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
17004
+ #
16573
17005
  #
16574
17006
  #
16575
17007
  # [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html
@@ -16720,6 +17152,10 @@ module Aws::S3
16720
17152
  #
16721
17153
  # * [GetBucketVersioning][1]
16722
17154
  #
17155
+ # You must URL encode any signed header values that contain spaces. For
17156
+ # example, if your header value is `my file.txt`, containing two spaces
17157
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
17158
+ #
16723
17159
  #
16724
17160
  #
16725
17161
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketVersioning.html
@@ -16763,6 +17199,17 @@ module Aws::S3
16763
17199
  # @option params [String] :mfa
16764
17200
  # The concatenation of the authentication device's serial number, a
16765
17201
  # space, and the value that is displayed on your authentication device.
17202
+ # The serial number is the number that uniquely identifies the MFA
17203
+ # device. For physical MFA devices, this is the unique serial number
17204
+ # that's provided with the device. For virtual MFA devices, the serial
17205
+ # number is the device ARN. For more information, see [Enabling
17206
+ # versioning on buckets][1] and [Configuring MFA delete][2] in the
17207
+ # *Amazon Simple Storage Service User Guide*.
17208
+ #
17209
+ #
17210
+ #
17211
+ # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/manage-versioning-examples.html
17212
+ # [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/MultiFactorAuthenticationDelete.html
16766
17213
  #
16767
17214
  # @option params [required, Types::VersioningConfiguration] :versioning_configuration
16768
17215
  # Container for setting the versioning state.
@@ -16884,6 +17331,10 @@ module Aws::S3
16884
17331
  #
16885
17332
  # The maximum request length is limited to 128 KB.
16886
17333
  #
17334
+ # You must URL encode any signed header values that contain spaces. For
17335
+ # example, if your header value is `my file.txt`, containing two spaces
17336
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
17337
+ #
16887
17338
  #
16888
17339
  #
16889
17340
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/WebsiteHosting.html
@@ -16994,19 +17445,17 @@ module Aws::S3
16994
17445
  req.send_request(options)
16995
17446
  end
16996
17447
 
16997
- # End of support notice: Beginning October 1, 2025, Amazon S3 will
16998
- # discontinue support for creating new Email Grantee Access Control
16999
- # Lists (ACL). Email Grantee ACLs created prior to this date will
17000
- # continue to work and remain accessible through the Amazon Web Services
17001
- # Management Console, Command Line Interface (CLI), SDKs, and REST API.
17002
- # However, you will no longer be able to create new Email Grantee ACLs.
17448
+ # End of support notice: As of October 1, 2025, Amazon S3 has
17449
+ # discontinued support for Email Grantee Access Control Lists (ACLs). If
17450
+ # you attempt to use an Email Grantee ACL in a request after October 1,
17451
+ # 2025, the request will receive an `HTTP 405` (Method Not Allowed)
17452
+ # error.
17003
17453
  #
17004
17454
  # This change affects the following Amazon Web Services Regions: US
17005
17455
  # East
17006
- # (N. Virginia) Region, US West (N. California) Region, US West (Oregon)
17007
- # Region, Asia Pacific (Singapore) Region, Asia Pacific (Sydney) Region,
17008
- # Asia Pacific (Tokyo) Region, Europe (Ireland) Region, and South
17009
- # America (São Paulo) Region.
17456
+ # (N. Virginia), US West (N. California), US West (Oregon), Asia Pacific
17457
+ # (Singapore), Asia Pacific (Sydney), Asia Pacific (Tokyo), Europe
17458
+ # (Ireland), and South America (São Paulo).
17010
17459
  #
17011
17460
  # Adds an object to a bucket.
17012
17461
  #
@@ -17137,6 +17586,10 @@ module Aws::S3
17137
17586
  #
17138
17587
  # * [DeleteObject][10]
17139
17588
  #
17589
+ # You must URL encode any signed header values that contain spaces. For
17590
+ # example, if your header value is `my file.txt`, containing two spaces
17591
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
17592
+ #
17140
17593
  #
17141
17594
  #
17142
17595
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/endpoint-directory-buckets-AZ.html
@@ -18037,6 +18490,18 @@ module Aws::S3
18037
18490
  req.send_request(options)
18038
18491
  end
18039
18492
 
18493
+ # End of support notice: As of October 1, 2025, Amazon S3 has
18494
+ # discontinued support for Email Grantee Access Control Lists (ACLs). If
18495
+ # you attempt to use an Email Grantee ACL in a request after October 1,
18496
+ # 2025, the request will receive an `HTTP 405` (Method Not Allowed)
18497
+ # error.
18498
+ #
18499
+ # This change affects the following Amazon Web Services Regions: US
18500
+ # East
18501
+ # (N. Virginia), US West (N. California), US West (Oregon), Asia Pacific
18502
+ # (Singapore), Asia Pacific (Sydney), Asia Pacific (Tokyo), Europe
18503
+ # (Ireland), and South America (São Paulo).
18504
+ #
18040
18505
  # <note markdown="1"> This operation is not supported for directory buckets.
18041
18506
  #
18042
18507
  # </note>
@@ -18197,6 +18662,10 @@ module Aws::S3
18197
18662
  #
18198
18663
  # * [GetObject][8]
18199
18664
  #
18665
+ # You must URL encode any signed header values that contain spaces. For
18666
+ # example, if your header value is `my file.txt`, containing two spaces
18667
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
18668
+ #
18200
18669
  #
18201
18670
  #
18202
18671
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html#permissions
@@ -18421,6 +18890,10 @@ module Aws::S3
18421
18890
  #
18422
18891
  # This functionality is not supported for Amazon S3 on Outposts.
18423
18892
  #
18893
+ # You must URL encode any signed header values that contain spaces. For
18894
+ # example, if your header value is `my file.txt`, containing two spaces
18895
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
18896
+ #
18424
18897
  #
18425
18898
  #
18426
18899
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lock.html
@@ -18553,6 +19026,10 @@ module Aws::S3
18553
19026
  #
18554
19027
  # </note>
18555
19028
  #
19029
+ # You must URL encode any signed header values that contain spaces. For
19030
+ # example, if your header value is `my file.txt`, containing two spaces
19031
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
19032
+ #
18556
19033
  #
18557
19034
  #
18558
19035
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lock.html
@@ -18664,6 +19141,10 @@ module Aws::S3
18664
19141
  #
18665
19142
  # This functionality is not supported for Amazon S3 on Outposts.
18666
19143
  #
19144
+ # You must URL encode any signed header values that contain spaces. For
19145
+ # example, if your header value is `my file.txt`, containing two spaces
19146
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
19147
+ #
18667
19148
  #
18668
19149
  #
18669
19150
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lock.html
@@ -18828,6 +19309,10 @@ module Aws::S3
18828
19309
  #
18829
19310
  # * [DeleteObjectTagging][5]
18830
19311
  #
19312
+ # You must URL encode any signed header values that contain spaces. For
19313
+ # example, if your header value is `my file.txt`, containing two spaces
19314
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
19315
+ #
18831
19316
  #
18832
19317
  #
18833
19318
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-tagging.html
@@ -18904,21 +19389,9 @@ module Aws::S3
18904
19389
  # fails with the HTTP status code `403 Forbidden` (access denied).
18905
19390
  #
18906
19391
  # @option params [String] :request_payer
18907
- # Confirms that the requester knows that they will be charged for the
18908
- # request. Bucket owners need not specify this parameter in their
18909
- # requests. If either the source or destination S3 bucket has Requester
18910
- # Pays enabled, the requester will pay for corresponding charges to copy
18911
- # the object. For information about downloading objects from Requester
18912
- # Pays buckets, see [Downloading Objects in Requester Pays Buckets][1]
18913
- # in the *Amazon S3 User Guide*.
18914
- #
18915
- # <note markdown="1"> This functionality is not supported for directory buckets.
18916
- #
18917
- # </note>
18918
- #
18919
- #
18920
- #
18921
- # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
19392
+ # Confirms that the requester knows that she or he will be charged for
19393
+ # the tagging object request. Bucket owners need not specify this
19394
+ # parameter in their requests.
18922
19395
  #
18923
19396
  # @return [Types::PutObjectTaggingOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
18924
19397
  #
@@ -19014,6 +19487,10 @@ module Aws::S3
19014
19487
  #
19015
19488
  # * [Using Amazon S3 Block Public Access][6]
19016
19489
  #
19490
+ # You must URL encode any signed header values that contain spaces. For
19491
+ # example, if your header value is `my file.txt`, containing two spaces
19492
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
19493
+ #
19017
19494
  #
19018
19495
  #
19019
19496
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-with-s3-actions.html
@@ -19143,6 +19620,10 @@ module Aws::S3
19143
19620
  # : <b>Directory buckets </b> - The HTTP Host header syntax is `
19144
19621
  # Bucket-name.s3express-zone-id.region-code.amazonaws.com`.
19145
19622
  #
19623
+ # You must URL encode any signed header values that contain spaces. For
19624
+ # example, if your header value is `my file.txt`, containing two spaces
19625
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
19626
+ #
19146
19627
  #
19147
19628
  #
19148
19629
  # [1]: https://datatracker.ietf.org/doc/rfc7232/
@@ -19427,6 +19908,10 @@ module Aws::S3
19427
19908
  #
19428
19909
  # * [GetBucketNotificationConfiguration][11]
19429
19910
  #
19911
+ # You must URL encode any signed header values that contain spaces. For
19912
+ # example, if your header value is `my file.txt`, containing two spaces
19913
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
19914
+ #
19430
19915
  #
19431
19916
  #
19432
19917
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObject.html
@@ -19750,6 +20235,10 @@ module Aws::S3
19750
20235
  #
19751
20236
  # * [PutBucketLifecycleConfiguration][12]
19752
20237
  #
20238
+ # You must URL encode any signed header values that contain spaces. For
20239
+ # example, if your header value is `my file.txt`, containing two spaces
20240
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
20241
+ #
19753
20242
  #
19754
20243
  #
19755
20244
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/selecting-content-from-objects.html
@@ -20114,6 +20603,10 @@ module Aws::S3
20114
20603
  #
20115
20604
  # * [UpdateBucketMetadataJournalTableConfiguration][6]
20116
20605
  #
20606
+ # You must URL encode any signed header values that contain spaces. For
20607
+ # example, if your header value is `my file.txt`, containing two spaces
20608
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
20609
+ #
20117
20610
  #
20118
20611
  #
20119
20612
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/metadata-tables-overview.html
@@ -20192,6 +20685,10 @@ module Aws::S3
20192
20685
  #
20193
20686
  # * [UpdateBucketMetadataInventoryTableConfiguration][6]
20194
20687
  #
20688
+ # You must URL encode any signed header values that contain spaces. For
20689
+ # example, if your header value is `my file.txt`, containing two spaces
20690
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
20691
+ #
20195
20692
  #
20196
20693
  #
20197
20694
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/metadata-tables-overview.html
@@ -20419,6 +20916,10 @@ module Aws::S3
20419
20916
  #
20420
20917
  # * [ListMultipartUploads][16]
20421
20918
  #
20919
+ # You must URL encode any signed header values that contain spaces. For
20920
+ # example, if your header value is `my file.txt`, containing two spaces
20921
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
20922
+ #
20422
20923
  #
20423
20924
  #
20424
20925
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_UploadPartCopy.html
@@ -20890,6 +21391,10 @@ module Aws::S3
20890
21391
  #
20891
21392
  # * [ListMultipartUploads][20]
20892
21393
  #
21394
+ # You must URL encode any signed header values that contain spaces. For
21395
+ # example, if your header value is `my file.txt`, containing two spaces
21396
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
21397
+ #
20893
21398
  #
20894
21399
  #
20895
21400
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/qfacts.html
@@ -21353,6 +21858,10 @@ module Aws::S3
21353
21858
  # Amazon Web Services built Lambda functions][3] in the *Amazon S3 User
21354
21859
  # Guide*.
21355
21860
  #
21861
+ # You must URL encode any signed header values that contain spaces. For
21862
+ # example, if your header value is `my file.txt`, containing two spaces
21863
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
21864
+ #
21356
21865
  #
21357
21866
  #
21358
21867
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/transforming-objects.html
@@ -21735,7 +22244,7 @@ module Aws::S3
21735
22244
  tracer: tracer
21736
22245
  )
21737
22246
  context[:gem_name] = 'aws-sdk-s3'
21738
- context[:gem_version] = '1.200.0'
22247
+ context[:gem_version] = '1.204.0'
21739
22248
  Seahorse::Client::Request.new(handlers, context)
21740
22249
  end
21741
22250