aws-sdk-s3 1.82.0 → 1.83.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-s3.rb +1 -1
- data/lib/aws-sdk-s3/bucket.rb +20 -2
- data/lib/aws-sdk-s3/client.rb +302 -77
- data/lib/aws-sdk-s3/client_api.rb +61 -0
- data/lib/aws-sdk-s3/object.rb +60 -4
- data/lib/aws-sdk-s3/object_acl.rb +8 -0
- data/lib/aws-sdk-s3/object_summary.rb +60 -4
- data/lib/aws-sdk-s3/object_version.rb +5 -1
- data/lib/aws-sdk-s3/types.rb +348 -120
- metadata +2 -2
data/lib/aws-sdk-s3/types.rb
CHANGED
@@ -71,9 +71,9 @@ module Aws::S3
|
|
71
71
|
# to the access point hostname. The access point hostname takes the
|
72
72
|
# form
|
73
73
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
74
|
-
# When using this operation
|
75
|
-
#
|
76
|
-
#
|
74
|
+
# When using this operation with an access point through the AWS SDKs,
|
75
|
+
# you provide the access point ARN in place of the bucket name. For
|
76
|
+
# more information about access point ARNs, see [Using Access
|
77
77
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
78
78
|
#
|
79
79
|
# When using this API with Amazon S3 on Outposts, you must direct
|
@@ -88,7 +88,7 @@ module Aws::S3
|
|
88
88
|
#
|
89
89
|
#
|
90
90
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
91
|
-
# [2]: https://docs.aws.amazon.com/
|
91
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/S3onOutposts.html
|
92
92
|
# @return [String]
|
93
93
|
#
|
94
94
|
# @!attribute [rw] key
|
@@ -472,8 +472,8 @@ module Aws::S3
|
|
472
472
|
end
|
473
473
|
|
474
474
|
# The requested bucket name is not available. The bucket namespace is
|
475
|
-
# shared by all users of the system.
|
476
|
-
#
|
475
|
+
# shared by all users of the system. Select a different name and try
|
476
|
+
# again.
|
477
477
|
#
|
478
478
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/BucketAlreadyExists AWS API Documentation
|
479
479
|
#
|
@@ -914,9 +914,9 @@ module Aws::S3
|
|
914
914
|
# to the access point hostname. The access point hostname takes the
|
915
915
|
# form
|
916
916
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
917
|
-
# When using this operation
|
918
|
-
#
|
919
|
-
#
|
917
|
+
# When using this operation with an access point through the AWS SDKs,
|
918
|
+
# you provide the access point ARN in place of the bucket name. For
|
919
|
+
# more information about access point ARNs, see [Using Access
|
920
920
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
921
921
|
#
|
922
922
|
# When using this API with Amazon S3 on Outposts, you must direct
|
@@ -931,7 +931,7 @@ module Aws::S3
|
|
931
931
|
#
|
932
932
|
#
|
933
933
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
934
|
-
# [2]: https://docs.aws.amazon.com/
|
934
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/S3onOutposts.html
|
935
935
|
# @return [String]
|
936
936
|
#
|
937
937
|
# @!attribute [rw] key
|
@@ -1284,6 +1284,8 @@ module Aws::S3
|
|
1284
1284
|
#
|
1285
1285
|
# @!attribute [rw] acl
|
1286
1286
|
# The canned ACL to apply to the object.
|
1287
|
+
#
|
1288
|
+
# This action is not supported by Amazon S3 on Outposts.
|
1287
1289
|
# @return [String]
|
1288
1290
|
#
|
1289
1291
|
# @!attribute [rw] bucket
|
@@ -1293,9 +1295,9 @@ module Aws::S3
|
|
1293
1295
|
# to the access point hostname. The access point hostname takes the
|
1294
1296
|
# form
|
1295
1297
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
1296
|
-
# When using this operation
|
1297
|
-
#
|
1298
|
-
#
|
1298
|
+
# When using this operation with an access point through the AWS SDKs,
|
1299
|
+
# you provide the access point ARN in place of the bucket name. For
|
1300
|
+
# more information about access point ARNs, see [Using Access
|
1299
1301
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
1300
1302
|
#
|
1301
1303
|
# When using this API with Amazon S3 on Outposts, you must direct
|
@@ -1310,7 +1312,7 @@ module Aws::S3
|
|
1310
1312
|
#
|
1311
1313
|
#
|
1312
1314
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
1313
|
-
# [2]: https://docs.aws.amazon.com/
|
1315
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/S3onOutposts.html
|
1314
1316
|
# @return [String]
|
1315
1317
|
#
|
1316
1318
|
# @!attribute [rw] cache_control
|
@@ -1408,18 +1410,26 @@ module Aws::S3
|
|
1408
1410
|
# @!attribute [rw] grant_full_control
|
1409
1411
|
# Gives the grantee READ, READ\_ACP, and WRITE\_ACP permissions on the
|
1410
1412
|
# object.
|
1413
|
+
#
|
1414
|
+
# This action is not supported by Amazon S3 on Outposts.
|
1411
1415
|
# @return [String]
|
1412
1416
|
#
|
1413
1417
|
# @!attribute [rw] grant_read
|
1414
1418
|
# Allows grantee to read the object data and its metadata.
|
1419
|
+
#
|
1420
|
+
# This action is not supported by Amazon S3 on Outposts.
|
1415
1421
|
# @return [String]
|
1416
1422
|
#
|
1417
1423
|
# @!attribute [rw] grant_read_acp
|
1418
1424
|
# Allows grantee to read the object ACL.
|
1425
|
+
#
|
1426
|
+
# This action is not supported by Amazon S3 on Outposts.
|
1419
1427
|
# @return [String]
|
1420
1428
|
#
|
1421
1429
|
# @!attribute [rw] grant_write_acp
|
1422
1430
|
# Allows grantee to write the ACL for the applicable object.
|
1431
|
+
#
|
1432
|
+
# This action is not supported by Amazon S3 on Outposts.
|
1423
1433
|
# @return [String]
|
1424
1434
|
#
|
1425
1435
|
# @!attribute [rw] key
|
@@ -1446,7 +1456,16 @@ module Aws::S3
|
|
1446
1456
|
# @return [String]
|
1447
1457
|
#
|
1448
1458
|
# @!attribute [rw] storage_class
|
1449
|
-
#
|
1459
|
+
# By default, Amazon S3 uses the STANDARD Storage Class to store newly
|
1460
|
+
# created objects. The STANDARD storage class provides high durability
|
1461
|
+
# and high availability. Depending on performance needs, you can
|
1462
|
+
# specify a different Storage Class. Amazon S3 on Outposts only uses
|
1463
|
+
# the OUTPOSTS Storage Class. For more information, see [Storage
|
1464
|
+
# Classes][1] in the *Amazon S3 Service Developer Guide*.
|
1465
|
+
#
|
1466
|
+
#
|
1467
|
+
#
|
1468
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-class-intro.html
|
1450
1469
|
# @return [String]
|
1451
1470
|
#
|
1452
1471
|
# @!attribute [rw] website_redirect_location
|
@@ -1781,9 +1800,9 @@ module Aws::S3
|
|
1781
1800
|
# to the access point hostname. The access point hostname takes the
|
1782
1801
|
# form
|
1783
1802
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
1784
|
-
# When using this operation
|
1785
|
-
#
|
1786
|
-
#
|
1803
|
+
# When using this operation with an access point through the AWS SDKs,
|
1804
|
+
# you provide the access point ARN in place of the bucket name. For
|
1805
|
+
# more information about access point ARNs, see [Using Access
|
1787
1806
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
1788
1807
|
#
|
1789
1808
|
# When using this API with Amazon S3 on Outposts, you must direct
|
@@ -1798,7 +1817,7 @@ module Aws::S3
|
|
1798
1817
|
#
|
1799
1818
|
#
|
1800
1819
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
1801
|
-
# [2]: https://docs.aws.amazon.com/
|
1820
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/S3onOutposts.html
|
1802
1821
|
# @return [String]
|
1803
1822
|
#
|
1804
1823
|
# @!attribute [rw] key
|
@@ -1901,6 +1920,8 @@ module Aws::S3
|
|
1901
1920
|
#
|
1902
1921
|
# @!attribute [rw] acl
|
1903
1922
|
# The canned ACL to apply to the object.
|
1923
|
+
#
|
1924
|
+
# This action is not supported by Amazon S3 on Outposts.
|
1904
1925
|
# @return [String]
|
1905
1926
|
#
|
1906
1927
|
# @!attribute [rw] bucket
|
@@ -1910,9 +1931,9 @@ module Aws::S3
|
|
1910
1931
|
# to the access point hostname. The access point hostname takes the
|
1911
1932
|
# form
|
1912
1933
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
1913
|
-
# When using this operation
|
1914
|
-
#
|
1915
|
-
#
|
1934
|
+
# When using this operation with an access point through the AWS SDKs,
|
1935
|
+
# you provide the access point ARN in place of the bucket name. For
|
1936
|
+
# more information about access point ARNs, see [Using Access
|
1916
1937
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
1917
1938
|
#
|
1918
1939
|
# When using this API with Amazon S3 on Outposts, you must direct
|
@@ -1927,7 +1948,7 @@ module Aws::S3
|
|
1927
1948
|
#
|
1928
1949
|
#
|
1929
1950
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
1930
|
-
# [2]: https://docs.aws.amazon.com/
|
1951
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/S3onOutposts.html
|
1931
1952
|
# @return [String]
|
1932
1953
|
#
|
1933
1954
|
# @!attribute [rw] cache_control
|
@@ -1959,18 +1980,26 @@ module Aws::S3
|
|
1959
1980
|
# @!attribute [rw] grant_full_control
|
1960
1981
|
# Gives the grantee READ, READ\_ACP, and WRITE\_ACP permissions on the
|
1961
1982
|
# object.
|
1983
|
+
#
|
1984
|
+
# This action is not supported by Amazon S3 on Outposts.
|
1962
1985
|
# @return [String]
|
1963
1986
|
#
|
1964
1987
|
# @!attribute [rw] grant_read
|
1965
1988
|
# Allows grantee to read the object data and its metadata.
|
1989
|
+
#
|
1990
|
+
# This action is not supported by Amazon S3 on Outposts.
|
1966
1991
|
# @return [String]
|
1967
1992
|
#
|
1968
1993
|
# @!attribute [rw] grant_read_acp
|
1969
1994
|
# Allows grantee to read the object ACL.
|
1995
|
+
#
|
1996
|
+
# This action is not supported by Amazon S3 on Outposts.
|
1970
1997
|
# @return [String]
|
1971
1998
|
#
|
1972
1999
|
# @!attribute [rw] grant_write_acp
|
1973
2000
|
# Allows grantee to write the ACL for the applicable object.
|
2001
|
+
#
|
2002
|
+
# This action is not supported by Amazon S3 on Outposts.
|
1974
2003
|
# @return [String]
|
1975
2004
|
#
|
1976
2005
|
# @!attribute [rw] key
|
@@ -1987,7 +2016,16 @@ module Aws::S3
|
|
1987
2016
|
# @return [String]
|
1988
2017
|
#
|
1989
2018
|
# @!attribute [rw] storage_class
|
1990
|
-
#
|
2019
|
+
# By default, Amazon S3 uses the STANDARD Storage Class to store newly
|
2020
|
+
# created objects. The STANDARD storage class provides high durability
|
2021
|
+
# and high availability. Depending on performance needs, you can
|
2022
|
+
# specify a different Storage Class. Amazon S3 on Outposts only uses
|
2023
|
+
# the OUTPOSTS Storage Class. For more information, see [Storage
|
2024
|
+
# Classes][1] in the *Amazon S3 Service Developer Guide*.
|
2025
|
+
#
|
2026
|
+
#
|
2027
|
+
#
|
2028
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-class-intro.html
|
1991
2029
|
# @return [String]
|
1992
2030
|
#
|
1993
2031
|
# @!attribute [rw] website_redirect_location
|
@@ -2362,6 +2400,30 @@ module Aws::S3
|
|
2362
2400
|
include Aws::Structure
|
2363
2401
|
end
|
2364
2402
|
|
2403
|
+
# @note When making an API call, you may pass DeleteBucketOwnershipControlsRequest
|
2404
|
+
# data as a hash:
|
2405
|
+
#
|
2406
|
+
# {
|
2407
|
+
# bucket: "BucketName", # required
|
2408
|
+
# expected_bucket_owner: "AccountId",
|
2409
|
+
# }
|
2410
|
+
#
|
2411
|
+
# @!attribute [rw] bucket
|
2412
|
+
# The Amazon S3 bucket whose `OwnershipControls` you want to delete.
|
2413
|
+
# @return [String]
|
2414
|
+
#
|
2415
|
+
# @!attribute [rw] expected_bucket_owner
|
2416
|
+
# @return [String]
|
2417
|
+
#
|
2418
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/DeleteBucketOwnershipControlsRequest AWS API Documentation
|
2419
|
+
#
|
2420
|
+
class DeleteBucketOwnershipControlsRequest < Struct.new(
|
2421
|
+
:bucket,
|
2422
|
+
:expected_bucket_owner)
|
2423
|
+
SENSITIVE = []
|
2424
|
+
include Aws::Structure
|
2425
|
+
end
|
2426
|
+
|
2365
2427
|
# @note When making an API call, you may pass DeleteBucketPolicyRequest
|
2366
2428
|
# data as a hash:
|
2367
2429
|
#
|
@@ -2622,9 +2684,9 @@ module Aws::S3
|
|
2622
2684
|
# to the access point hostname. The access point hostname takes the
|
2623
2685
|
# form
|
2624
2686
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
2625
|
-
# When using this operation
|
2626
|
-
#
|
2627
|
-
#
|
2687
|
+
# When using this operation with an access point through the AWS SDKs,
|
2688
|
+
# you provide the access point ARN in place of the bucket name. For
|
2689
|
+
# more information about access point ARNs, see [Using Access
|
2628
2690
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
2629
2691
|
#
|
2630
2692
|
# When using this API with Amazon S3 on Outposts, you must direct
|
@@ -2639,7 +2701,7 @@ module Aws::S3
|
|
2639
2701
|
#
|
2640
2702
|
#
|
2641
2703
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
2642
|
-
# [2]: https://docs.aws.amazon.com/
|
2704
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/S3onOutposts.html
|
2643
2705
|
# @return [String]
|
2644
2706
|
#
|
2645
2707
|
# @!attribute [rw] key
|
@@ -2724,9 +2786,9 @@ module Aws::S3
|
|
2724
2786
|
# to the access point hostname. The access point hostname takes the
|
2725
2787
|
# form
|
2726
2788
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
2727
|
-
# When using this operation
|
2728
|
-
#
|
2729
|
-
#
|
2789
|
+
# When using this operation with an access point through the AWS SDKs,
|
2790
|
+
# you provide the access point ARN in place of the bucket name. For
|
2791
|
+
# more information about access point ARNs, see [Using Access
|
2730
2792
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
2731
2793
|
#
|
2732
2794
|
# When using this API with Amazon S3 on Outposts, you must direct
|
@@ -2741,7 +2803,7 @@ module Aws::S3
|
|
2741
2803
|
#
|
2742
2804
|
#
|
2743
2805
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
2744
|
-
# [2]: https://docs.aws.amazon.com/
|
2806
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/S3onOutposts.html
|
2745
2807
|
# @return [String]
|
2746
2808
|
#
|
2747
2809
|
# @!attribute [rw] key
|
@@ -2821,9 +2883,9 @@ module Aws::S3
|
|
2821
2883
|
# to the access point hostname. The access point hostname takes the
|
2822
2884
|
# form
|
2823
2885
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
2824
|
-
# When using this operation
|
2825
|
-
#
|
2826
|
-
#
|
2886
|
+
# When using this operation with an access point through the AWS SDKs,
|
2887
|
+
# you provide the access point ARN in place of the bucket name. For
|
2888
|
+
# more information about access point ARNs, see [Using Access
|
2827
2889
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
2828
2890
|
#
|
2829
2891
|
# When using this API with Amazon S3 on Outposts, you must direct
|
@@ -2838,7 +2900,7 @@ module Aws::S3
|
|
2838
2900
|
#
|
2839
2901
|
#
|
2840
2902
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
2841
|
-
# [2]: https://docs.aws.amazon.com/
|
2903
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/S3onOutposts.html
|
2842
2904
|
# @return [String]
|
2843
2905
|
#
|
2844
2906
|
# @!attribute [rw] delete
|
@@ -4554,6 +4616,44 @@ module Aws::S3
|
|
4554
4616
|
include Aws::Structure
|
4555
4617
|
end
|
4556
4618
|
|
4619
|
+
# @!attribute [rw] ownership_controls
|
4620
|
+
# The `OwnershipControls` (BucketOwnerPreferred or ObjectWriter)
|
4621
|
+
# currently in effect for this Amazon S3 bucket.
|
4622
|
+
# @return [Types::OwnershipControls]
|
4623
|
+
#
|
4624
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/GetBucketOwnershipControlsOutput AWS API Documentation
|
4625
|
+
#
|
4626
|
+
class GetBucketOwnershipControlsOutput < Struct.new(
|
4627
|
+
:ownership_controls)
|
4628
|
+
SENSITIVE = []
|
4629
|
+
include Aws::Structure
|
4630
|
+
end
|
4631
|
+
|
4632
|
+
# @note When making an API call, you may pass GetBucketOwnershipControlsRequest
|
4633
|
+
# data as a hash:
|
4634
|
+
#
|
4635
|
+
# {
|
4636
|
+
# bucket: "BucketName", # required
|
4637
|
+
# expected_bucket_owner: "AccountId",
|
4638
|
+
# }
|
4639
|
+
#
|
4640
|
+
# @!attribute [rw] bucket
|
4641
|
+
# The name of the Amazon S3 bucket whose `OwnershipControls` you want
|
4642
|
+
# to retrieve.
|
4643
|
+
# @return [String]
|
4644
|
+
#
|
4645
|
+
# @!attribute [rw] expected_bucket_owner
|
4646
|
+
# @return [String]
|
4647
|
+
#
|
4648
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/GetBucketOwnershipControlsRequest AWS API Documentation
|
4649
|
+
#
|
4650
|
+
class GetBucketOwnershipControlsRequest < Struct.new(
|
4651
|
+
:bucket,
|
4652
|
+
:expected_bucket_owner)
|
4653
|
+
SENSITIVE = []
|
4654
|
+
include Aws::Structure
|
4655
|
+
end
|
4656
|
+
|
4557
4657
|
# @!attribute [rw] policy
|
4558
4658
|
# The bucket policy as a JSON document.
|
4559
4659
|
# @return [String]
|
@@ -4899,9 +4999,9 @@ module Aws::S3
|
|
4899
4999
|
# to the access point hostname. The access point hostname takes the
|
4900
5000
|
# form
|
4901
5001
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
4902
|
-
# When using this operation
|
4903
|
-
#
|
4904
|
-
#
|
5002
|
+
# When using this operation with an access point through the AWS SDKs,
|
5003
|
+
# you provide the access point ARN in place of the bucket name. For
|
5004
|
+
# more information about access point ARNs, see [Using Access
|
4905
5005
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
4906
5006
|
#
|
4907
5007
|
#
|
@@ -4978,9 +5078,9 @@ module Aws::S3
|
|
4978
5078
|
# to the access point hostname. The access point hostname takes the
|
4979
5079
|
# form
|
4980
5080
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
4981
|
-
# When using this operation
|
4982
|
-
#
|
4983
|
-
#
|
5081
|
+
# When using this operation with an access point through the AWS SDKs,
|
5082
|
+
# you provide the access point ARN in place of the bucket name. For
|
5083
|
+
# more information about access point ARNs, see [Using Access
|
4984
5084
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
4985
5085
|
#
|
4986
5086
|
#
|
@@ -5055,9 +5155,9 @@ module Aws::S3
|
|
5055
5155
|
# to the access point hostname. The access point hostname takes the
|
5056
5156
|
# form
|
5057
5157
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
5058
|
-
# When using this operation
|
5059
|
-
#
|
5060
|
-
#
|
5158
|
+
# When using this operation with an access point through the AWS SDKs,
|
5159
|
+
# you provide the access point ARN in place of the bucket name. For
|
5160
|
+
# more information about access point ARNs, see [Using Access
|
5061
5161
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
5062
5162
|
#
|
5063
5163
|
#
|
@@ -5309,9 +5409,9 @@ module Aws::S3
|
|
5309
5409
|
# to the access point hostname. The access point hostname takes the
|
5310
5410
|
# form
|
5311
5411
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
5312
|
-
# When using this operation
|
5313
|
-
#
|
5314
|
-
#
|
5412
|
+
# When using this operation with an access point through the AWS SDKs,
|
5413
|
+
# you provide the access point ARN in place of the bucket name. For
|
5414
|
+
# more information about access point ARNs, see [Using Access
|
5315
5415
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
5316
5416
|
#
|
5317
5417
|
# When using this API with Amazon S3 on Outposts, you must direct
|
@@ -5326,7 +5426,7 @@ module Aws::S3
|
|
5326
5426
|
#
|
5327
5427
|
#
|
5328
5428
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
5329
|
-
# [2]: https://docs.aws.amazon.com/
|
5429
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/S3onOutposts.html
|
5330
5430
|
# @return [String]
|
5331
5431
|
#
|
5332
5432
|
# @!attribute [rw] if_match
|
@@ -5498,9 +5598,9 @@ module Aws::S3
|
|
5498
5598
|
# to the access point hostname. The access point hostname takes the
|
5499
5599
|
# form
|
5500
5600
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
5501
|
-
# When using this operation
|
5502
|
-
#
|
5503
|
-
#
|
5601
|
+
# When using this operation with an access point through the AWS SDKs,
|
5602
|
+
# you provide the access point ARN in place of the bucket name. For
|
5603
|
+
# more information about access point ARNs, see [Using Access
|
5504
5604
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
5505
5605
|
#
|
5506
5606
|
#
|
@@ -5584,9 +5684,9 @@ module Aws::S3
|
|
5584
5684
|
# to the access point hostname. The access point hostname takes the
|
5585
5685
|
# form
|
5586
5686
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
5587
|
-
# When using this operation
|
5588
|
-
#
|
5589
|
-
#
|
5687
|
+
# When using this operation with an access point through the AWS SDKs,
|
5688
|
+
# you provide the access point ARN in place of the bucket name. For
|
5689
|
+
# more information about access point ARNs, see [Using Access
|
5590
5690
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
5591
5691
|
#
|
5592
5692
|
# When using this API with Amazon S3 on Outposts, you must direct
|
@@ -5601,7 +5701,7 @@ module Aws::S3
|
|
5601
5701
|
#
|
5602
5702
|
#
|
5603
5703
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
5604
|
-
# [2]: https://docs.aws.amazon.com/
|
5704
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/S3onOutposts.html
|
5605
5705
|
# @return [String]
|
5606
5706
|
#
|
5607
5707
|
# @!attribute [rw] key
|
@@ -5879,9 +5979,9 @@ module Aws::S3
|
|
5879
5979
|
# to the access point hostname. The access point hostname takes the
|
5880
5980
|
# form
|
5881
5981
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
5882
|
-
# When using this operation
|
5883
|
-
#
|
5884
|
-
#
|
5982
|
+
# When using this operation with an access point through the AWS SDKs,
|
5983
|
+
# you provide the access point ARN in place of the bucket name. For
|
5984
|
+
# more information about access point ARNs, see [Using Access
|
5885
5985
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
5886
5986
|
#
|
5887
5987
|
# When using this API with Amazon S3 on Outposts, you must direct
|
@@ -5896,7 +5996,7 @@ module Aws::S3
|
|
5896
5996
|
#
|
5897
5997
|
#
|
5898
5998
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
5899
|
-
# [2]: https://docs.aws.amazon.com/
|
5999
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/S3onOutposts.html
|
5900
6000
|
# @return [String]
|
5901
6001
|
#
|
5902
6002
|
# @!attribute [rw] expected_bucket_owner
|
@@ -6196,9 +6296,9 @@ module Aws::S3
|
|
6196
6296
|
# to the access point hostname. The access point hostname takes the
|
6197
6297
|
# form
|
6198
6298
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
6199
|
-
# When using this operation
|
6200
|
-
#
|
6201
|
-
#
|
6299
|
+
# When using this operation with an access point through the AWS SDKs,
|
6300
|
+
# you provide the access point ARN in place of the bucket name. For
|
6301
|
+
# more information about access point ARNs, see [Using Access
|
6202
6302
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
6203
6303
|
#
|
6204
6304
|
# When using this API with Amazon S3 on Outposts, you must direct
|
@@ -6213,7 +6313,7 @@ module Aws::S3
|
|
6213
6313
|
#
|
6214
6314
|
#
|
6215
6315
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
6216
|
-
# [2]: https://docs.aws.amazon.com/
|
6316
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/S3onOutposts.html
|
6217
6317
|
# @return [String]
|
6218
6318
|
#
|
6219
6319
|
# @!attribute [rw] if_match
|
@@ -6243,12 +6343,16 @@ module Aws::S3
|
|
6243
6343
|
# @!attribute [rw] range
|
6244
6344
|
# Downloads the specified range bytes of an object. For more
|
6245
6345
|
# information about the HTTP Range header, see
|
6246
|
-
# [http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35]
|
6346
|
+
# [http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35][1].
|
6247
6347
|
#
|
6248
6348
|
# <note markdown="1"> Amazon S3 doesn't support retrieving multiple ranges of data per
|
6249
6349
|
# `GET` request.
|
6250
6350
|
#
|
6251
6351
|
# </note>
|
6352
|
+
#
|
6353
|
+
#
|
6354
|
+
#
|
6355
|
+
# [1]: http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35
|
6252
6356
|
# @return [String]
|
6253
6357
|
#
|
6254
6358
|
# @!attribute [rw] version_id
|
@@ -7419,9 +7523,9 @@ module Aws::S3
|
|
7419
7523
|
# to the access point hostname. The access point hostname takes the
|
7420
7524
|
# form
|
7421
7525
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
7422
|
-
# When using this operation
|
7423
|
-
#
|
7424
|
-
#
|
7526
|
+
# When using this operation with an access point through the AWS SDKs,
|
7527
|
+
# you provide the access point ARN in place of the bucket name. For
|
7528
|
+
# more information about access point ARNs, see [Using Access
|
7425
7529
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
7426
7530
|
#
|
7427
7531
|
# When using this API with Amazon S3 on Outposts, you must direct
|
@@ -7436,7 +7540,7 @@ module Aws::S3
|
|
7436
7540
|
#
|
7437
7541
|
#
|
7438
7542
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
7439
|
-
# [2]: https://docs.aws.amazon.com/
|
7543
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/S3onOutposts.html
|
7440
7544
|
# @return [String]
|
7441
7545
|
#
|
7442
7546
|
# @!attribute [rw] delimiter
|
@@ -7804,9 +7908,9 @@ module Aws::S3
|
|
7804
7908
|
# to the access point hostname. The access point hostname takes the
|
7805
7909
|
# form
|
7806
7910
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
7807
|
-
# When using this operation
|
7808
|
-
#
|
7809
|
-
#
|
7911
|
+
# When using this operation with an access point through the AWS SDKs,
|
7912
|
+
# you provide the access point ARN in place of the bucket name. For
|
7913
|
+
# more information about access point ARNs, see [Using Access
|
7810
7914
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
7811
7915
|
#
|
7812
7916
|
# When using this API with Amazon S3 on Outposts, you must direct
|
@@ -7821,7 +7925,7 @@ module Aws::S3
|
|
7821
7925
|
#
|
7822
7926
|
#
|
7823
7927
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
7824
|
-
# [2]: https://docs.aws.amazon.com/
|
7928
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/S3onOutposts.html
|
7825
7929
|
# @return [String]
|
7826
7930
|
#
|
7827
7931
|
# @!attribute [rw] delimiter
|
@@ -7895,9 +7999,9 @@ module Aws::S3
|
|
7895
7999
|
# to the access point hostname. The access point hostname takes the
|
7896
8000
|
# form
|
7897
8001
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
7898
|
-
# When using this operation
|
7899
|
-
#
|
7900
|
-
#
|
8002
|
+
# When using this operation with an access point through the AWS SDKs,
|
8003
|
+
# you provide the access point ARN in place of the bucket name. For
|
8004
|
+
# more information about access point ARNs, see [Using Access
|
7901
8005
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
7902
8006
|
#
|
7903
8007
|
# When using this API with Amazon S3 on Outposts, you must direct
|
@@ -7912,7 +8016,7 @@ module Aws::S3
|
|
7912
8016
|
#
|
7913
8017
|
#
|
7914
8018
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
7915
|
-
# [2]: https://docs.aws.amazon.com/
|
8019
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/S3onOutposts.html
|
7916
8020
|
# @return [String]
|
7917
8021
|
#
|
7918
8022
|
# @!attribute [rw] prefix
|
@@ -8030,9 +8134,9 @@ module Aws::S3
|
|
8030
8134
|
# to the access point hostname. The access point hostname takes the
|
8031
8135
|
# form
|
8032
8136
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
8033
|
-
# When using this operation
|
8034
|
-
#
|
8035
|
-
#
|
8137
|
+
# When using this operation with an access point through the AWS SDKs,
|
8138
|
+
# you provide the access point ARN in place of the bucket name. For
|
8139
|
+
# more information about access point ARNs, see [Using Access
|
8036
8140
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
8037
8141
|
#
|
8038
8142
|
# When using this API with Amazon S3 on Outposts, you must direct
|
@@ -8047,7 +8151,7 @@ module Aws::S3
|
|
8047
8151
|
#
|
8048
8152
|
#
|
8049
8153
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
8050
|
-
# [2]: https://docs.aws.amazon.com/
|
8154
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/S3onOutposts.html
|
8051
8155
|
# @return [String]
|
8052
8156
|
#
|
8053
8157
|
# @!attribute [rw] delimiter
|
@@ -8245,9 +8349,9 @@ module Aws::S3
|
|
8245
8349
|
# to the access point hostname. The access point hostname takes the
|
8246
8350
|
# form
|
8247
8351
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
8248
|
-
# When using this operation
|
8249
|
-
#
|
8250
|
-
#
|
8352
|
+
# When using this operation with an access point through the AWS SDKs,
|
8353
|
+
# you provide the access point ARN in place of the bucket name. For
|
8354
|
+
# more information about access point ARNs, see [Using Access
|
8251
8355
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
8252
8356
|
#
|
8253
8357
|
# When using this API with Amazon S3 on Outposts, you must direct
|
@@ -8262,7 +8366,7 @@ module Aws::S3
|
|
8262
8366
|
#
|
8263
8367
|
#
|
8264
8368
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
8265
|
-
# [2]: https://docs.aws.amazon.com/
|
8369
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/S3onOutposts.html
|
8266
8370
|
# @return [String]
|
8267
8371
|
#
|
8268
8372
|
# @!attribute [rw] key
|
@@ -9252,6 +9356,60 @@ module Aws::S3
|
|
9252
9356
|
include Aws::Structure
|
9253
9357
|
end
|
9254
9358
|
|
9359
|
+
# The container element for a bucket's ownership controls.
|
9360
|
+
#
|
9361
|
+
# @note When making an API call, you may pass OwnershipControls
|
9362
|
+
# data as a hash:
|
9363
|
+
#
|
9364
|
+
# {
|
9365
|
+
# rules: [ # required
|
9366
|
+
# {
|
9367
|
+
# object_ownership: "BucketOwnerPreferred", # required, accepts BucketOwnerPreferred, ObjectWriter
|
9368
|
+
# },
|
9369
|
+
# ],
|
9370
|
+
# }
|
9371
|
+
#
|
9372
|
+
# @!attribute [rw] rules
|
9373
|
+
# The container element for an ownership control rule.
|
9374
|
+
# @return [Array<Types::OwnershipControlsRule>]
|
9375
|
+
#
|
9376
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/OwnershipControls AWS API Documentation
|
9377
|
+
#
|
9378
|
+
class OwnershipControls < Struct.new(
|
9379
|
+
:rules)
|
9380
|
+
SENSITIVE = []
|
9381
|
+
include Aws::Structure
|
9382
|
+
end
|
9383
|
+
|
9384
|
+
# The container element for an ownership control rule.
|
9385
|
+
#
|
9386
|
+
# @note When making an API call, you may pass OwnershipControlsRule
|
9387
|
+
# data as a hash:
|
9388
|
+
#
|
9389
|
+
# {
|
9390
|
+
# object_ownership: "BucketOwnerPreferred", # required, accepts BucketOwnerPreferred, ObjectWriter
|
9391
|
+
# }
|
9392
|
+
#
|
9393
|
+
# @!attribute [rw] object_ownership
|
9394
|
+
# The container element for object ownership for a bucket's ownership
|
9395
|
+
# controls.
|
9396
|
+
#
|
9397
|
+
# BucketOwnerPreferred - Objects uploaded to the bucket change
|
9398
|
+
# ownership to the bucket owner if the objects are uploaded with the
|
9399
|
+
# `bucket-owner-full-control` canned ACL.
|
9400
|
+
#
|
9401
|
+
# ObjectWriter - The uploading account will own the object if the
|
9402
|
+
# object is uploaded with the `bucket-owner-full-control` canned ACL.
|
9403
|
+
# @return [String]
|
9404
|
+
#
|
9405
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/OwnershipControlsRule AWS API Documentation
|
9406
|
+
#
|
9407
|
+
class OwnershipControlsRule < Struct.new(
|
9408
|
+
:object_ownership)
|
9409
|
+
SENSITIVE = []
|
9410
|
+
include Aws::Structure
|
9411
|
+
end
|
9412
|
+
|
9255
9413
|
# Container for Parquet.
|
9256
9414
|
#
|
9257
9415
|
# @api private
|
@@ -10223,6 +10381,50 @@ module Aws::S3
|
|
10223
10381
|
include Aws::Structure
|
10224
10382
|
end
|
10225
10383
|
|
10384
|
+
# @note When making an API call, you may pass PutBucketOwnershipControlsRequest
|
10385
|
+
# data as a hash:
|
10386
|
+
#
|
10387
|
+
# {
|
10388
|
+
# bucket: "BucketName", # required
|
10389
|
+
# content_md5: "ContentMD5",
|
10390
|
+
# expected_bucket_owner: "AccountId",
|
10391
|
+
# ownership_controls: { # required
|
10392
|
+
# rules: [ # required
|
10393
|
+
# {
|
10394
|
+
# object_ownership: "BucketOwnerPreferred", # required, accepts BucketOwnerPreferred, ObjectWriter
|
10395
|
+
# },
|
10396
|
+
# ],
|
10397
|
+
# },
|
10398
|
+
# }
|
10399
|
+
#
|
10400
|
+
# @!attribute [rw] bucket
|
10401
|
+
# The name of the Amazon S3 bucket whose `OwnershipControls` you want
|
10402
|
+
# to set.
|
10403
|
+
# @return [String]
|
10404
|
+
#
|
10405
|
+
# @!attribute [rw] content_md5
|
10406
|
+
# The MD5 hash of the `OwnershipControls` request body.
|
10407
|
+
# @return [String]
|
10408
|
+
#
|
10409
|
+
# @!attribute [rw] expected_bucket_owner
|
10410
|
+
# @return [String]
|
10411
|
+
#
|
10412
|
+
# @!attribute [rw] ownership_controls
|
10413
|
+
# The `OwnershipControls` (BucketOwnerPreferred or ObjectWriter) that
|
10414
|
+
# you want to apply to this Amazon S3 bucket.
|
10415
|
+
# @return [Types::OwnershipControls]
|
10416
|
+
#
|
10417
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/PutBucketOwnershipControlsRequest AWS API Documentation
|
10418
|
+
#
|
10419
|
+
class PutBucketOwnershipControlsRequest < Struct.new(
|
10420
|
+
:bucket,
|
10421
|
+
:content_md5,
|
10422
|
+
:expected_bucket_owner,
|
10423
|
+
:ownership_controls)
|
10424
|
+
SENSITIVE = []
|
10425
|
+
include Aws::Structure
|
10426
|
+
end
|
10427
|
+
|
10226
10428
|
# @note When making an API call, you may pass PutBucketPolicyRequest
|
10227
10429
|
# data as a hash:
|
10228
10430
|
#
|
@@ -10682,9 +10884,9 @@ module Aws::S3
|
|
10682
10884
|
# to the access point hostname. The access point hostname takes the
|
10683
10885
|
# form
|
10684
10886
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
10685
|
-
# When using this operation
|
10686
|
-
#
|
10687
|
-
#
|
10887
|
+
# When using this operation with an access point through the AWS SDKs,
|
10888
|
+
# you provide the access point ARN in place of the bucket name. For
|
10889
|
+
# more information about access point ARNs, see [Using Access
|
10688
10890
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
10689
10891
|
#
|
10690
10892
|
#
|
@@ -10706,14 +10908,20 @@ module Aws::S3
|
|
10706
10908
|
# @!attribute [rw] grant_full_control
|
10707
10909
|
# Allows grantee the read, write, read ACP, and write ACP permissions
|
10708
10910
|
# on the bucket.
|
10911
|
+
#
|
10912
|
+
# This action is not supported by Amazon S3 on Outposts.
|
10709
10913
|
# @return [String]
|
10710
10914
|
#
|
10711
10915
|
# @!attribute [rw] grant_read
|
10712
10916
|
# Allows grantee to list the objects in the bucket.
|
10917
|
+
#
|
10918
|
+
# This action is not supported by Amazon S3 on Outposts.
|
10713
10919
|
# @return [String]
|
10714
10920
|
#
|
10715
10921
|
# @!attribute [rw] grant_read_acp
|
10716
10922
|
# Allows grantee to read the bucket ACL.
|
10923
|
+
#
|
10924
|
+
# This action is not supported by Amazon S3 on Outposts.
|
10717
10925
|
# @return [String]
|
10718
10926
|
#
|
10719
10927
|
# @!attribute [rw] grant_write
|
@@ -10723,6 +10931,8 @@ module Aws::S3
|
|
10723
10931
|
#
|
10724
10932
|
# @!attribute [rw] grant_write_acp
|
10725
10933
|
# Allows grantee to write the ACL for the applicable bucket.
|
10934
|
+
#
|
10935
|
+
# This action is not supported by Amazon S3 on Outposts.
|
10726
10936
|
# @return [String]
|
10727
10937
|
#
|
10728
10938
|
# @!attribute [rw] key
|
@@ -10732,9 +10942,9 @@ module Aws::S3
|
|
10732
10942
|
# to the access point hostname. The access point hostname takes the
|
10733
10943
|
# form
|
10734
10944
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
10735
|
-
# When using this operation
|
10736
|
-
#
|
10737
|
-
#
|
10945
|
+
# When using this operation with an access point through the AWS SDKs,
|
10946
|
+
# you provide the access point ARN in place of the bucket name. For
|
10947
|
+
# more information about access point ARNs, see [Using Access
|
10738
10948
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
10739
10949
|
#
|
10740
10950
|
# When using this API with Amazon S3 on Outposts, you must direct
|
@@ -10749,7 +10959,7 @@ module Aws::S3
|
|
10749
10959
|
#
|
10750
10960
|
#
|
10751
10961
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
10752
|
-
# [2]: https://docs.aws.amazon.com/
|
10962
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/S3onOutposts.html
|
10753
10963
|
# @return [String]
|
10754
10964
|
#
|
10755
10965
|
# @!attribute [rw] request_payer
|
@@ -10830,9 +11040,9 @@ module Aws::S3
|
|
10830
11040
|
# to the access point hostname. The access point hostname takes the
|
10831
11041
|
# form
|
10832
11042
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
10833
|
-
# When using this operation
|
10834
|
-
#
|
10835
|
-
#
|
11043
|
+
# When using this operation with an access point through the AWS SDKs,
|
11044
|
+
# you provide the access point ARN in place of the bucket name. For
|
11045
|
+
# more information about access point ARNs, see [Using Access
|
10836
11046
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
10837
11047
|
#
|
10838
11048
|
#
|
@@ -11090,6 +11300,8 @@ module Aws::S3
|
|
11090
11300
|
# The canned ACL to apply to the object. For more information, see
|
11091
11301
|
# [Canned ACL][1].
|
11092
11302
|
#
|
11303
|
+
# This action is not supported by Amazon S3 on Outposts.
|
11304
|
+
#
|
11093
11305
|
#
|
11094
11306
|
#
|
11095
11307
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html#CannedACL
|
@@ -11106,9 +11318,9 @@ module Aws::S3
|
|
11106
11318
|
# to the access point hostname. The access point hostname takes the
|
11107
11319
|
# form
|
11108
11320
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
11109
|
-
# When using this operation
|
11110
|
-
#
|
11111
|
-
#
|
11321
|
+
# When using this operation with an access point through the AWS SDKs,
|
11322
|
+
# you provide the access point ARN in place of the bucket name. For
|
11323
|
+
# more information about access point ARNs, see [Using Access
|
11112
11324
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
11113
11325
|
#
|
11114
11326
|
# When using this API with Amazon S3 on Outposts, you must direct
|
@@ -11123,7 +11335,7 @@ module Aws::S3
|
|
11123
11335
|
#
|
11124
11336
|
#
|
11125
11337
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
11126
|
-
# [2]: https://docs.aws.amazon.com/
|
11338
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/S3onOutposts.html
|
11127
11339
|
# @return [String]
|
11128
11340
|
#
|
11129
11341
|
# @!attribute [rw] cache_control
|
@@ -11210,18 +11422,26 @@ module Aws::S3
|
|
11210
11422
|
# @!attribute [rw] grant_full_control
|
11211
11423
|
# Gives the grantee READ, READ\_ACP, and WRITE\_ACP permissions on the
|
11212
11424
|
# object.
|
11425
|
+
#
|
11426
|
+
# This action is not supported by Amazon S3 on Outposts.
|
11213
11427
|
# @return [String]
|
11214
11428
|
#
|
11215
11429
|
# @!attribute [rw] grant_read
|
11216
11430
|
# Allows grantee to read the object data and its metadata.
|
11431
|
+
#
|
11432
|
+
# This action is not supported by Amazon S3 on Outposts.
|
11217
11433
|
# @return [String]
|
11218
11434
|
#
|
11219
11435
|
# @!attribute [rw] grant_read_acp
|
11220
11436
|
# Allows grantee to read the object ACL.
|
11437
|
+
#
|
11438
|
+
# This action is not supported by Amazon S3 on Outposts.
|
11221
11439
|
# @return [String]
|
11222
11440
|
#
|
11223
11441
|
# @!attribute [rw] grant_write_acp
|
11224
11442
|
# Allows grantee to write the ACL for the applicable object.
|
11443
|
+
#
|
11444
|
+
# This action is not supported by Amazon S3 on Outposts.
|
11225
11445
|
# @return [String]
|
11226
11446
|
#
|
11227
11447
|
# @!attribute [rw] key
|
@@ -11238,8 +11458,16 @@ module Aws::S3
|
|
11238
11458
|
# @return [String]
|
11239
11459
|
#
|
11240
11460
|
# @!attribute [rw] storage_class
|
11241
|
-
#
|
11242
|
-
#
|
11461
|
+
# By default, Amazon S3 uses the STANDARD Storage Class to store newly
|
11462
|
+
# created objects. The STANDARD storage class provides high durability
|
11463
|
+
# and high availability. Depending on performance needs, you can
|
11464
|
+
# specify a different Storage Class. Amazon S3 on Outposts only uses
|
11465
|
+
# the OUTPOSTS Storage Class. For more information, see [Storage
|
11466
|
+
# Classes][1] in the *Amazon S3 Service Developer Guide*.
|
11467
|
+
#
|
11468
|
+
#
|
11469
|
+
#
|
11470
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-class-intro.html
|
11243
11471
|
# @return [String]
|
11244
11472
|
#
|
11245
11473
|
# @!attribute [rw] website_redirect_location
|
@@ -11426,9 +11654,9 @@ module Aws::S3
|
|
11426
11654
|
# to the access point hostname. The access point hostname takes the
|
11427
11655
|
# form
|
11428
11656
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
11429
|
-
# When using this operation
|
11430
|
-
#
|
11431
|
-
#
|
11657
|
+
# When using this operation with an access point through the AWS SDKs,
|
11658
|
+
# you provide the access point ARN in place of the bucket name. For
|
11659
|
+
# more information about access point ARNs, see [Using Access
|
11432
11660
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
11433
11661
|
#
|
11434
11662
|
#
|
@@ -11530,9 +11758,9 @@ module Aws::S3
|
|
11530
11758
|
# to the access point hostname. The access point hostname takes the
|
11531
11759
|
# form
|
11532
11760
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
11533
|
-
# When using this operation
|
11534
|
-
#
|
11535
|
-
#
|
11761
|
+
# When using this operation with an access point through the AWS SDKs,
|
11762
|
+
# you provide the access point ARN in place of the bucket name. For
|
11763
|
+
# more information about access point ARNs, see [Using Access
|
11536
11764
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
11537
11765
|
#
|
11538
11766
|
# When using this API with Amazon S3 on Outposts, you must direct
|
@@ -11547,7 +11775,7 @@ module Aws::S3
|
|
11547
11775
|
#
|
11548
11776
|
#
|
11549
11777
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
11550
|
-
# [2]: https://docs.aws.amazon.com/
|
11778
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/S3onOutposts.html
|
11551
11779
|
# @return [String]
|
11552
11780
|
#
|
11553
11781
|
# @!attribute [rw] key
|
@@ -12421,9 +12649,9 @@ module Aws::S3
|
|
12421
12649
|
# to the access point hostname. The access point hostname takes the
|
12422
12650
|
# form
|
12423
12651
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
12424
|
-
# When using this operation
|
12425
|
-
#
|
12426
|
-
#
|
12652
|
+
# When using this operation with an access point through the AWS SDKs,
|
12653
|
+
# you provide the access point ARN in place of the bucket name. For
|
12654
|
+
# more information about access point ARNs, see [Using Access
|
12427
12655
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
12428
12656
|
#
|
12429
12657
|
# When using this API with Amazon S3 on Outposts, you must direct
|
@@ -12438,7 +12666,7 @@ module Aws::S3
|
|
12438
12666
|
#
|
12439
12667
|
#
|
12440
12668
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
12441
|
-
# [2]: https://docs.aws.amazon.com/
|
12669
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/S3onOutposts.html
|
12442
12670
|
# @return [String]
|
12443
12671
|
#
|
12444
12672
|
# @!attribute [rw] key
|
@@ -13821,9 +14049,9 @@ module Aws::S3
|
|
13821
14049
|
# to the access point hostname. The access point hostname takes the
|
13822
14050
|
# form
|
13823
14051
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
13824
|
-
# When using this operation
|
13825
|
-
#
|
13826
|
-
#
|
14052
|
+
# When using this operation with an access point through the AWS SDKs,
|
14053
|
+
# you provide the access point ARN in place of the bucket name. For
|
14054
|
+
# more information about access point ARNs, see [Using Access
|
13827
14055
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
13828
14056
|
#
|
13829
14057
|
# When using this API with Amazon S3 on Outposts, you must direct
|
@@ -13838,7 +14066,7 @@ module Aws::S3
|
|
13838
14066
|
#
|
13839
14067
|
#
|
13840
14068
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
13841
|
-
# [2]: https://docs.aws.amazon.com/
|
14069
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/S3onOutposts.html
|
13842
14070
|
# @return [String]
|
13843
14071
|
#
|
13844
14072
|
# @!attribute [rw] copy_source
|
@@ -14092,9 +14320,9 @@ module Aws::S3
|
|
14092
14320
|
# to the access point hostname. The access point hostname takes the
|
14093
14321
|
# form
|
14094
14322
|
# *AccessPointName*-*AccountId*.s3-accesspoint.*Region*.amazonaws.com.
|
14095
|
-
# When using this operation
|
14096
|
-
#
|
14097
|
-
#
|
14323
|
+
# When using this operation with an access point through the AWS SDKs,
|
14324
|
+
# you provide the access point ARN in place of the bucket name. For
|
14325
|
+
# more information about access point ARNs, see [Using Access
|
14098
14326
|
# Points][1] in the *Amazon Simple Storage Service Developer Guide*.
|
14099
14327
|
#
|
14100
14328
|
# When using this API with Amazon S3 on Outposts, you must direct
|
@@ -14109,7 +14337,7 @@ module Aws::S3
|
|
14109
14337
|
#
|
14110
14338
|
#
|
14111
14339
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html
|
14112
|
-
# [2]: https://docs.aws.amazon.com/
|
14340
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/S3onOutposts.html
|
14113
14341
|
# @return [String]
|
14114
14342
|
#
|
14115
14343
|
# @!attribute [rw] content_length
|