aws-sdk-s3 1.81.1 → 1.82.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/lib/aws-sdk-s3.rb +1 -1
- data/lib/aws-sdk-s3/arn/access_point_arn.rb +62 -0
- data/lib/aws-sdk-s3/arn/outpost_access_point_arn.rb +71 -0
- data/lib/aws-sdk-s3/bucket.rb +1 -1
- data/lib/aws-sdk-s3/client.rb +552 -226
- data/lib/aws-sdk-s3/customizations/bucket.rb +7 -4
- data/lib/aws-sdk-s3/multipart_upload_part.rb +12 -3
- data/lib/aws-sdk-s3/object.rb +13 -4
- data/lib/aws-sdk-s3/object_summary.rb +13 -4
- data/lib/aws-sdk-s3/plugins/arn.rb +187 -0
- data/lib/aws-sdk-s3/plugins/bucket_dns.rb +0 -2
- data/lib/aws-sdk-s3/plugins/bucket_name_restrictions.rb +1 -1
- data/lib/aws-sdk-s3/plugins/s3_signer.rb +29 -7
- data/lib/aws-sdk-s3/types.rb +406 -39
- metadata +7 -5
- data/lib/aws-sdk-s3/plugins/bucket_arn.rb +0 -212
data/lib/aws-sdk-s3/types.rb
CHANGED
@@ -76,9 +76,19 @@ module Aws::S3
|
|
76
76
|
# For more information about access point ARNs, see [Using Access
|
77
77
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
78
78
|
#
|
79
|
+
# When using this API with Amazon S3 on Outposts, you must direct
|
80
|
+
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
81
|
+
# takes the form
|
82
|
+
# *AccessPointName*-*AccountId*.*outpostID*.s3-outposts.*Region*.amazonaws.com.
|
83
|
+
# When using this operation using S3 on Outposts through the AWS SDKs,
|
84
|
+
# you provide the Outposts bucket ARN in place of the bucket name. For
|
85
|
+
# more information about S3 on Outposts ARNs, see [Using S3 on
|
86
|
+
# Outposts][2] in the *Amazon Simple Storage Service Developer Guide*.
|
87
|
+
#
|
79
88
|
#
|
80
89
|
#
|
81
90
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
91
|
+
# [2]: https://docs.aws.amazon.com/
|
82
92
|
# @return [String]
|
83
93
|
#
|
84
94
|
# @!attribute [rw] key
|
@@ -899,6 +909,29 @@ module Aws::S3
|
|
899
909
|
#
|
900
910
|
# @!attribute [rw] bucket
|
901
911
|
# The name of the bucket that contains the newly created object.
|
912
|
+
#
|
913
|
+
# When using this API with an access point, you must direct requests
|
914
|
+
# to the access point hostname. The access point hostname takes the
|
915
|
+
# form
|
916
|
+
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
917
|
+
# When using this operation using an access point through the AWS
|
918
|
+
# SDKs, you provide the access point ARN in place of the bucket name.
|
919
|
+
# For more information about access point ARNs, see [Using Access
|
920
|
+
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
921
|
+
#
|
922
|
+
# When using this API with Amazon S3 on Outposts, you must direct
|
923
|
+
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
924
|
+
# takes the form
|
925
|
+
# *AccessPointName*-*AccountId*.*outpostID*.s3-outposts.*Region*.amazonaws.com.
|
926
|
+
# When using this operation using S3 on Outposts through the AWS SDKs,
|
927
|
+
# you provide the Outposts bucket ARN in place of the bucket name. For
|
928
|
+
# more information about S3 on Outposts ARNs, see [Using S3 on
|
929
|
+
# Outposts][2] in the *Amazon Simple Storage Service Developer Guide*.
|
930
|
+
#
|
931
|
+
#
|
932
|
+
#
|
933
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
934
|
+
# [2]: https://docs.aws.amazon.com/
|
902
935
|
# @return [String]
|
903
936
|
#
|
904
937
|
# @!attribute [rw] key
|
@@ -1230,7 +1263,7 @@ module Aws::S3
|
|
1230
1263
|
# metadata_directive: "COPY", # accepts COPY, REPLACE
|
1231
1264
|
# tagging_directive: "COPY", # accepts COPY, REPLACE
|
1232
1265
|
# server_side_encryption: "AES256", # accepts AES256, aws:kms
|
1233
|
-
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE
|
1266
|
+
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS
|
1234
1267
|
# website_redirect_location: "WebsiteRedirectLocation",
|
1235
1268
|
# sse_customer_algorithm: "SSECustomerAlgorithm",
|
1236
1269
|
# sse_customer_key: "SSECustomerKey",
|
@@ -1255,6 +1288,29 @@ module Aws::S3
|
|
1255
1288
|
#
|
1256
1289
|
# @!attribute [rw] bucket
|
1257
1290
|
# The name of the destination bucket.
|
1291
|
+
#
|
1292
|
+
# When using this API with an access point, you must direct requests
|
1293
|
+
# to the access point hostname. The access point hostname takes the
|
1294
|
+
# form
|
1295
|
+
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
1296
|
+
# When using this operation using an access point through the AWS
|
1297
|
+
# SDKs, you provide the access point ARN in place of the bucket name.
|
1298
|
+
# For more information about access point ARNs, see [Using Access
|
1299
|
+
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
1300
|
+
#
|
1301
|
+
# When using this API with Amazon S3 on Outposts, you must direct
|
1302
|
+
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
1303
|
+
# takes the form
|
1304
|
+
# *AccessPointName*-*AccountId*.*outpostID*.s3-outposts.*Region*.amazonaws.com.
|
1305
|
+
# When using this operation using S3 on Outposts through the AWS SDKs,
|
1306
|
+
# you provide the Outposts bucket ARN in place of the bucket name. For
|
1307
|
+
# more information about S3 on Outposts ARNs, see [Using S3 on
|
1308
|
+
# Outposts][2] in the *Amazon Simple Storage Service Developer Guide*.
|
1309
|
+
#
|
1310
|
+
#
|
1311
|
+
#
|
1312
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
1313
|
+
# [2]: https://docs.aws.amazon.com/
|
1258
1314
|
# @return [String]
|
1259
1315
|
#
|
1260
1316
|
# @!attribute [rw] cache_control
|
@@ -1306,6 +1362,15 @@ module Aws::S3
|
|
1306
1362
|
#
|
1307
1363
|
# </note>
|
1308
1364
|
#
|
1365
|
+
# Alternatively, for objects accessed through Amazon S3 on Outposts,
|
1366
|
+
# specify the ARN of the object as accessed in the format
|
1367
|
+
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/object/<key>`.
|
1368
|
+
# For example, to copy the object `reports/january.pdf` through
|
1369
|
+
# outpost `my-outpost` owned by account `123456789012` in Region
|
1370
|
+
# `us-west-2`, use the URL encoding of
|
1371
|
+
# `arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/object/reports/january.pdf`.
|
1372
|
+
# The value must be URL encoded.
|
1373
|
+
#
|
1309
1374
|
# To copy a specific version of an object, append
|
1310
1375
|
# `?versionId=<version-id>` to the value (for example,
|
1311
1376
|
# `awsexamplebucket/reports/january.pdf?versionId=QUpfdndhfd8438MNFDN93jdnJFkdmqnh893`).
|
@@ -1710,7 +1775,7 @@ module Aws::S3
|
|
1710
1775
|
# @return [String]
|
1711
1776
|
#
|
1712
1777
|
# @!attribute [rw] bucket
|
1713
|
-
#
|
1778
|
+
# The name of the bucket to which the multipart upload was initiated.
|
1714
1779
|
#
|
1715
1780
|
# When using this API with an access point, you must direct requests
|
1716
1781
|
# to the access point hostname. The access point hostname takes the
|
@@ -1721,9 +1786,19 @@ module Aws::S3
|
|
1721
1786
|
# For more information about access point ARNs, see [Using Access
|
1722
1787
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
1723
1788
|
#
|
1789
|
+
# When using this API with Amazon S3 on Outposts, you must direct
|
1790
|
+
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
1791
|
+
# takes the form
|
1792
|
+
# *AccessPointName*-*AccountId*.*outpostID*.s3-outposts.*Region*.amazonaws.com.
|
1793
|
+
# When using this operation using S3 on Outposts through the AWS SDKs,
|
1794
|
+
# you provide the Outposts bucket ARN in place of the bucket name. For
|
1795
|
+
# more information about S3 on Outposts ARNs, see [Using S3 on
|
1796
|
+
# Outposts][2] in the *Amazon Simple Storage Service Developer Guide*.
|
1797
|
+
#
|
1724
1798
|
#
|
1725
1799
|
#
|
1726
1800
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
1801
|
+
# [2]: https://docs.aws.amazon.com/
|
1727
1802
|
# @return [String]
|
1728
1803
|
#
|
1729
1804
|
# @!attribute [rw] key
|
@@ -1809,7 +1884,7 @@ module Aws::S3
|
|
1809
1884
|
# "MetadataKey" => "MetadataValue",
|
1810
1885
|
# },
|
1811
1886
|
# server_side_encryption: "AES256", # accepts AES256, aws:kms
|
1812
|
-
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE
|
1887
|
+
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS
|
1813
1888
|
# website_redirect_location: "WebsiteRedirectLocation",
|
1814
1889
|
# sse_customer_algorithm: "SSECustomerAlgorithm",
|
1815
1890
|
# sse_customer_key: "SSECustomerKey",
|
@@ -1830,6 +1905,29 @@ module Aws::S3
|
|
1830
1905
|
#
|
1831
1906
|
# @!attribute [rw] bucket
|
1832
1907
|
# The name of the bucket to which to initiate the upload
|
1908
|
+
#
|
1909
|
+
# When using this API with an access point, you must direct requests
|
1910
|
+
# to the access point hostname. The access point hostname takes the
|
1911
|
+
# form
|
1912
|
+
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
1913
|
+
# When using this operation using an access point through the AWS
|
1914
|
+
# SDKs, you provide the access point ARN in place of the bucket name.
|
1915
|
+
# For more information about access point ARNs, see [Using Access
|
1916
|
+
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
1917
|
+
#
|
1918
|
+
# When using this API with Amazon S3 on Outposts, you must direct
|
1919
|
+
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
1920
|
+
# takes the form
|
1921
|
+
# *AccessPointName*-*AccountId*.*outpostID*.s3-outposts.*Region*.amazonaws.com.
|
1922
|
+
# When using this operation using S3 on Outposts through the AWS SDKs,
|
1923
|
+
# you provide the Outposts bucket ARN in place of the bucket name. For
|
1924
|
+
# more information about S3 on Outposts ARNs, see [Using S3 on
|
1925
|
+
# Outposts][2] in the *Amazon Simple Storage Service Developer Guide*.
|
1926
|
+
#
|
1927
|
+
#
|
1928
|
+
#
|
1929
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
1930
|
+
# [2]: https://docs.aws.amazon.com/
|
1833
1931
|
# @return [String]
|
1834
1932
|
#
|
1835
1933
|
# @!attribute [rw] cache_control
|
@@ -2529,9 +2627,19 @@ module Aws::S3
|
|
2529
2627
|
# For more information about access point ARNs, see [Using Access
|
2530
2628
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
2531
2629
|
#
|
2630
|
+
# When using this API with Amazon S3 on Outposts, you must direct
|
2631
|
+
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
2632
|
+
# takes the form
|
2633
|
+
# *AccessPointName*-*AccountId*.*outpostID*.s3-outposts.*Region*.amazonaws.com.
|
2634
|
+
# When using this operation using S3 on Outposts through the AWS SDKs,
|
2635
|
+
# you provide the Outposts bucket ARN in place of the bucket name. For
|
2636
|
+
# more information about S3 on Outposts ARNs, see [Using S3 on
|
2637
|
+
# Outposts][2] in the *Amazon Simple Storage Service Developer Guide*.
|
2638
|
+
#
|
2532
2639
|
#
|
2533
2640
|
#
|
2534
2641
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
2642
|
+
# [2]: https://docs.aws.amazon.com/
|
2535
2643
|
# @return [String]
|
2536
2644
|
#
|
2537
2645
|
# @!attribute [rw] key
|
@@ -2621,9 +2729,19 @@ module Aws::S3
|
|
2621
2729
|
# For more information about access point ARNs, see [Using Access
|
2622
2730
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
2623
2731
|
#
|
2732
|
+
# When using this API with Amazon S3 on Outposts, you must direct
|
2733
|
+
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
2734
|
+
# takes the form
|
2735
|
+
# *AccessPointName*-*AccountId*.*outpostID*.s3-outposts.*Region*.amazonaws.com.
|
2736
|
+
# When using this operation using S3 on Outposts through the AWS SDKs,
|
2737
|
+
# you provide the Outposts bucket ARN in place of the bucket name. For
|
2738
|
+
# more information about S3 on Outposts ARNs, see [Using S3 on
|
2739
|
+
# Outposts][2] in the *Amazon Simple Storage Service Developer Guide*.
|
2740
|
+
#
|
2624
2741
|
#
|
2625
2742
|
#
|
2626
2743
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
2744
|
+
# [2]: https://docs.aws.amazon.com/
|
2627
2745
|
# @return [String]
|
2628
2746
|
#
|
2629
2747
|
# @!attribute [rw] key
|
@@ -2708,9 +2826,19 @@ module Aws::S3
|
|
2708
2826
|
# For more information about access point ARNs, see [Using Access
|
2709
2827
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
2710
2828
|
#
|
2829
|
+
# When using this API with Amazon S3 on Outposts, you must direct
|
2830
|
+
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
2831
|
+
# takes the form
|
2832
|
+
# *AccessPointName*-*AccountId*.*outpostID*.s3-outposts.*Region*.amazonaws.com.
|
2833
|
+
# When using this operation using S3 on Outposts through the AWS SDKs,
|
2834
|
+
# you provide the Outposts bucket ARN in place of the bucket name. For
|
2835
|
+
# more information about S3 on Outposts ARNs, see [Using S3 on
|
2836
|
+
# Outposts][2] in the *Amazon Simple Storage Service Developer Guide*.
|
2837
|
+
#
|
2711
2838
|
#
|
2712
2839
|
#
|
2713
2840
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
2841
|
+
# [2]: https://docs.aws.amazon.com/
|
2714
2842
|
# @return [String]
|
2715
2843
|
#
|
2716
2844
|
# @!attribute [rw] delete
|
@@ -2834,7 +2962,7 @@ module Aws::S3
|
|
2834
2962
|
# {
|
2835
2963
|
# bucket: "BucketName", # required
|
2836
2964
|
# account: "AccountId",
|
2837
|
-
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE
|
2965
|
+
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS
|
2838
2966
|
# access_control_translation: {
|
2839
2967
|
# owner: "Destination", # required, accepts Destination
|
2840
2968
|
# },
|
@@ -3947,7 +4075,7 @@ module Aws::S3
|
|
3947
4075
|
# }
|
3948
4076
|
#
|
3949
4077
|
# @!attribute [rw] bucket
|
3950
|
-
#
|
4078
|
+
# The name of the bucket for which the accelerate configuration is
|
3951
4079
|
# retrieved.
|
3952
4080
|
# @return [String]
|
3953
4081
|
#
|
@@ -4407,7 +4535,8 @@ module Aws::S3
|
|
4407
4535
|
# }
|
4408
4536
|
#
|
4409
4537
|
# @!attribute [rw] bucket
|
4410
|
-
#
|
4538
|
+
# The name of the bucket for which to get the notification
|
4539
|
+
# configuration.
|
4411
4540
|
# @return [String]
|
4412
4541
|
#
|
4413
4542
|
# @!attribute [rw] expected_bucket_owner
|
@@ -4921,6 +5050,19 @@ module Aws::S3
|
|
4921
5050
|
#
|
4922
5051
|
# @!attribute [rw] bucket
|
4923
5052
|
# The bucket whose Object Lock configuration you want to retrieve.
|
5053
|
+
#
|
5054
|
+
# When using this API with an access point, you must direct requests
|
5055
|
+
# to the access point hostname. The access point hostname takes the
|
5056
|
+
# form
|
5057
|
+
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
5058
|
+
# When using this operation using an access point through the AWS
|
5059
|
+
# SDKs, you provide the access point ARN in place of the bucket name.
|
5060
|
+
# For more information about access point ARNs, see [Using Access
|
5061
|
+
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
5062
|
+
#
|
5063
|
+
#
|
5064
|
+
#
|
5065
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
4924
5066
|
# @return [String]
|
4925
5067
|
#
|
4926
5068
|
# @!attribute [rw] expected_bucket_owner
|
@@ -5172,9 +5314,19 @@ module Aws::S3
|
|
5172
5314
|
# For more information about access point ARNs, see [Using Access
|
5173
5315
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
5174
5316
|
#
|
5317
|
+
# When using this API with Amazon S3 on Outposts, you must direct
|
5318
|
+
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
5319
|
+
# takes the form
|
5320
|
+
# *AccessPointName*-*AccountId*.*outpostID*.s3-outposts.*Region*.amazonaws.com.
|
5321
|
+
# When using this operation using S3 on Outposts through the AWS SDKs,
|
5322
|
+
# you provide the Outposts bucket ARN in place of the bucket name. For
|
5323
|
+
# more information about S3 on Outposts ARNs, see [Using S3 on
|
5324
|
+
# Outposts][2] in the *Amazon Simple Storage Service Developer Guide*.
|
5325
|
+
#
|
5175
5326
|
#
|
5176
5327
|
#
|
5177
5328
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
5329
|
+
# [2]: https://docs.aws.amazon.com/
|
5178
5330
|
# @return [String]
|
5179
5331
|
#
|
5180
5332
|
# @!attribute [rw] if_match
|
@@ -5437,9 +5589,19 @@ module Aws::S3
|
|
5437
5589
|
# For more information about access point ARNs, see [Using Access
|
5438
5590
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
5439
5591
|
#
|
5592
|
+
# When using this API with Amazon S3 on Outposts, you must direct
|
5593
|
+
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
5594
|
+
# takes the form
|
5595
|
+
# *AccessPointName*-*AccountId*.*outpostID*.s3-outposts.*Region*.amazonaws.com.
|
5596
|
+
# When using this operation using S3 on Outposts through the AWS SDKs,
|
5597
|
+
# you provide the Outposts bucket ARN in place of the bucket name. For
|
5598
|
+
# more information about S3 on Outposts ARNs, see [Using S3 on
|
5599
|
+
# Outposts][2] in the *Amazon Simple Storage Service Developer Guide*.
|
5600
|
+
#
|
5440
5601
|
#
|
5441
5602
|
#
|
5442
5603
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
5604
|
+
# [2]: https://docs.aws.amazon.com/
|
5443
5605
|
# @return [String]
|
5444
5606
|
#
|
5445
5607
|
# @!attribute [rw] key
|
@@ -5712,6 +5874,29 @@ module Aws::S3
|
|
5712
5874
|
#
|
5713
5875
|
# @!attribute [rw] bucket
|
5714
5876
|
# The bucket name.
|
5877
|
+
#
|
5878
|
+
# When using this API with an access point, you must direct requests
|
5879
|
+
# to the access point hostname. The access point hostname takes the
|
5880
|
+
# form
|
5881
|
+
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
5882
|
+
# When using this operation using an access point through the AWS
|
5883
|
+
# SDKs, you provide the access point ARN in place of the bucket name.
|
5884
|
+
# For more information about access point ARNs, see [Using Access
|
5885
|
+
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
5886
|
+
#
|
5887
|
+
# When using this API with Amazon S3 on Outposts, you must direct
|
5888
|
+
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
5889
|
+
# takes the form
|
5890
|
+
# *AccessPointName*-*AccountId*.*outpostID*.s3-outposts.*Region*.amazonaws.com.
|
5891
|
+
# When using this operation using S3 on Outposts through the AWS SDKs,
|
5892
|
+
# you provide the Outposts bucket ARN in place of the bucket name. For
|
5893
|
+
# more information about S3 on Outposts ARNs, see [Using S3 on
|
5894
|
+
# Outposts][2] in the *Amazon Simple Storage Service Developer Guide*.
|
5895
|
+
#
|
5896
|
+
#
|
5897
|
+
#
|
5898
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
5899
|
+
# [2]: https://docs.aws.amazon.com/
|
5715
5900
|
# @return [String]
|
5716
5901
|
#
|
5717
5902
|
# @!attribute [rw] expected_bucket_owner
|
@@ -6006,6 +6191,29 @@ module Aws::S3
|
|
6006
6191
|
#
|
6007
6192
|
# @!attribute [rw] bucket
|
6008
6193
|
# The name of the bucket containing the object.
|
6194
|
+
#
|
6195
|
+
# When using this API with an access point, you must direct requests
|
6196
|
+
# to the access point hostname. The access point hostname takes the
|
6197
|
+
# form
|
6198
|
+
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
6199
|
+
# When using this operation using an access point through the AWS
|
6200
|
+
# SDKs, you provide the access point ARN in place of the bucket name.
|
6201
|
+
# For more information about access point ARNs, see [Using Access
|
6202
|
+
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
6203
|
+
#
|
6204
|
+
# When using this API with Amazon S3 on Outposts, you must direct
|
6205
|
+
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
6206
|
+
# takes the form
|
6207
|
+
# *AccessPointName*-*AccountId*.*outpostID*.s3-outposts.*Region*.amazonaws.com.
|
6208
|
+
# When using this operation using S3 on Outposts through the AWS SDKs,
|
6209
|
+
# you provide the Outposts bucket ARN in place of the bucket name. For
|
6210
|
+
# more information about S3 on Outposts ARNs, see [Using S3 on
|
6211
|
+
# Outposts][2] in the *Amazon Simple Storage Service Developer Guide*.
|
6212
|
+
#
|
6213
|
+
#
|
6214
|
+
#
|
6215
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
6216
|
+
# [2]: https://docs.aws.amazon.com/
|
6009
6217
|
# @return [String]
|
6010
6218
|
#
|
6011
6219
|
# @!attribute [rw] if_match
|
@@ -7101,7 +7309,7 @@ module Aws::S3
|
|
7101
7309
|
end
|
7102
7310
|
|
7103
7311
|
# @!attribute [rw] bucket
|
7104
|
-
#
|
7312
|
+
# The name of the bucket to which the multipart upload was initiated.
|
7105
7313
|
# @return [String]
|
7106
7314
|
#
|
7107
7315
|
# @!attribute [rw] key_marker
|
@@ -7205,7 +7413,7 @@ module Aws::S3
|
|
7205
7413
|
# }
|
7206
7414
|
#
|
7207
7415
|
# @!attribute [rw] bucket
|
7208
|
-
#
|
7416
|
+
# The name of the bucket to which the multipart upload was initiated.
|
7209
7417
|
#
|
7210
7418
|
# When using this API with an access point, you must direct requests
|
7211
7419
|
# to the access point hostname. The access point hostname takes the
|
@@ -7216,9 +7424,19 @@ module Aws::S3
|
|
7216
7424
|
# For more information about access point ARNs, see [Using Access
|
7217
7425
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
7218
7426
|
#
|
7427
|
+
# When using this API with Amazon S3 on Outposts, you must direct
|
7428
|
+
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
7429
|
+
# takes the form
|
7430
|
+
# *AccessPointName*-*AccountId*.*outpostID*.s3-outposts.*Region*.amazonaws.com.
|
7431
|
+
# When using this operation using S3 on Outposts through the AWS SDKs,
|
7432
|
+
# you provide the Outposts bucket ARN in place of the bucket name. For
|
7433
|
+
# more information about S3 on Outposts ARNs, see [Using S3 on
|
7434
|
+
# Outposts][2] in the *Amazon Simple Storage Service Developer Guide*.
|
7435
|
+
#
|
7219
7436
|
#
|
7220
7437
|
#
|
7221
7438
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
7439
|
+
# [2]: https://docs.aws.amazon.com/
|
7222
7440
|
# @return [String]
|
7223
7441
|
#
|
7224
7442
|
# @!attribute [rw] delimiter
|
@@ -7338,7 +7556,7 @@ module Aws::S3
|
|
7338
7556
|
# @return [Array<Types::DeleteMarkerEntry>]
|
7339
7557
|
#
|
7340
7558
|
# @!attribute [rw] name
|
7341
|
-
#
|
7559
|
+
# The bucket name.
|
7342
7560
|
# @return [String]
|
7343
7561
|
#
|
7344
7562
|
# @!attribute [rw] prefix
|
@@ -7411,19 +7629,6 @@ module Aws::S3
|
|
7411
7629
|
#
|
7412
7630
|
# @!attribute [rw] bucket
|
7413
7631
|
# The bucket name that contains the objects.
|
7414
|
-
#
|
7415
|
-
# When using this API with an access point, you must direct requests
|
7416
|
-
# to the access point hostname. The access point hostname takes the
|
7417
|
-
# form
|
7418
|
-
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
7419
|
-
# When using this operation using an access point through the AWS
|
7420
|
-
# SDKs, you provide the access point ARN in place of the bucket name.
|
7421
|
-
# For more information about access point ARNs, see [Using Access
|
7422
|
-
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
7423
|
-
#
|
7424
|
-
#
|
7425
|
-
#
|
7426
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
7427
7632
|
# @return [String]
|
7428
7633
|
#
|
7429
7634
|
# @!attribute [rw] delimiter
|
@@ -7518,7 +7723,7 @@ module Aws::S3
|
|
7518
7723
|
# @return [Array<Types::Object>]
|
7519
7724
|
#
|
7520
7725
|
# @!attribute [rw] name
|
7521
|
-
#
|
7726
|
+
# The bucket name.
|
7522
7727
|
# @return [String]
|
7523
7728
|
#
|
7524
7729
|
# @!attribute [rw] prefix
|
@@ -7594,6 +7799,29 @@ module Aws::S3
|
|
7594
7799
|
#
|
7595
7800
|
# @!attribute [rw] bucket
|
7596
7801
|
# The name of the bucket containing the objects.
|
7802
|
+
#
|
7803
|
+
# When using this API with an access point, you must direct requests
|
7804
|
+
# to the access point hostname. The access point hostname takes the
|
7805
|
+
# form
|
7806
|
+
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
7807
|
+
# When using this operation using an access point through the AWS
|
7808
|
+
# SDKs, you provide the access point ARN in place of the bucket name.
|
7809
|
+
# For more information about access point ARNs, see [Using Access
|
7810
|
+
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
7811
|
+
#
|
7812
|
+
# When using this API with Amazon S3 on Outposts, you must direct
|
7813
|
+
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
7814
|
+
# takes the form
|
7815
|
+
# *AccessPointName*-*AccountId*.*outpostID*.s3-outposts.*Region*.amazonaws.com.
|
7816
|
+
# When using this operation using S3 on Outposts through the AWS SDKs,
|
7817
|
+
# you provide the Outposts bucket ARN in place of the bucket name. For
|
7818
|
+
# more information about S3 on Outposts ARNs, see [Using S3 on
|
7819
|
+
# Outposts][2] in the *Amazon Simple Storage Service Developer Guide*.
|
7820
|
+
#
|
7821
|
+
#
|
7822
|
+
#
|
7823
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
7824
|
+
# [2]: https://docs.aws.amazon.com/
|
7597
7825
|
# @return [String]
|
7598
7826
|
#
|
7599
7827
|
# @!attribute [rw] delimiter
|
@@ -7661,7 +7889,7 @@ module Aws::S3
|
|
7661
7889
|
# @return [Array<Types::Object>]
|
7662
7890
|
#
|
7663
7891
|
# @!attribute [rw] name
|
7664
|
-
#
|
7892
|
+
# The bucket name.
|
7665
7893
|
#
|
7666
7894
|
# When using this API with an access point, you must direct requests
|
7667
7895
|
# to the access point hostname. The access point hostname takes the
|
@@ -7672,9 +7900,19 @@ module Aws::S3
|
|
7672
7900
|
# For more information about access point ARNs, see [Using Access
|
7673
7901
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
7674
7902
|
#
|
7903
|
+
# When using this API with Amazon S3 on Outposts, you must direct
|
7904
|
+
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
7905
|
+
# takes the form
|
7906
|
+
# *AccessPointName*-*AccountId*.*outpostID*.s3-outposts.*Region*.amazonaws.com.
|
7907
|
+
# When using this operation using S3 on Outposts through the AWS SDKs,
|
7908
|
+
# you provide the Outposts bucket ARN in place of the bucket name. For
|
7909
|
+
# more information about S3 on Outposts ARNs, see [Using S3 on
|
7910
|
+
# Outposts][2] in the *Amazon Simple Storage Service Developer Guide*.
|
7911
|
+
#
|
7675
7912
|
#
|
7676
7913
|
#
|
7677
7914
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
7915
|
+
# [2]: https://docs.aws.amazon.com/
|
7678
7916
|
# @return [String]
|
7679
7917
|
#
|
7680
7918
|
# @!attribute [rw] prefix
|
@@ -7797,9 +8035,19 @@ module Aws::S3
|
|
7797
8035
|
# For more information about access point ARNs, see [Using Access
|
7798
8036
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
7799
8037
|
#
|
8038
|
+
# When using this API with Amazon S3 on Outposts, you must direct
|
8039
|
+
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
8040
|
+
# takes the form
|
8041
|
+
# *AccessPointName*-*AccountId*.*outpostID*.s3-outposts.*Region*.amazonaws.com.
|
8042
|
+
# When using this operation using S3 on Outposts through the AWS SDKs,
|
8043
|
+
# you provide the Outposts bucket ARN in place of the bucket name. For
|
8044
|
+
# more information about S3 on Outposts ARNs, see [Using S3 on
|
8045
|
+
# Outposts][2] in the *Amazon Simple Storage Service Developer Guide*.
|
8046
|
+
#
|
7800
8047
|
#
|
7801
8048
|
#
|
7802
8049
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
8050
|
+
# [2]: https://docs.aws.amazon.com/
|
7803
8051
|
# @return [String]
|
7804
8052
|
#
|
7805
8053
|
# @!attribute [rw] delimiter
|
@@ -7893,7 +8141,7 @@ module Aws::S3
|
|
7893
8141
|
# @return [String]
|
7894
8142
|
#
|
7895
8143
|
# @!attribute [rw] bucket
|
7896
|
-
#
|
8144
|
+
# The name of the bucket to which the multipart upload was initiated.
|
7897
8145
|
# @return [String]
|
7898
8146
|
#
|
7899
8147
|
# @!attribute [rw] key
|
@@ -7991,7 +8239,7 @@ module Aws::S3
|
|
7991
8239
|
# }
|
7992
8240
|
#
|
7993
8241
|
# @!attribute [rw] bucket
|
7994
|
-
#
|
8242
|
+
# The name of the bucket to which the parts are being uploaded.
|
7995
8243
|
#
|
7996
8244
|
# When using this API with an access point, you must direct requests
|
7997
8245
|
# to the access point hostname. The access point hostname takes the
|
@@ -8002,9 +8250,19 @@ module Aws::S3
|
|
8002
8250
|
# For more information about access point ARNs, see [Using Access
|
8003
8251
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
8004
8252
|
#
|
8253
|
+
# When using this API with Amazon S3 on Outposts, you must direct
|
8254
|
+
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
8255
|
+
# takes the form
|
8256
|
+
# *AccessPointName*-*AccountId*.*outpostID*.s3-outposts.*Region*.amazonaws.com.
|
8257
|
+
# When using this operation using S3 on Outposts through the AWS SDKs,
|
8258
|
+
# you provide the Outposts bucket ARN in place of the bucket name. For
|
8259
|
+
# more information about S3 on Outposts ARNs, see [Using S3 on
|
8260
|
+
# Outposts][2] in the *Amazon Simple Storage Service Developer Guide*.
|
8261
|
+
#
|
8005
8262
|
#
|
8006
8263
|
#
|
8007
8264
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
8265
|
+
# [2]: https://docs.aws.amazon.com/
|
8008
8266
|
# @return [String]
|
8009
8267
|
#
|
8010
8268
|
# @!attribute [rw] key
|
@@ -8915,7 +9173,7 @@ module Aws::S3
|
|
8915
9173
|
# value: "MetadataValue",
|
8916
9174
|
# },
|
8917
9175
|
# ],
|
8918
|
-
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE
|
9176
|
+
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS
|
8919
9177
|
# },
|
8920
9178
|
# }
|
8921
9179
|
#
|
@@ -9176,7 +9434,8 @@ module Aws::S3
|
|
9176
9434
|
# }
|
9177
9435
|
#
|
9178
9436
|
# @!attribute [rw] bucket
|
9179
|
-
#
|
9437
|
+
# The name of the bucket for which the accelerate configuration is
|
9438
|
+
# set.
|
9180
9439
|
# @return [String]
|
9181
9440
|
#
|
9182
9441
|
# @!attribute [rw] accelerate_configuration
|
@@ -10051,7 +10310,7 @@ module Aws::S3
|
|
10051
10310
|
# destination: { # required
|
10052
10311
|
# bucket: "BucketName", # required
|
10053
10312
|
# account: "AccountId",
|
10054
|
-
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE
|
10313
|
+
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS
|
10055
10314
|
# access_control_translation: {
|
10056
10315
|
# owner: "Destination", # required, accepts Destination
|
10057
10316
|
# },
|
@@ -10468,6 +10727,29 @@ module Aws::S3
|
|
10468
10727
|
#
|
10469
10728
|
# @!attribute [rw] key
|
10470
10729
|
# Key for which the PUT operation was initiated.
|
10730
|
+
#
|
10731
|
+
# When using this API with an access point, you must direct requests
|
10732
|
+
# to the access point hostname. The access point hostname takes the
|
10733
|
+
# form
|
10734
|
+
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
10735
|
+
# When using this operation using an access point through the AWS
|
10736
|
+
# SDKs, you provide the access point ARN in place of the bucket name.
|
10737
|
+
# For more information about access point ARNs, see [Using Access
|
10738
|
+
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
10739
|
+
#
|
10740
|
+
# When using this API with Amazon S3 on Outposts, you must direct
|
10741
|
+
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
10742
|
+
# takes the form
|
10743
|
+
# *AccessPointName*-*AccountId*.*outpostID*.s3-outposts.*Region*.amazonaws.com.
|
10744
|
+
# When using this operation using S3 on Outposts through the AWS SDKs,
|
10745
|
+
# you provide the Outposts bucket ARN in place of the bucket name. For
|
10746
|
+
# more information about S3 on Outposts ARNs, see [Using S3 on
|
10747
|
+
# Outposts][2] in the *Amazon Simple Storage Service Developer Guide*.
|
10748
|
+
#
|
10749
|
+
#
|
10750
|
+
#
|
10751
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
10752
|
+
# [2]: https://docs.aws.amazon.com/
|
10471
10753
|
# @return [String]
|
10472
10754
|
#
|
10473
10755
|
# @!attribute [rw] request_payer
|
@@ -10789,7 +11071,7 @@ module Aws::S3
|
|
10789
11071
|
# "MetadataKey" => "MetadataValue",
|
10790
11072
|
# },
|
10791
11073
|
# server_side_encryption: "AES256", # accepts AES256, aws:kms
|
10792
|
-
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE
|
11074
|
+
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS
|
10793
11075
|
# website_redirect_location: "WebsiteRedirectLocation",
|
10794
11076
|
# sse_customer_algorithm: "SSECustomerAlgorithm",
|
10795
11077
|
# sse_customer_key: "SSECustomerKey",
|
@@ -10818,7 +11100,7 @@ module Aws::S3
|
|
10818
11100
|
# @return [IO]
|
10819
11101
|
#
|
10820
11102
|
# @!attribute [rw] bucket
|
10821
|
-
#
|
11103
|
+
# The bucket name to which the PUT operation was initiated.
|
10822
11104
|
#
|
10823
11105
|
# When using this API with an access point, you must direct requests
|
10824
11106
|
# to the access point hostname. The access point hostname takes the
|
@@ -10829,9 +11111,19 @@ module Aws::S3
|
|
10829
11111
|
# For more information about access point ARNs, see [Using Access
|
10830
11112
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
10831
11113
|
#
|
11114
|
+
# When using this API with Amazon S3 on Outposts, you must direct
|
11115
|
+
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
11116
|
+
# takes the form
|
11117
|
+
# *AccessPointName*-*AccountId*.*outpostID*.s3-outposts.*Region*.amazonaws.com.
|
11118
|
+
# When using this operation using S3 on Outposts through the AWS SDKs,
|
11119
|
+
# you provide the Outposts bucket ARN in place of the bucket name. For
|
11120
|
+
# more information about S3 on Outposts ARNs, see [Using S3 on
|
11121
|
+
# Outposts][2] in the *Amazon Simple Storage Service Developer Guide*.
|
11122
|
+
#
|
10832
11123
|
#
|
10833
11124
|
#
|
10834
11125
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
11126
|
+
# [2]: https://docs.aws.amazon.com/
|
10835
11127
|
# @return [String]
|
10836
11128
|
#
|
10837
11129
|
# @!attribute [rw] cache_control
|
@@ -11243,9 +11535,19 @@ module Aws::S3
|
|
11243
11535
|
# For more information about access point ARNs, see [Using Access
|
11244
11536
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
11245
11537
|
#
|
11538
|
+
# When using this API with Amazon S3 on Outposts, you must direct
|
11539
|
+
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
11540
|
+
# takes the form
|
11541
|
+
# *AccessPointName*-*AccountId*.*outpostID*.s3-outposts.*Region*.amazonaws.com.
|
11542
|
+
# When using this operation using S3 on Outposts through the AWS SDKs,
|
11543
|
+
# you provide the Outposts bucket ARN in place of the bucket name. For
|
11544
|
+
# more information about S3 on Outposts ARNs, see [Using S3 on
|
11545
|
+
# Outposts][2] in the *Amazon Simple Storage Service Developer Guide*.
|
11546
|
+
#
|
11246
11547
|
#
|
11247
11548
|
#
|
11248
11549
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
11550
|
+
# [2]: https://docs.aws.amazon.com/
|
11249
11551
|
# @return [String]
|
11250
11552
|
#
|
11251
11553
|
# @!attribute [rw] key
|
@@ -11588,7 +11890,7 @@ module Aws::S3
|
|
11588
11890
|
# destination: { # required
|
11589
11891
|
# bucket: "BucketName", # required
|
11590
11892
|
# account: "AccountId",
|
11591
|
-
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE
|
11893
|
+
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS
|
11592
11894
|
# access_control_translation: {
|
11593
11895
|
# owner: "Destination", # required, accepts Destination
|
11594
11896
|
# },
|
@@ -11679,7 +11981,7 @@ module Aws::S3
|
|
11679
11981
|
# destination: { # required
|
11680
11982
|
# bucket: "BucketName", # required
|
11681
11983
|
# account: "AccountId",
|
11682
|
-
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE
|
11984
|
+
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS
|
11683
11985
|
# access_control_translation: {
|
11684
11986
|
# owner: "Destination", # required, accepts Destination
|
11685
11987
|
# },
|
@@ -12104,7 +12406,7 @@ module Aws::S3
|
|
12104
12406
|
# value: "MetadataValue",
|
12105
12407
|
# },
|
12106
12408
|
# ],
|
12107
|
-
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE
|
12409
|
+
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS
|
12108
12410
|
# },
|
12109
12411
|
# },
|
12110
12412
|
# },
|
@@ -12124,9 +12426,19 @@ module Aws::S3
|
|
12124
12426
|
# For more information about access point ARNs, see [Using Access
|
12125
12427
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
12126
12428
|
#
|
12429
|
+
# When using this API with Amazon S3 on Outposts, you must direct
|
12430
|
+
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
12431
|
+
# takes the form
|
12432
|
+
# *AccessPointName*-*AccountId*.*outpostID*.s3-outposts.*Region*.amazonaws.com.
|
12433
|
+
# When using this operation using S3 on Outposts through the AWS SDKs,
|
12434
|
+
# you provide the Outposts bucket ARN in place of the bucket name. For
|
12435
|
+
# more information about S3 on Outposts ARNs, see [Using S3 on
|
12436
|
+
# Outposts][2] in the *Amazon Simple Storage Service Developer Guide*.
|
12437
|
+
#
|
12127
12438
|
#
|
12128
12439
|
#
|
12129
12440
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
12441
|
+
# [2]: https://docs.aws.amazon.com/
|
12130
12442
|
# @return [String]
|
12131
12443
|
#
|
12132
12444
|
# @!attribute [rw] key
|
@@ -12254,7 +12566,7 @@ module Aws::S3
|
|
12254
12566
|
# value: "MetadataValue",
|
12255
12567
|
# },
|
12256
12568
|
# ],
|
12257
|
-
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE
|
12569
|
+
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS
|
12258
12570
|
# },
|
12259
12571
|
# },
|
12260
12572
|
# }
|
@@ -12536,7 +12848,7 @@ module Aws::S3
|
|
12536
12848
|
# value: "MetadataValue",
|
12537
12849
|
# },
|
12538
12850
|
# ],
|
12539
|
-
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE
|
12851
|
+
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS
|
12540
12852
|
# }
|
12541
12853
|
#
|
12542
12854
|
# @!attribute [rw] bucket_name
|
@@ -13254,7 +13566,7 @@ module Aws::S3
|
|
13254
13566
|
# @return [Types::Grantee]
|
13255
13567
|
#
|
13256
13568
|
# @!attribute [rw] permission
|
13257
|
-
# Logging permissions assigned to the
|
13569
|
+
# Logging permissions assigned to the grantee for the bucket.
|
13258
13570
|
# @return [String]
|
13259
13571
|
#
|
13260
13572
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/TargetGrant AWS API Documentation
|
@@ -13504,6 +13816,29 @@ module Aws::S3
|
|
13504
13816
|
#
|
13505
13817
|
# @!attribute [rw] bucket
|
13506
13818
|
# The bucket name.
|
13819
|
+
#
|
13820
|
+
# When using this API with an access point, you must direct requests
|
13821
|
+
# to the access point hostname. The access point hostname takes the
|
13822
|
+
# form
|
13823
|
+
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
13824
|
+
# When using this operation using an access point through the AWS
|
13825
|
+
# SDKs, you provide the access point ARN in place of the bucket name.
|
13826
|
+
# For more information about access point ARNs, see [Using Access
|
13827
|
+
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
13828
|
+
#
|
13829
|
+
# When using this API with Amazon S3 on Outposts, you must direct
|
13830
|
+
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
13831
|
+
# takes the form
|
13832
|
+
# *AccessPointName*-*AccountId*.*outpostID*.s3-outposts.*Region*.amazonaws.com.
|
13833
|
+
# When using this operation using S3 on Outposts through the AWS SDKs,
|
13834
|
+
# you provide the Outposts bucket ARN in place of the bucket name. For
|
13835
|
+
# more information about S3 on Outposts ARNs, see [Using S3 on
|
13836
|
+
# Outposts][2] in the *Amazon Simple Storage Service Developer Guide*.
|
13837
|
+
#
|
13838
|
+
#
|
13839
|
+
#
|
13840
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
13841
|
+
# [2]: https://docs.aws.amazon.com/
|
13507
13842
|
# @return [String]
|
13508
13843
|
#
|
13509
13844
|
# @!attribute [rw] copy_source
|
@@ -13522,7 +13857,7 @@ module Aws::S3
|
|
13522
13857
|
# Resource Name (ARN) of the object as accessed through the access
|
13523
13858
|
# point, in the format
|
13524
13859
|
# `arn:aws:s3:<Region>:<account-id>:accesspoint/<access-point-name>/object/<key>`.
|
13525
|
-
# For example, to copy the object `reports/january.pdf` through
|
13860
|
+
# For example, to copy the object `reports/january.pdf` through
|
13526
13861
|
# access point `my-access-point` owned by account `123456789012` in
|
13527
13862
|
# Region `us-west-2`, use the URL encoding of
|
13528
13863
|
# `arn:aws:s3:us-west-2:123456789012:accesspoint/my-access-point/object/reports/january.pdf`.
|
@@ -13533,6 +13868,15 @@ module Aws::S3
|
|
13533
13868
|
#
|
13534
13869
|
# </note>
|
13535
13870
|
#
|
13871
|
+
# Alternatively, for objects accessed through Amazon S3 on Outposts,
|
13872
|
+
# specify the ARN of the object as accessed in the format
|
13873
|
+
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/object/<key>`.
|
13874
|
+
# For example, to copy the object `reports/january.pdf` through
|
13875
|
+
# outpost `my-outpost` owned by account `123456789012` in Region
|
13876
|
+
# `us-west-2`, use the URL encoding of
|
13877
|
+
# `arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/object/reports/january.pdf`.
|
13878
|
+
# The value must be URL encoded.
|
13879
|
+
#
|
13536
13880
|
# To copy a specific version of an object, append
|
13537
13881
|
# `?versionId=<version-id>` to the value (for example,
|
13538
13882
|
# `awsexamplebucket/reports/january.pdf?versionId=QUpfdndhfd8438MNFDN93jdnJFkdmqnh893`).
|
@@ -13742,7 +14086,30 @@ module Aws::S3
|
|
13742
14086
|
# @return [IO]
|
13743
14087
|
#
|
13744
14088
|
# @!attribute [rw] bucket
|
13745
|
-
#
|
14089
|
+
# The name of the bucket to which the multipart upload was initiated.
|
14090
|
+
#
|
14091
|
+
# When using this API with an access point, you must direct requests
|
14092
|
+
# to the access point hostname. The access point hostname takes the
|
14093
|
+
# form
|
14094
|
+
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
14095
|
+
# When using this operation using an access point through the AWS
|
14096
|
+
# SDKs, you provide the access point ARN in place of the bucket name.
|
14097
|
+
# For more information about access point ARNs, see [Using Access
|
14098
|
+
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
14099
|
+
#
|
14100
|
+
# When using this API with Amazon S3 on Outposts, you must direct
|
14101
|
+
# requests to the S3 on Outposts hostname. The S3 on Outposts hostname
|
14102
|
+
# takes the form
|
14103
|
+
# *AccessPointName*-*AccountId*.*outpostID*.s3-outposts.*Region*.amazonaws.com.
|
14104
|
+
# When using this operation using S3 on Outposts through the AWS SDKs,
|
14105
|
+
# you provide the Outposts bucket ARN in place of the bucket name. For
|
14106
|
+
# more information about S3 on Outposts ARNs, see [Using S3 on
|
14107
|
+
# Outposts][2] in the *Amazon Simple Storage Service Developer Guide*.
|
14108
|
+
#
|
14109
|
+
#
|
14110
|
+
#
|
14111
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
14112
|
+
# [2]: https://docs.aws.amazon.com/
|
13746
14113
|
# @return [String]
|
13747
14114
|
#
|
13748
14115
|
# @!attribute [rw] content_length
|