aws-sdk-s3 1.201.0 → 1.202.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/bucket_versioning.rb +33 -0
- data/lib/aws-sdk-s3/client.rb +644 -155
- data/lib/aws-sdk-s3/client_api.rb +2 -0
- data/lib/aws-sdk-s3/endpoint_parameters.rb +17 -17
- data/lib/aws-sdk-s3/object.rb +52 -23
- data/lib/aws-sdk-s3/object_summary.rb +38 -9
- data/lib/aws-sdk-s3/object_version.rb +7 -9
- data/lib/aws-sdk-s3/plugins/endpoints.rb +1 -1
- data/lib/aws-sdk-s3/types.rb +198 -142
- data/lib/aws-sdk-s3.rb +1 -1
- data/sig/client.rbs +2 -0
- data/sig/object.rbs +2 -0
- data/sig/object_summary.rbs +2 -0
- data/sig/types.rbs +2 -0
- metadata +1 -1
data/lib/aws-sdk-s3/client.rb
CHANGED
|
@@ -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 [
|
|
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
|
-
#
|
|
1290
|
-
#
|
|
1291
|
-
#
|
|
1292
|
-
#
|
|
1293
|
-
#
|
|
1294
|
-
#
|
|
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)
|
|
1299
|
-
#
|
|
1300
|
-
#
|
|
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:
|
|
2381
|
-
#
|
|
2382
|
-
#
|
|
2383
|
-
#
|
|
2384
|
-
#
|
|
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)
|
|
2390
|
-
#
|
|
2391
|
-
#
|
|
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:
|
|
2967
|
-
#
|
|
2968
|
-
#
|
|
2969
|
-
#
|
|
2970
|
-
#
|
|
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)
|
|
2976
|
-
#
|
|
2977
|
-
#
|
|
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
|
|
@@ -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
|
|
@@ -5533,6 +5639,16 @@ module Aws::S3
|
|
|
5533
5639
|
#
|
|
5534
5640
|
# ^
|
|
5535
5641
|
#
|
|
5642
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
5643
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
5644
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
5645
|
+
#
|
|
5646
|
+
# <note markdown="1"> The `If-Match` header is supported for both general purpose and
|
|
5647
|
+
# directory buckets. `IfMatchLastModifiedTime` and `IfMatchSize` is only
|
|
5648
|
+
# supported for directory buckets.
|
|
5649
|
+
#
|
|
5650
|
+
# </note>
|
|
5651
|
+
#
|
|
5536
5652
|
#
|
|
5537
5653
|
#
|
|
5538
5654
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/DeletingObjectVersions.html
|
|
@@ -5643,17 +5759,15 @@ module Aws::S3
|
|
|
5643
5759
|
# fails with the HTTP status code `403 Forbidden` (access denied).
|
|
5644
5760
|
#
|
|
5645
5761
|
# @option params [String] :if_match
|
|
5646
|
-
#
|
|
5647
|
-
#
|
|
5648
|
-
#
|
|
5649
|
-
#
|
|
5650
|
-
# response`.
|
|
5762
|
+
# Deletes the object if the ETag (entity tag) value provided during the
|
|
5763
|
+
# delete operation matches the ETag of the object in S3. If the ETag
|
|
5764
|
+
# values do not match, the operation returns a `412 Precondition Failed`
|
|
5765
|
+
# error.
|
|
5651
5766
|
#
|
|
5652
|
-
#
|
|
5767
|
+
# Expects the ETag value as a string. `If-Match` does accept a string
|
|
5768
|
+
# value of an '*' (asterisk) character to denote a match of any ETag.
|
|
5653
5769
|
#
|
|
5654
|
-
#
|
|
5655
|
-
#
|
|
5656
|
-
# </note>
|
|
5770
|
+
# For more information about conditional requests, see [RFC 7232][1].
|
|
5657
5771
|
#
|
|
5658
5772
|
#
|
|
5659
5773
|
#
|
|
@@ -5764,6 +5878,10 @@ module Aws::S3
|
|
|
5764
5878
|
#
|
|
5765
5879
|
# * [GetObjectTagging][3]
|
|
5766
5880
|
#
|
|
5881
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
5882
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
5883
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
5884
|
+
#
|
|
5767
5885
|
#
|
|
5768
5886
|
#
|
|
5769
5887
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/object-tagging.html
|
|
@@ -5978,6 +6096,10 @@ module Aws::S3
|
|
|
5978
6096
|
#
|
|
5979
6097
|
# * [AbortMultipartUpload][9]
|
|
5980
6098
|
#
|
|
6099
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
6100
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
6101
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
6102
|
+
#
|
|
5981
6103
|
#
|
|
5982
6104
|
#
|
|
5983
6105
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/endpoint-directory-buckets-AZ.html
|
|
@@ -6274,6 +6396,10 @@ module Aws::S3
|
|
|
6274
6396
|
#
|
|
6275
6397
|
# * [GetBucketPolicyStatus][6]
|
|
6276
6398
|
#
|
|
6399
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
6400
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
6401
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
6402
|
+
#
|
|
6277
6403
|
#
|
|
6278
6404
|
#
|
|
6279
6405
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources
|
|
@@ -6346,6 +6472,10 @@ module Aws::S3
|
|
|
6346
6472
|
#
|
|
6347
6473
|
# ^
|
|
6348
6474
|
#
|
|
6475
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
6476
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
6477
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
6478
|
+
#
|
|
6349
6479
|
#
|
|
6350
6480
|
#
|
|
6351
6481
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources
|
|
@@ -6406,11 +6536,11 @@ module Aws::S3
|
|
|
6406
6536
|
req.send_request(options)
|
|
6407
6537
|
end
|
|
6408
6538
|
|
|
6409
|
-
# End of support notice: Beginning
|
|
6410
|
-
# returning `DisplayName`. Update your applications to use
|
|
6411
|
-
# (unique identifier for Amazon Web Services accounts),
|
|
6412
|
-
# Services account ID (12 digit identifier) or IAM ARNs (full
|
|
6413
|
-
# naming) as a direct replacement of `DisplayName`.
|
|
6539
|
+
# End of support notice: Beginning November 21, 2025, Amazon S3 will
|
|
6540
|
+
# stop returning `DisplayName`. Update your applications to use
|
|
6541
|
+
# canonical IDs (unique identifier for Amazon Web Services accounts),
|
|
6542
|
+
# Amazon Web Services account ID (12 digit identifier) or IAM ARNs (full
|
|
6543
|
+
# resource naming) as a direct replacement of `DisplayName`.
|
|
6414
6544
|
#
|
|
6415
6545
|
# This change affects the following Amazon Web Services Regions: US
|
|
6416
6546
|
# East
|
|
@@ -6448,6 +6578,10 @@ module Aws::S3
|
|
|
6448
6578
|
#
|
|
6449
6579
|
# </note>
|
|
6450
6580
|
#
|
|
6581
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
6582
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
6583
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
6584
|
+
#
|
|
6451
6585
|
# The following operations are related to `GetBucketAcl`:
|
|
6452
6586
|
#
|
|
6453
6587
|
# * [ListObjects][3]
|
|
@@ -6543,6 +6677,10 @@ module Aws::S3
|
|
|
6543
6677
|
#
|
|
6544
6678
|
# * [PutBucketAnalyticsConfiguration][6]
|
|
6545
6679
|
#
|
|
6680
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
6681
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
6682
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
6683
|
+
#
|
|
6546
6684
|
#
|
|
6547
6685
|
#
|
|
6548
6686
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources
|
|
@@ -6631,6 +6769,10 @@ module Aws::S3
|
|
|
6631
6769
|
#
|
|
6632
6770
|
# * [DeleteBucketCors][4]
|
|
6633
6771
|
#
|
|
6772
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
6773
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
6774
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
6775
|
+
#
|
|
6634
6776
|
#
|
|
6635
6777
|
#
|
|
6636
6778
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html#ErrorCodeList
|
|
@@ -6768,6 +6910,10 @@ module Aws::S3
|
|
|
6768
6910
|
#
|
|
6769
6911
|
# * [DeleteBucketEncryption][7]
|
|
6770
6912
|
#
|
|
6913
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
6914
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
6915
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
6916
|
+
#
|
|
6771
6917
|
#
|
|
6772
6918
|
#
|
|
6773
6919
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/bucket-encryption.html
|
|
@@ -6870,6 +7016,10 @@ module Aws::S3
|
|
|
6870
7016
|
#
|
|
6871
7017
|
# * [ListBucketIntelligentTieringConfigurations][4]
|
|
6872
7018
|
#
|
|
7019
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
7020
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
7021
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
7022
|
+
#
|
|
6873
7023
|
#
|
|
6874
7024
|
#
|
|
6875
7025
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-class-intro.html#sc-dynamic-data-access
|
|
@@ -6951,6 +7101,10 @@ module Aws::S3
|
|
|
6951
7101
|
#
|
|
6952
7102
|
# * [PutBucketInventoryConfiguration][6]
|
|
6953
7103
|
#
|
|
7104
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
7105
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
7106
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
7107
|
+
#
|
|
6954
7108
|
#
|
|
6955
7109
|
#
|
|
6956
7110
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources
|
|
@@ -7047,6 +7201,10 @@ module Aws::S3
|
|
|
7047
7201
|
#
|
|
7048
7202
|
# * [DeleteBucketLifecycle][6]
|
|
7049
7203
|
#
|
|
7204
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
7205
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
7206
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
7207
|
+
#
|
|
7050
7208
|
#
|
|
7051
7209
|
#
|
|
7052
7210
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketLifecycleConfiguration.html
|
|
@@ -7208,6 +7366,10 @@ module Aws::S3
|
|
|
7208
7366
|
#
|
|
7209
7367
|
# * [DeleteBucketLifecycle][8]
|
|
7210
7368
|
#
|
|
7369
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
7370
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
7371
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
7372
|
+
#
|
|
7211
7373
|
#
|
|
7212
7374
|
#
|
|
7213
7375
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lifecycle-mgmt.html
|
|
@@ -7312,13 +7474,25 @@ module Aws::S3
|
|
|
7312
7474
|
req.send_request(options)
|
|
7313
7475
|
end
|
|
7314
7476
|
|
|
7315
|
-
#
|
|
7316
|
-
#
|
|
7317
|
-
#
|
|
7477
|
+
# Using the `GetBucketLocation` operation is no longer a best practice.
|
|
7478
|
+
# To return the Region that a bucket resides in, we recommend that you
|
|
7479
|
+
# use the [HeadBucket][1] operation instead. For backward compatibility,
|
|
7480
|
+
# Amazon S3 continues to support the `GetBucketLocation` operation.
|
|
7318
7481
|
#
|
|
7319
7482
|
# Returns the Region the bucket resides in. You set the bucket's Region
|
|
7320
7483
|
# using the `LocationConstraint` request parameter in a `CreateBucket`
|
|
7321
|
-
# request. For more information, see [CreateBucket][
|
|
7484
|
+
# request. For more information, see [CreateBucket][2].
|
|
7485
|
+
#
|
|
7486
|
+
# <note markdown="1"> In a bucket's home Region, calls to the `GetBucketLocation` operation
|
|
7487
|
+
# are governed by the bucket's policy. In other Regions, the bucket
|
|
7488
|
+
# policy doesn't apply, which means that cross-account access won't be
|
|
7489
|
+
# authorized. However, calls to the `HeadBucket` operation always return
|
|
7490
|
+
# the bucket’s location through an HTTP response header, whether access
|
|
7491
|
+
# to the bucket is authorized or not. Therefore, we recommend using the
|
|
7492
|
+
# `HeadBucket` operation for bucket Region discovery and to avoid using
|
|
7493
|
+
# the `GetBucketLocation` operation.
|
|
7494
|
+
#
|
|
7495
|
+
# </note>
|
|
7322
7496
|
#
|
|
7323
7497
|
# When you use this API operation with an access point, provide the
|
|
7324
7498
|
# alias of the access point in place of the bucket name.
|
|
@@ -7328,11 +7502,9 @@ module Aws::S3
|
|
|
7328
7502
|
# bucket name. If the Object Lambda access point alias in a request is
|
|
7329
7503
|
# not valid, the error code `InvalidAccessPointAliasError` is returned.
|
|
7330
7504
|
# For more information about `InvalidAccessPointAliasError`, see [List
|
|
7331
|
-
# of Error Codes][
|
|
7505
|
+
# of Error Codes][3].
|
|
7332
7506
|
#
|
|
7333
|
-
# <note markdown="1">
|
|
7334
|
-
# bucket resides in. For backward compatibility, Amazon S3 continues to
|
|
7335
|
-
# support GetBucketLocation.
|
|
7507
|
+
# <note markdown="1"> This operation is not supported for directory buckets.
|
|
7336
7508
|
#
|
|
7337
7509
|
# </note>
|
|
7338
7510
|
#
|
|
@@ -7340,13 +7512,17 @@ module Aws::S3
|
|
|
7340
7512
|
#
|
|
7341
7513
|
# * [GetObject][4]
|
|
7342
7514
|
#
|
|
7343
|
-
# * [CreateBucket][
|
|
7515
|
+
# * [CreateBucket][2]
|
|
7344
7516
|
#
|
|
7517
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
7518
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
7519
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
7345
7520
|
#
|
|
7346
7521
|
#
|
|
7347
|
-
#
|
|
7348
|
-
# [
|
|
7349
|
-
# [
|
|
7522
|
+
#
|
|
7523
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_HeadBucket.html
|
|
7524
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucket.html
|
|
7525
|
+
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html#ErrorCodeList
|
|
7350
7526
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html
|
|
7351
7527
|
#
|
|
7352
7528
|
# @option params [required, String] :bucket
|
|
@@ -7409,11 +7585,11 @@ module Aws::S3
|
|
|
7409
7585
|
req.send_request(options)
|
|
7410
7586
|
end
|
|
7411
7587
|
|
|
7412
|
-
# End of support notice: Beginning
|
|
7413
|
-
# returning `DisplayName`. Update your applications to use
|
|
7414
|
-
# (unique identifier for Amazon Web Services accounts),
|
|
7415
|
-
# Services account ID (12 digit identifier) or IAM ARNs (full
|
|
7416
|
-
# naming) as a direct replacement of `DisplayName`.
|
|
7588
|
+
# End of support notice: Beginning November 21, 2025, Amazon S3 will
|
|
7589
|
+
# stop returning `DisplayName`. Update your applications to use
|
|
7590
|
+
# canonical IDs (unique identifier for Amazon Web Services accounts),
|
|
7591
|
+
# Amazon Web Services account ID (12 digit identifier) or IAM ARNs (full
|
|
7592
|
+
# resource naming) as a direct replacement of `DisplayName`.
|
|
7417
7593
|
#
|
|
7418
7594
|
# This change affects the following Amazon Web Services Regions: US
|
|
7419
7595
|
# East
|
|
@@ -7435,6 +7611,10 @@ module Aws::S3
|
|
|
7435
7611
|
#
|
|
7436
7612
|
# * [PutBucketLogging][2]
|
|
7437
7613
|
#
|
|
7614
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
7615
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
7616
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
7617
|
+
#
|
|
7438
7618
|
#
|
|
7439
7619
|
#
|
|
7440
7620
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucket.html
|
|
@@ -7516,6 +7696,10 @@ module Aws::S3
|
|
|
7516
7696
|
#
|
|
7517
7697
|
# * [UpdateBucketMetadataJournalTableConfiguration][6]
|
|
7518
7698
|
#
|
|
7699
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
7700
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
7701
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
7702
|
+
#
|
|
7519
7703
|
#
|
|
7520
7704
|
#
|
|
7521
7705
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/metadata-tables-overview.html
|
|
@@ -7614,6 +7798,10 @@ module Aws::S3
|
|
|
7614
7798
|
#
|
|
7615
7799
|
# * [DeleteBucketMetadataTableConfiguration][6]
|
|
7616
7800
|
#
|
|
7801
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
7802
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
7803
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
7804
|
+
#
|
|
7617
7805
|
#
|
|
7618
7806
|
#
|
|
7619
7807
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketMetadataTableConfiguration.html
|
|
@@ -7690,6 +7878,10 @@ module Aws::S3
|
|
|
7690
7878
|
#
|
|
7691
7879
|
# * [Monitoring Metrics with Amazon CloudWatch][3]
|
|
7692
7880
|
#
|
|
7881
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
7882
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
7883
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
7884
|
+
#
|
|
7693
7885
|
#
|
|
7694
7886
|
#
|
|
7695
7887
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources
|
|
@@ -7913,6 +8105,10 @@ module Aws::S3
|
|
|
7913
8105
|
#
|
|
7914
8106
|
# ^
|
|
7915
8107
|
#
|
|
8108
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
8109
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
8110
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
8111
|
+
#
|
|
7916
8112
|
#
|
|
7917
8113
|
#
|
|
7918
8114
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html#ErrorCodeList
|
|
@@ -8026,6 +8222,10 @@ module Aws::S3
|
|
|
8026
8222
|
#
|
|
8027
8223
|
# * DeleteBucketOwnershipControls
|
|
8028
8224
|
#
|
|
8225
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
8226
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
8227
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
8228
|
+
#
|
|
8029
8229
|
#
|
|
8030
8230
|
#
|
|
8031
8231
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html
|
|
@@ -8137,6 +8337,10 @@ module Aws::S3
|
|
|
8137
8337
|
#
|
|
8138
8338
|
# ^
|
|
8139
8339
|
#
|
|
8340
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
8341
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
8342
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
8343
|
+
#
|
|
8140
8344
|
#
|
|
8141
8345
|
#
|
|
8142
8346
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/endpoint-directory-buckets-AZ.html
|
|
@@ -8253,6 +8457,10 @@ module Aws::S3
|
|
|
8253
8457
|
#
|
|
8254
8458
|
# * [DeletePublicAccessBlock][6]
|
|
8255
8459
|
#
|
|
8460
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
8461
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
8462
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
8463
|
+
#
|
|
8256
8464
|
#
|
|
8257
8465
|
#
|
|
8258
8466
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-with-s3-actions.html
|
|
@@ -8327,6 +8535,10 @@ module Aws::S3
|
|
|
8327
8535
|
#
|
|
8328
8536
|
# * [DeleteBucketReplication][5]
|
|
8329
8537
|
#
|
|
8538
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
8539
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
8540
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
8541
|
+
#
|
|
8330
8542
|
#
|
|
8331
8543
|
#
|
|
8332
8544
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/replication.html
|
|
@@ -8432,6 +8644,10 @@ module Aws::S3
|
|
|
8432
8644
|
#
|
|
8433
8645
|
# ^
|
|
8434
8646
|
#
|
|
8647
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
8648
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
8649
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
8650
|
+
#
|
|
8435
8651
|
#
|
|
8436
8652
|
#
|
|
8437
8653
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/RequesterPaysBuckets.html
|
|
@@ -8508,6 +8724,10 @@ module Aws::S3
|
|
|
8508
8724
|
#
|
|
8509
8725
|
# * [DeleteBucketTagging][2]
|
|
8510
8726
|
#
|
|
8727
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
8728
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
8729
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
8730
|
+
#
|
|
8511
8731
|
#
|
|
8512
8732
|
#
|
|
8513
8733
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketTagging.html
|
|
@@ -8592,6 +8812,10 @@ module Aws::S3
|
|
|
8592
8812
|
#
|
|
8593
8813
|
# * [DeleteObject][3]
|
|
8594
8814
|
#
|
|
8815
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
8816
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
8817
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
8818
|
+
#
|
|
8595
8819
|
#
|
|
8596
8820
|
#
|
|
8597
8821
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html
|
|
@@ -8668,6 +8892,10 @@ module Aws::S3
|
|
|
8668
8892
|
#
|
|
8669
8893
|
# * [PutBucketWebsite][3]
|
|
8670
8894
|
#
|
|
8895
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
8896
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
8897
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
8898
|
+
#
|
|
8671
8899
|
#
|
|
8672
8900
|
#
|
|
8673
8901
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/WebsiteHosting.html
|
|
@@ -8902,6 +9130,10 @@ module Aws::S3
|
|
|
8902
9130
|
#
|
|
8903
9131
|
# * [GetObjectAcl][10]
|
|
8904
9132
|
#
|
|
9133
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
9134
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
9135
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
9136
|
+
#
|
|
8905
9137
|
#
|
|
8906
9138
|
#
|
|
8907
9139
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/VirtualHosting.html#VirtualHostingSpecifyBucket
|
|
@@ -9407,6 +9639,19 @@ module Aws::S3
|
|
|
9407
9639
|
req.send_request(options, &block)
|
|
9408
9640
|
end
|
|
9409
9641
|
|
|
9642
|
+
# End of support notice: Beginning November 21, 2025, Amazon S3 will
|
|
9643
|
+
# stop returning `DisplayName`. Update your applications to use
|
|
9644
|
+
# canonical IDs (unique identifier for Amazon Web Services accounts),
|
|
9645
|
+
# Amazon Web Services account ID (12 digit identifier) or IAM ARNs (full
|
|
9646
|
+
# resource naming) as a direct replacement of `DisplayName`.
|
|
9647
|
+
#
|
|
9648
|
+
# This change affects the following Amazon Web Services Regions: US
|
|
9649
|
+
# East
|
|
9650
|
+
# (N. Virginia) Region, US West (N. California) Region, US West (Oregon)
|
|
9651
|
+
# Region, Asia Pacific (Singapore) Region, Asia Pacific (Sydney) Region,
|
|
9652
|
+
# Asia Pacific (Tokyo) Region, Europe (Ireland) Region, and South
|
|
9653
|
+
# America (São Paulo) Region.
|
|
9654
|
+
#
|
|
9410
9655
|
# <note markdown="1"> This operation is not supported for directory buckets.
|
|
9411
9656
|
#
|
|
9412
9657
|
# </note>
|
|
@@ -9441,6 +9686,10 @@ module Aws::S3
|
|
|
9441
9686
|
#
|
|
9442
9687
|
# * [PutObject][6]
|
|
9443
9688
|
#
|
|
9689
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
9690
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
9691
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
9692
|
+
#
|
|
9444
9693
|
#
|
|
9445
9694
|
#
|
|
9446
9695
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/acl-overview.html#acl-access-policy-permission-mapping
|
|
@@ -9764,6 +10013,10 @@ module Aws::S3
|
|
|
9764
10013
|
#
|
|
9765
10014
|
# * [ListParts][16]
|
|
9766
10015
|
#
|
|
10016
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
10017
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
10018
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
10019
|
+
#
|
|
9767
10020
|
#
|
|
9768
10021
|
#
|
|
9769
10022
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/endpoint-directory-buckets-AZ.html
|
|
@@ -9995,6 +10248,10 @@ module Aws::S3
|
|
|
9995
10248
|
#
|
|
9996
10249
|
# ^
|
|
9997
10250
|
#
|
|
10251
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
10252
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
10253
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
10254
|
+
#
|
|
9998
10255
|
#
|
|
9999
10256
|
#
|
|
10000
10257
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lock.html
|
|
@@ -10093,6 +10350,10 @@ module Aws::S3
|
|
|
10093
10350
|
#
|
|
10094
10351
|
# ^
|
|
10095
10352
|
#
|
|
10353
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
10354
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
10355
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
10356
|
+
#
|
|
10096
10357
|
#
|
|
10097
10358
|
#
|
|
10098
10359
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lock.html
|
|
@@ -10165,6 +10426,10 @@ module Aws::S3
|
|
|
10165
10426
|
#
|
|
10166
10427
|
# ^
|
|
10167
10428
|
#
|
|
10429
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
10430
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
10431
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
10432
|
+
#
|
|
10168
10433
|
#
|
|
10169
10434
|
#
|
|
10170
10435
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lock.html
|
|
@@ -10277,6 +10542,10 @@ module Aws::S3
|
|
|
10277
10542
|
#
|
|
10278
10543
|
# * [PutObjectTagging][4]
|
|
10279
10544
|
#
|
|
10545
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
10546
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
10547
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
10548
|
+
#
|
|
10280
10549
|
#
|
|
10281
10550
|
#
|
|
10282
10551
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/object-tagging.html
|
|
@@ -10443,6 +10712,10 @@ module Aws::S3
|
|
|
10443
10712
|
#
|
|
10444
10713
|
# ^
|
|
10445
10714
|
#
|
|
10715
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
10716
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
10717
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
10718
|
+
#
|
|
10446
10719
|
#
|
|
10447
10720
|
#
|
|
10448
10721
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html
|
|
@@ -10551,6 +10824,10 @@ module Aws::S3
|
|
|
10551
10824
|
#
|
|
10552
10825
|
# * [DeletePublicAccessBlock][6]
|
|
10553
10826
|
#
|
|
10827
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
10828
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
10829
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
10830
|
+
#
|
|
10554
10831
|
#
|
|
10555
10832
|
#
|
|
10556
10833
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-with-s3-actions.html
|
|
@@ -10597,13 +10874,19 @@ module Aws::S3
|
|
|
10597
10874
|
end
|
|
10598
10875
|
|
|
10599
10876
|
# 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`
|
|
10601
|
-
# bucket exists and you have permission to access it.
|
|
10602
|
-
#
|
|
10603
|
-
#
|
|
10877
|
+
# have permission to access it. The action returns a `200 OK` HTTP
|
|
10878
|
+
# status code if the bucket exists and you have permission to access it.
|
|
10879
|
+
# You can make a `HeadBucket` call on any bucket name to any Region in
|
|
10880
|
+
# the partition, and regardless of the permissions on the bucket, you
|
|
10881
|
+
# will receive a response header with the correct bucket location so
|
|
10882
|
+
# that you can then make a proper, signed request to the appropriate
|
|
10883
|
+
# Regional endpoint.
|
|
10884
|
+
#
|
|
10885
|
+
# <note markdown="1"> If the bucket doesn't exist or you don't have permission to access
|
|
10604
10886
|
# it, the `HEAD` request returns a generic `400 Bad Request`, `403
|
|
10605
|
-
# Forbidden
|
|
10606
|
-
# you
|
|
10887
|
+
# Forbidden`, or `404 Not Found` HTTP status code. A message body isn't
|
|
10888
|
+
# included, so you can't determine the exception beyond these HTTP
|
|
10889
|
+
# response codes.
|
|
10607
10890
|
#
|
|
10608
10891
|
# </note>
|
|
10609
10892
|
#
|
|
@@ -10666,6 +10949,10 @@ module Aws::S3
|
|
|
10666
10949
|
#
|
|
10667
10950
|
# </note>
|
|
10668
10951
|
#
|
|
10952
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
10953
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
10954
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
10955
|
+
#
|
|
10669
10956
|
#
|
|
10670
10957
|
#
|
|
10671
10958
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/RESTAuthentication.html
|
|
@@ -10926,6 +11213,10 @@ module Aws::S3
|
|
|
10926
11213
|
#
|
|
10927
11214
|
# * [GetObjectAttributes][9]
|
|
10928
11215
|
#
|
|
11216
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
11217
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
11218
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
11219
|
+
#
|
|
10929
11220
|
#
|
|
10930
11221
|
#
|
|
10931
11222
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/RESTCommonRequestHeaders.html
|
|
@@ -11351,6 +11642,10 @@ module Aws::S3
|
|
|
11351
11642
|
#
|
|
11352
11643
|
# * [PutBucketAnalyticsConfiguration][6]
|
|
11353
11644
|
#
|
|
11645
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
11646
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
11647
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
11648
|
+
#
|
|
11354
11649
|
#
|
|
11355
11650
|
#
|
|
11356
11651
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources
|
|
@@ -11452,6 +11747,10 @@ module Aws::S3
|
|
|
11452
11747
|
#
|
|
11453
11748
|
# * [GetBucketIntelligentTieringConfiguration][4]
|
|
11454
11749
|
#
|
|
11750
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
11751
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
11752
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
11753
|
+
#
|
|
11455
11754
|
#
|
|
11456
11755
|
#
|
|
11457
11756
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-class-intro.html#sc-dynamic-data-access
|
|
@@ -11520,7 +11819,7 @@ module Aws::S3
|
|
|
11520
11819
|
# </note>
|
|
11521
11820
|
#
|
|
11522
11821
|
# Returns a list of S3 Inventory configurations for the bucket. You can
|
|
11523
|
-
# have up to 1,000
|
|
11822
|
+
# have up to 1,000 inventory configurations per bucket.
|
|
11524
11823
|
#
|
|
11525
11824
|
# This action supports list pagination and does not return more than 100
|
|
11526
11825
|
# configurations at a time. Always check the `IsTruncated` element in
|
|
@@ -11550,6 +11849,10 @@ module Aws::S3
|
|
|
11550
11849
|
#
|
|
11551
11850
|
# * [PutBucketInventoryConfiguration][6]
|
|
11552
11851
|
#
|
|
11852
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
11853
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
11854
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
11855
|
+
#
|
|
11553
11856
|
#
|
|
11554
11857
|
#
|
|
11555
11858
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources
|
|
@@ -11654,6 +11957,10 @@ module Aws::S3
|
|
|
11654
11957
|
#
|
|
11655
11958
|
# * [DeleteBucketMetricsConfiguration][6]
|
|
11656
11959
|
#
|
|
11960
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
11961
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
11962
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
11963
|
+
#
|
|
11657
11964
|
#
|
|
11658
11965
|
#
|
|
11659
11966
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources
|
|
@@ -11719,11 +12026,11 @@ module Aws::S3
|
|
|
11719
12026
|
req.send_request(options)
|
|
11720
12027
|
end
|
|
11721
12028
|
|
|
11722
|
-
# End of support notice: Beginning
|
|
11723
|
-
# returning `DisplayName`. Update your applications to use
|
|
11724
|
-
# (unique identifier for Amazon Web Services accounts),
|
|
11725
|
-
# Services account ID (12 digit identifier) or IAM ARNs (full
|
|
11726
|
-
# naming) as a direct replacement of `DisplayName`.
|
|
12029
|
+
# End of support notice: Beginning November 21, 2025, Amazon S3 will
|
|
12030
|
+
# stop returning `DisplayName`. Update your applications to use
|
|
12031
|
+
# canonical IDs (unique identifier for Amazon Web Services accounts),
|
|
12032
|
+
# Amazon Web Services account ID (12 digit identifier) or IAM ARNs (full
|
|
12033
|
+
# resource naming) as a direct replacement of `DisplayName`.
|
|
11727
12034
|
#
|
|
11728
12035
|
# This change affects the following Amazon Web Services Regions: US
|
|
11729
12036
|
# East
|
|
@@ -11752,6 +12059,10 @@ module Aws::S3
|
|
|
11752
12059
|
# rejected for Amazon Web Services accounts with a general purpose
|
|
11753
12060
|
# bucket quota greater than 10,000.
|
|
11754
12061
|
#
|
|
12062
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
12063
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
12064
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
12065
|
+
#
|
|
11755
12066
|
#
|
|
11756
12067
|
#
|
|
11757
12068
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/creating-buckets-s3.html
|
|
@@ -11910,6 +12221,10 @@ module Aws::S3
|
|
|
11910
12221
|
#
|
|
11911
12222
|
# </note>
|
|
11912
12223
|
#
|
|
12224
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
12225
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
12226
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
12227
|
+
#
|
|
11913
12228
|
#
|
|
11914
12229
|
#
|
|
11915
12230
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-buckets-overview.html
|
|
@@ -11960,11 +12275,11 @@ module Aws::S3
|
|
|
11960
12275
|
req.send_request(options)
|
|
11961
12276
|
end
|
|
11962
12277
|
|
|
11963
|
-
# End of support notice: Beginning
|
|
11964
|
-
# returning `DisplayName`. Update your applications to use
|
|
11965
|
-
# (unique identifier for Amazon Web Services accounts),
|
|
11966
|
-
# Services account ID (12 digit identifier) or IAM ARNs (full
|
|
11967
|
-
# naming) as a direct replacement of `DisplayName`.
|
|
12278
|
+
# End of support notice: Beginning November 21, 2025, Amazon S3 will
|
|
12279
|
+
# stop returning `DisplayName`. Update your applications to use
|
|
12280
|
+
# canonical IDs (unique identifier for Amazon Web Services accounts),
|
|
12281
|
+
# Amazon Web Services account ID (12 digit identifier) or IAM ARNs (full
|
|
12282
|
+
# resource naming) as a direct replacement of `DisplayName`.
|
|
11968
12283
|
#
|
|
11969
12284
|
# This change affects the following Amazon Web Services Regions: US
|
|
11970
12285
|
# East
|
|
@@ -12081,6 +12396,10 @@ module Aws::S3
|
|
|
12081
12396
|
#
|
|
12082
12397
|
# * [AbortMultipartUpload][10]
|
|
12083
12398
|
#
|
|
12399
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
12400
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
12401
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
12402
|
+
#
|
|
12084
12403
|
#
|
|
12085
12404
|
#
|
|
12086
12405
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/uploadobjusingmpu.html
|
|
@@ -12422,11 +12741,11 @@ module Aws::S3
|
|
|
12422
12741
|
req.send_request(options)
|
|
12423
12742
|
end
|
|
12424
12743
|
|
|
12425
|
-
# End of support notice: Beginning
|
|
12426
|
-
# returning `DisplayName`. Update your applications to use
|
|
12427
|
-
# (unique identifier for Amazon Web Services accounts),
|
|
12428
|
-
# Services account ID (12 digit identifier) or IAM ARNs (full
|
|
12429
|
-
# naming) as a direct replacement of `DisplayName`.
|
|
12744
|
+
# End of support notice: Beginning November 21, 2025, Amazon S3 will
|
|
12745
|
+
# stop returning `DisplayName`. Update your applications to use
|
|
12746
|
+
# canonical IDs (unique identifier for Amazon Web Services accounts),
|
|
12747
|
+
# Amazon Web Services account ID (12 digit identifier) or IAM ARNs (full
|
|
12748
|
+
# resource naming) as a direct replacement of `DisplayName`.
|
|
12430
12749
|
#
|
|
12431
12750
|
# This change affects the following Amazon Web Services Regions: US
|
|
12432
12751
|
# East
|
|
@@ -12464,6 +12783,10 @@ module Aws::S3
|
|
|
12464
12783
|
#
|
|
12465
12784
|
# * [DeleteObject][4]
|
|
12466
12785
|
#
|
|
12786
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
12787
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
12788
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
12789
|
+
#
|
|
12467
12790
|
#
|
|
12468
12791
|
#
|
|
12469
12792
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListObjectsV2.html
|
|
@@ -12678,11 +13001,11 @@ module Aws::S3
|
|
|
12678
13001
|
req.send_request(options)
|
|
12679
13002
|
end
|
|
12680
13003
|
|
|
12681
|
-
# End of support notice: Beginning
|
|
12682
|
-
# returning `DisplayName`. Update your applications to use
|
|
12683
|
-
# (unique identifier for Amazon Web Services accounts),
|
|
12684
|
-
# Services account ID (12 digit identifier) or IAM ARNs (full
|
|
12685
|
-
# naming) as a direct replacement of `DisplayName`.
|
|
13004
|
+
# End of support notice: Beginning November 21, 2025, Amazon S3 will
|
|
13005
|
+
# stop returning `DisplayName`. Update your applications to use
|
|
13006
|
+
# canonical IDs (unique identifier for Amazon Web Services accounts),
|
|
13007
|
+
# Amazon Web Services account ID (12 digit identifier) or IAM ARNs (full
|
|
13008
|
+
# resource naming) as a direct replacement of `DisplayName`.
|
|
12686
13009
|
#
|
|
12687
13010
|
# This change affects the following Amazon Web Services Regions: US
|
|
12688
13011
|
# East
|
|
@@ -12717,6 +13040,10 @@ module Aws::S3
|
|
|
12717
13040
|
#
|
|
12718
13041
|
# * [ListBuckets][5]
|
|
12719
13042
|
#
|
|
13043
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
13044
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
13045
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
13046
|
+
#
|
|
12720
13047
|
#
|
|
12721
13048
|
#
|
|
12722
13049
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListObjectsV2.html
|
|
@@ -12930,6 +13257,19 @@ module Aws::S3
|
|
|
12930
13257
|
req.send_request(options)
|
|
12931
13258
|
end
|
|
12932
13259
|
|
|
13260
|
+
# End of support notice: Beginning November 21, 2025, Amazon S3 will
|
|
13261
|
+
# stop returning `DisplayName`. Update your applications to use
|
|
13262
|
+
# canonical IDs (unique identifier for Amazon Web Services accounts),
|
|
13263
|
+
# Amazon Web Services account ID (12 digit identifier) or IAM ARNs (full
|
|
13264
|
+
# resource naming) as a direct replacement of `DisplayName`.
|
|
13265
|
+
#
|
|
13266
|
+
# This change affects the following Amazon Web Services Regions: US
|
|
13267
|
+
# East
|
|
13268
|
+
# (N. Virginia) Region, US West (N. California) Region, US West (Oregon)
|
|
13269
|
+
# Region, Asia Pacific (Singapore) Region, Asia Pacific (Sydney) Region,
|
|
13270
|
+
# Asia Pacific (Tokyo) Region, Europe (Ireland) Region, and South
|
|
13271
|
+
# America (São Paulo) Region.
|
|
13272
|
+
#
|
|
12933
13273
|
# Returns some or all (up to 1,000) of the objects in a bucket with each
|
|
12934
13274
|
# request. You can use the request parameters as selection criteria to
|
|
12935
13275
|
# return a subset of the objects in a bucket. A `200 OK` response can
|
|
@@ -13010,6 +13350,10 @@ module Aws::S3
|
|
|
13010
13350
|
#
|
|
13011
13351
|
# * [CreateBucket][11]
|
|
13012
13352
|
#
|
|
13353
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
13354
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
13355
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
13356
|
+
#
|
|
13013
13357
|
#
|
|
13014
13358
|
#
|
|
13015
13359
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/ListingKeysUsingAPIs.html
|
|
@@ -13280,11 +13624,11 @@ module Aws::S3
|
|
|
13280
13624
|
req.send_request(options)
|
|
13281
13625
|
end
|
|
13282
13626
|
|
|
13283
|
-
# End of support notice: Beginning
|
|
13284
|
-
# returning `DisplayName`. Update your applications to use
|
|
13285
|
-
# (unique identifier for Amazon Web Services accounts),
|
|
13286
|
-
# Services account ID (12 digit identifier) or IAM ARNs (full
|
|
13287
|
-
# naming) as a direct replacement of `DisplayName`.
|
|
13627
|
+
# End of support notice: Beginning November 21, 2025, Amazon S3 will
|
|
13628
|
+
# stop returning `DisplayName`. Update your applications to use
|
|
13629
|
+
# canonical IDs (unique identifier for Amazon Web Services accounts),
|
|
13630
|
+
# Amazon Web Services account ID (12 digit identifier) or IAM ARNs (full
|
|
13631
|
+
# resource naming) as a direct replacement of `DisplayName`.
|
|
13288
13632
|
#
|
|
13289
13633
|
# This change affects the following Amazon Web Services Regions: US
|
|
13290
13634
|
# East
|
|
@@ -13372,6 +13716,10 @@ module Aws::S3
|
|
|
13372
13716
|
#
|
|
13373
13717
|
# * [ListMultipartUploads][11]
|
|
13374
13718
|
#
|
|
13719
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
13720
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
13721
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
13722
|
+
#
|
|
13375
13723
|
#
|
|
13376
13724
|
#
|
|
13377
13725
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateMultipartUpload.html
|
|
@@ -13664,6 +14012,10 @@ module Aws::S3
|
|
|
13664
14012
|
#
|
|
13665
14013
|
# * [CreateBucket][5]
|
|
13666
14014
|
#
|
|
14015
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
14016
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
14017
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
14018
|
+
#
|
|
13667
14019
|
#
|
|
13668
14020
|
#
|
|
13669
14021
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources
|
|
@@ -13721,19 +14073,17 @@ module Aws::S3
|
|
|
13721
14073
|
req.send_request(options)
|
|
13722
14074
|
end
|
|
13723
14075
|
|
|
13724
|
-
# End of support notice:
|
|
13725
|
-
#
|
|
13726
|
-
#
|
|
13727
|
-
#
|
|
13728
|
-
#
|
|
13729
|
-
# However, you will no longer be able to create new Email Grantee ACLs.
|
|
14076
|
+
# End of support notice: As of October 1, 2025, Amazon S3 has
|
|
14077
|
+
# discontinued support for Email Grantee Access Control Lists (ACLs). If
|
|
14078
|
+
# you attempt to use an Email Grantee ACL in a request after October 1,
|
|
14079
|
+
# 2025, the request will receive an `HTTP 405` (Method Not Allowed)
|
|
14080
|
+
# error.
|
|
13730
14081
|
#
|
|
13731
14082
|
# This change affects the following Amazon Web Services Regions: US
|
|
13732
14083
|
# East
|
|
13733
|
-
# (N. Virginia)
|
|
13734
|
-
#
|
|
13735
|
-
#
|
|
13736
|
-
# America (São Paulo) Region.
|
|
14084
|
+
# (N. Virginia), US West (N. California), US West (Oregon), Asia Pacific
|
|
14085
|
+
# (Singapore), Asia Pacific (Sydney), Asia Pacific (Tokyo), Europe
|
|
14086
|
+
# (Ireland), and South America (São Paulo).
|
|
13737
14087
|
#
|
|
13738
14088
|
# <note markdown="1"> This operation is not supported for directory buckets.
|
|
13739
14089
|
#
|
|
@@ -13900,6 +14250,10 @@ module Aws::S3
|
|
|
13900
14250
|
#
|
|
13901
14251
|
# * [GetObjectAcl][9]
|
|
13902
14252
|
#
|
|
14253
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
14254
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
14255
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
14256
|
+
#
|
|
13903
14257
|
#
|
|
13904
14258
|
#
|
|
13905
14259
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/S3_ACLs_UsingACLs.html
|
|
@@ -14094,6 +14448,10 @@ module Aws::S3
|
|
|
14094
14448
|
#
|
|
14095
14449
|
# * [ListBucketAnalyticsConfigurations][7]
|
|
14096
14450
|
#
|
|
14451
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
14452
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
14453
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
14454
|
+
#
|
|
14097
14455
|
#
|
|
14098
14456
|
#
|
|
14099
14457
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/analytics-storage-class.html
|
|
@@ -14219,6 +14577,10 @@ module Aws::S3
|
|
|
14219
14577
|
#
|
|
14220
14578
|
# * [RESTOPTIONSobject][4]
|
|
14221
14579
|
#
|
|
14580
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
14581
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
14582
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
14583
|
+
#
|
|
14222
14584
|
#
|
|
14223
14585
|
#
|
|
14224
14586
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/cors.html
|
|
@@ -14466,6 +14828,10 @@ module Aws::S3
|
|
|
14466
14828
|
#
|
|
14467
14829
|
# * [DeleteBucketEncryption][17]
|
|
14468
14830
|
#
|
|
14831
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
14832
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
14833
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
14834
|
+
#
|
|
14469
14835
|
#
|
|
14470
14836
|
#
|
|
14471
14837
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/endpoint-directory-buckets-AZ.html
|
|
@@ -14647,6 +15013,10 @@ module Aws::S3
|
|
|
14647
15013
|
# not have the `s3:PutIntelligentTieringConfiguration` bucket
|
|
14648
15014
|
# permission to set the configuration on the bucket.
|
|
14649
15015
|
#
|
|
15016
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
15017
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
15018
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
15019
|
+
#
|
|
14650
15020
|
#
|
|
14651
15021
|
#
|
|
14652
15022
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-class-intro.html#sc-dynamic-data-access
|
|
@@ -14792,6 +15162,10 @@ module Aws::S3
|
|
|
14792
15162
|
#
|
|
14793
15163
|
# * [ListBucketInventoryConfigurations][10]
|
|
14794
15164
|
#
|
|
15165
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
15166
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
15167
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
15168
|
+
#
|
|
14795
15169
|
#
|
|
14796
15170
|
#
|
|
14797
15171
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html
|
|
@@ -14929,6 +15303,10 @@ module Aws::S3
|
|
|
14929
15303
|
#
|
|
14930
15304
|
# * [Managing Access Permissions to your Amazon S3 Resources][3]
|
|
14931
15305
|
#
|
|
15306
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
15307
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
15308
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
15309
|
+
#
|
|
14932
15310
|
#
|
|
14933
15311
|
#
|
|
14934
15312
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketLifecycleConfiguration.html
|
|
@@ -15138,6 +15516,10 @@ module Aws::S3
|
|
|
15138
15516
|
#
|
|
15139
15517
|
# * [DeleteBucketLifecycle][10]
|
|
15140
15518
|
#
|
|
15519
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
15520
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
15521
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
15522
|
+
#
|
|
15141
15523
|
#
|
|
15142
15524
|
#
|
|
15143
15525
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-lifecycle-mgmt.html
|
|
@@ -15315,19 +15697,17 @@ module Aws::S3
|
|
|
15315
15697
|
req.send_request(options)
|
|
15316
15698
|
end
|
|
15317
15699
|
|
|
15318
|
-
# End of support notice:
|
|
15319
|
-
#
|
|
15320
|
-
#
|
|
15321
|
-
#
|
|
15322
|
-
#
|
|
15323
|
-
# However, you will no longer be able to create new Email Grantee ACLs.
|
|
15700
|
+
# End of support notice: As of October 1, 2025, Amazon S3 has
|
|
15701
|
+
# discontinued support for Email Grantee Access Control Lists (ACLs). If
|
|
15702
|
+
# you attempt to use an Email Grantee ACL in a request after October 1,
|
|
15703
|
+
# 2025, the request will receive an `HTTP 405` (Method Not Allowed)
|
|
15704
|
+
# error.
|
|
15324
15705
|
#
|
|
15325
15706
|
# This change affects the following Amazon Web Services Regions: US
|
|
15326
15707
|
# East
|
|
15327
|
-
# (N. Virginia)
|
|
15328
|
-
#
|
|
15329
|
-
#
|
|
15330
|
-
# America (São Paulo) Region.
|
|
15708
|
+
# (N. Virginia), US West (N. California), US West (Oregon), Asia Pacific
|
|
15709
|
+
# (Singapore), Asia Pacific (Sydney), Asia Pacific (Tokyo), Europe
|
|
15710
|
+
# (Ireland), and South America (São Paulo).
|
|
15331
15711
|
#
|
|
15332
15712
|
# <note markdown="1"> This operation is not supported for directory buckets.
|
|
15333
15713
|
#
|
|
@@ -15402,6 +15782,10 @@ module Aws::S3
|
|
|
15402
15782
|
#
|
|
15403
15783
|
# * [GetBucketLogging][5]
|
|
15404
15784
|
#
|
|
15785
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
15786
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
15787
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
15788
|
+
#
|
|
15405
15789
|
#
|
|
15406
15790
|
#
|
|
15407
15791
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/enable-server-access-logging.html#grant-log-delivery-permissions-general
|
|
@@ -15555,6 +15939,10 @@ module Aws::S3
|
|
|
15555
15939
|
#
|
|
15556
15940
|
# * HTTP Status Code: HTTP 400 Bad Request
|
|
15557
15941
|
#
|
|
15942
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
15943
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
15944
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
15945
|
+
#
|
|
15558
15946
|
#
|
|
15559
15947
|
#
|
|
15560
15948
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources
|
|
@@ -15774,6 +16162,10 @@ module Aws::S3
|
|
|
15774
16162
|
#
|
|
15775
16163
|
# ^
|
|
15776
16164
|
#
|
|
16165
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
16166
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
16167
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
16168
|
+
#
|
|
15777
16169
|
#
|
|
15778
16170
|
#
|
|
15779
16171
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/NotificationHowTo.html
|
|
@@ -15908,6 +16300,10 @@ module Aws::S3
|
|
|
15908
16300
|
#
|
|
15909
16301
|
# * DeleteBucketOwnershipControls
|
|
15910
16302
|
#
|
|
16303
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
16304
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
16305
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
16306
|
+
#
|
|
15911
16307
|
#
|
|
15912
16308
|
#
|
|
15913
16309
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/user-guide/using-with-s3-actions.html
|
|
@@ -16048,6 +16444,10 @@ module Aws::S3
|
|
|
16048
16444
|
#
|
|
16049
16445
|
# * [DeleteBucket][8]
|
|
16050
16446
|
#
|
|
16447
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
16448
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
16449
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
16450
|
+
#
|
|
16051
16451
|
#
|
|
16052
16452
|
#
|
|
16053
16453
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/endpoint-directory-buckets-AZ.html
|
|
@@ -16256,6 +16656,10 @@ module Aws::S3
|
|
|
16256
16656
|
#
|
|
16257
16657
|
# * [DeleteBucketReplication][11]
|
|
16258
16658
|
#
|
|
16659
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
16660
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
16661
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
16662
|
+
#
|
|
16259
16663
|
#
|
|
16260
16664
|
#
|
|
16261
16665
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/replication.html
|
|
@@ -16437,6 +16841,10 @@ module Aws::S3
|
|
|
16437
16841
|
#
|
|
16438
16842
|
# * [GetBucketRequestPayment][3]
|
|
16439
16843
|
#
|
|
16844
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
16845
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
16846
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
16847
|
+
#
|
|
16440
16848
|
#
|
|
16441
16849
|
#
|
|
16442
16850
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/RequesterPaysBuckets.html
|
|
@@ -16570,6 +16978,10 @@ module Aws::S3
|
|
|
16570
16978
|
#
|
|
16571
16979
|
# * [DeleteBucketTagging][7]
|
|
16572
16980
|
#
|
|
16981
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
16982
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
16983
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
16984
|
+
#
|
|
16573
16985
|
#
|
|
16574
16986
|
#
|
|
16575
16987
|
# [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html
|
|
@@ -16720,6 +17132,10 @@ module Aws::S3
|
|
|
16720
17132
|
#
|
|
16721
17133
|
# * [GetBucketVersioning][1]
|
|
16722
17134
|
#
|
|
17135
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
17136
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
17137
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
17138
|
+
#
|
|
16723
17139
|
#
|
|
16724
17140
|
#
|
|
16725
17141
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketVersioning.html
|
|
@@ -16763,6 +17179,17 @@ module Aws::S3
|
|
|
16763
17179
|
# @option params [String] :mfa
|
|
16764
17180
|
# The concatenation of the authentication device's serial number, a
|
|
16765
17181
|
# space, and the value that is displayed on your authentication device.
|
|
17182
|
+
# The serial number is the number that uniquely identifies the MFA
|
|
17183
|
+
# device. For physical MFA devices, this is the unique serial number
|
|
17184
|
+
# that's provided with the device. For virtual MFA devices, the serial
|
|
17185
|
+
# number is the device ARN. For more information, see [Enabling
|
|
17186
|
+
# versioning on buckets][1] and [Configuring MFA delete][2] in the
|
|
17187
|
+
# *Amazon Simple Storage Service User Guide*.
|
|
17188
|
+
#
|
|
17189
|
+
#
|
|
17190
|
+
#
|
|
17191
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/manage-versioning-examples.html
|
|
17192
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/MultiFactorAuthenticationDelete.html
|
|
16766
17193
|
#
|
|
16767
17194
|
# @option params [required, Types::VersioningConfiguration] :versioning_configuration
|
|
16768
17195
|
# Container for setting the versioning state.
|
|
@@ -16884,6 +17311,10 @@ module Aws::S3
|
|
|
16884
17311
|
#
|
|
16885
17312
|
# The maximum request length is limited to 128 KB.
|
|
16886
17313
|
#
|
|
17314
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
17315
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
17316
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
17317
|
+
#
|
|
16887
17318
|
#
|
|
16888
17319
|
#
|
|
16889
17320
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/WebsiteHosting.html
|
|
@@ -16994,19 +17425,17 @@ module Aws::S3
|
|
|
16994
17425
|
req.send_request(options)
|
|
16995
17426
|
end
|
|
16996
17427
|
|
|
16997
|
-
# End of support notice:
|
|
16998
|
-
#
|
|
16999
|
-
#
|
|
17000
|
-
#
|
|
17001
|
-
#
|
|
17002
|
-
# However, you will no longer be able to create new Email Grantee ACLs.
|
|
17428
|
+
# End of support notice: As of October 1, 2025, Amazon S3 has
|
|
17429
|
+
# discontinued support for Email Grantee Access Control Lists (ACLs). If
|
|
17430
|
+
# you attempt to use an Email Grantee ACL in a request after October 1,
|
|
17431
|
+
# 2025, the request will receive an `HTTP 405` (Method Not Allowed)
|
|
17432
|
+
# error.
|
|
17003
17433
|
#
|
|
17004
17434
|
# This change affects the following Amazon Web Services Regions: US
|
|
17005
17435
|
# East
|
|
17006
|
-
# (N. Virginia)
|
|
17007
|
-
#
|
|
17008
|
-
#
|
|
17009
|
-
# America (São Paulo) Region.
|
|
17436
|
+
# (N. Virginia), US West (N. California), US West (Oregon), Asia Pacific
|
|
17437
|
+
# (Singapore), Asia Pacific (Sydney), Asia Pacific (Tokyo), Europe
|
|
17438
|
+
# (Ireland), and South America (São Paulo).
|
|
17010
17439
|
#
|
|
17011
17440
|
# Adds an object to a bucket.
|
|
17012
17441
|
#
|
|
@@ -17137,6 +17566,10 @@ module Aws::S3
|
|
|
17137
17566
|
#
|
|
17138
17567
|
# * [DeleteObject][10]
|
|
17139
17568
|
#
|
|
17569
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
17570
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
17571
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
17572
|
+
#
|
|
17140
17573
|
#
|
|
17141
17574
|
#
|
|
17142
17575
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/endpoint-directory-buckets-AZ.html
|
|
@@ -18037,6 +18470,18 @@ module Aws::S3
|
|
|
18037
18470
|
req.send_request(options)
|
|
18038
18471
|
end
|
|
18039
18472
|
|
|
18473
|
+
# End of support notice: As of October 1, 2025, Amazon S3 has
|
|
18474
|
+
# discontinued support for Email Grantee Access Control Lists (ACLs). If
|
|
18475
|
+
# you attempt to use an Email Grantee ACL in a request after October 1,
|
|
18476
|
+
# 2025, the request will receive an `HTTP 405` (Method Not Allowed)
|
|
18477
|
+
# error.
|
|
18478
|
+
#
|
|
18479
|
+
# This change affects the following Amazon Web Services Regions: US
|
|
18480
|
+
# East
|
|
18481
|
+
# (N. Virginia), US West (N. California), US West (Oregon), Asia Pacific
|
|
18482
|
+
# (Singapore), Asia Pacific (Sydney), Asia Pacific (Tokyo), Europe
|
|
18483
|
+
# (Ireland), and South America (São Paulo).
|
|
18484
|
+
#
|
|
18040
18485
|
# <note markdown="1"> This operation is not supported for directory buckets.
|
|
18041
18486
|
#
|
|
18042
18487
|
# </note>
|
|
@@ -18197,6 +18642,10 @@ module Aws::S3
|
|
|
18197
18642
|
#
|
|
18198
18643
|
# * [GetObject][8]
|
|
18199
18644
|
#
|
|
18645
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
18646
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
18647
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
18648
|
+
#
|
|
18200
18649
|
#
|
|
18201
18650
|
#
|
|
18202
18651
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html#permissions
|
|
@@ -18421,6 +18870,10 @@ module Aws::S3
|
|
|
18421
18870
|
#
|
|
18422
18871
|
# This functionality is not supported for Amazon S3 on Outposts.
|
|
18423
18872
|
#
|
|
18873
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
18874
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
18875
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
18876
|
+
#
|
|
18424
18877
|
#
|
|
18425
18878
|
#
|
|
18426
18879
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lock.html
|
|
@@ -18553,6 +19006,10 @@ module Aws::S3
|
|
|
18553
19006
|
#
|
|
18554
19007
|
# </note>
|
|
18555
19008
|
#
|
|
19009
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
19010
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
19011
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
19012
|
+
#
|
|
18556
19013
|
#
|
|
18557
19014
|
#
|
|
18558
19015
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lock.html
|
|
@@ -18664,6 +19121,10 @@ module Aws::S3
|
|
|
18664
19121
|
#
|
|
18665
19122
|
# This functionality is not supported for Amazon S3 on Outposts.
|
|
18666
19123
|
#
|
|
19124
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
19125
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
19126
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
19127
|
+
#
|
|
18667
19128
|
#
|
|
18668
19129
|
#
|
|
18669
19130
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lock.html
|
|
@@ -18828,6 +19289,10 @@ module Aws::S3
|
|
|
18828
19289
|
#
|
|
18829
19290
|
# * [DeleteObjectTagging][5]
|
|
18830
19291
|
#
|
|
19292
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
19293
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
19294
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
19295
|
+
#
|
|
18831
19296
|
#
|
|
18832
19297
|
#
|
|
18833
19298
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-tagging.html
|
|
@@ -18904,21 +19369,9 @@ module Aws::S3
|
|
|
18904
19369
|
# fails with the HTTP status code `403 Forbidden` (access denied).
|
|
18905
19370
|
#
|
|
18906
19371
|
# @option params [String] :request_payer
|
|
18907
|
-
# Confirms that the requester knows that
|
|
18908
|
-
# request. Bucket owners need not specify this
|
|
18909
|
-
#
|
|
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
|
|
19372
|
+
# Confirms that the requester knows that she or he will be charged for
|
|
19373
|
+
# the tagging object request. Bucket owners need not specify this
|
|
19374
|
+
# parameter in their requests.
|
|
18922
19375
|
#
|
|
18923
19376
|
# @return [Types::PutObjectTaggingOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
18924
19377
|
#
|
|
@@ -19014,6 +19467,10 @@ module Aws::S3
|
|
|
19014
19467
|
#
|
|
19015
19468
|
# * [Using Amazon S3 Block Public Access][6]
|
|
19016
19469
|
#
|
|
19470
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
19471
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
19472
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
19473
|
+
#
|
|
19017
19474
|
#
|
|
19018
19475
|
#
|
|
19019
19476
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-with-s3-actions.html
|
|
@@ -19143,6 +19600,10 @@ module Aws::S3
|
|
|
19143
19600
|
# : <b>Directory buckets </b> - The HTTP Host header syntax is `
|
|
19144
19601
|
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`.
|
|
19145
19602
|
#
|
|
19603
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
19604
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
19605
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
19606
|
+
#
|
|
19146
19607
|
#
|
|
19147
19608
|
#
|
|
19148
19609
|
# [1]: https://datatracker.ietf.org/doc/rfc7232/
|
|
@@ -19427,6 +19888,10 @@ module Aws::S3
|
|
|
19427
19888
|
#
|
|
19428
19889
|
# * [GetBucketNotificationConfiguration][11]
|
|
19429
19890
|
#
|
|
19891
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
19892
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
19893
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
19894
|
+
#
|
|
19430
19895
|
#
|
|
19431
19896
|
#
|
|
19432
19897
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObject.html
|
|
@@ -19750,6 +20215,10 @@ module Aws::S3
|
|
|
19750
20215
|
#
|
|
19751
20216
|
# * [PutBucketLifecycleConfiguration][12]
|
|
19752
20217
|
#
|
|
20218
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
20219
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
20220
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
20221
|
+
#
|
|
19753
20222
|
#
|
|
19754
20223
|
#
|
|
19755
20224
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/selecting-content-from-objects.html
|
|
@@ -20114,6 +20583,10 @@ module Aws::S3
|
|
|
20114
20583
|
#
|
|
20115
20584
|
# * [UpdateBucketMetadataJournalTableConfiguration][6]
|
|
20116
20585
|
#
|
|
20586
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
20587
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
20588
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
20589
|
+
#
|
|
20117
20590
|
#
|
|
20118
20591
|
#
|
|
20119
20592
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/metadata-tables-overview.html
|
|
@@ -20192,6 +20665,10 @@ module Aws::S3
|
|
|
20192
20665
|
#
|
|
20193
20666
|
# * [UpdateBucketMetadataInventoryTableConfiguration][6]
|
|
20194
20667
|
#
|
|
20668
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
20669
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
20670
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
20671
|
+
#
|
|
20195
20672
|
#
|
|
20196
20673
|
#
|
|
20197
20674
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/metadata-tables-overview.html
|
|
@@ -20419,6 +20896,10 @@ module Aws::S3
|
|
|
20419
20896
|
#
|
|
20420
20897
|
# * [ListMultipartUploads][16]
|
|
20421
20898
|
#
|
|
20899
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
20900
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
20901
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
20902
|
+
#
|
|
20422
20903
|
#
|
|
20423
20904
|
#
|
|
20424
20905
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_UploadPartCopy.html
|
|
@@ -20890,6 +21371,10 @@ module Aws::S3
|
|
|
20890
21371
|
#
|
|
20891
21372
|
# * [ListMultipartUploads][20]
|
|
20892
21373
|
#
|
|
21374
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
21375
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
21376
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
21377
|
+
#
|
|
20893
21378
|
#
|
|
20894
21379
|
#
|
|
20895
21380
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/qfacts.html
|
|
@@ -21353,6 +21838,10 @@ module Aws::S3
|
|
|
21353
21838
|
# Amazon Web Services built Lambda functions][3] in the *Amazon S3 User
|
|
21354
21839
|
# Guide*.
|
|
21355
21840
|
#
|
|
21841
|
+
# You must URL encode any signed header values that contain spaces. For
|
|
21842
|
+
# example, if your header value is `my file.txt`, containing two spaces
|
|
21843
|
+
# after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
21844
|
+
#
|
|
21356
21845
|
#
|
|
21357
21846
|
#
|
|
21358
21847
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/transforming-objects.html
|
|
@@ -21735,7 +22224,7 @@ module Aws::S3
|
|
|
21735
22224
|
tracer: tracer
|
|
21736
22225
|
)
|
|
21737
22226
|
context[:gem_name] = 'aws-sdk-s3'
|
|
21738
|
-
context[:gem_version] = '1.
|
|
22227
|
+
context[:gem_version] = '1.202.0'
|
|
21739
22228
|
Seahorse::Client::Request.new(handlers, context)
|
|
21740
22229
|
end
|
|
21741
22230
|
|