aws-sdk-s3control 1.34.0 → 1.38.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3control.rb +1 -1
- data/lib/aws-sdk-s3control/client.rb +130 -103
- data/lib/aws-sdk-s3control/client_api.rb +14 -1
- data/lib/aws-sdk-s3control/types.rb +142 -105
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bc027cc7489a21f54b3204cfd0b5bd031dad6102a6aba0f5a9f2a161f784659d
|
4
|
+
data.tar.gz: b0633439d012d87f389d08e7597a7f91b1b75e7570aadad49c92f6e10920ed1e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 72d5990bb123ce7ba6010c3bace5e421e271fc8153c97ed31690c2551611e40afd8b731810f72ff41be5d979ba9ee930fb8fa8a737caffd39b42a2547d0fbe43
|
7
|
+
data.tar.gz: 196955a24d59806b9205781f2891ab48e2b0e395f11f82ca7de544c011bcb43c4e3cfd492a548b1c77225699c56d206c967d4f6bf0ade17fe9c26a8f34f2c3ac
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.38.0 (2021-07-30)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.37.0 (2021-07-28)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.36.0 (2021-07-26)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - S3 Access Point aliases can be used anywhere you use S3 bucket names to access data in S3
|
18
|
+
|
19
|
+
1.35.0 (2021-07-22)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Documentation updates for Amazon S3-control
|
23
|
+
|
4
24
|
1.34.0 (2021-06-03)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.38.0
|
data/lib/aws-sdk-s3control.rb
CHANGED
@@ -385,7 +385,7 @@ module Aws::S3Control
|
|
385
385
|
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_ListAccessPoints.html
|
386
386
|
#
|
387
387
|
# @option params [required, String] :account_id
|
388
|
-
# The
|
388
|
+
# The account ID for the owner of the bucket for which you want to
|
389
389
|
# create an access point.
|
390
390
|
#
|
391
391
|
# @option params [required, String] :name
|
@@ -398,8 +398,9 @@ module Aws::S3Control
|
|
398
398
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
399
399
|
# you must specify the name and the x-amz-outpost-id as well.
|
400
400
|
#
|
401
|
-
# For using this parameter with S3 on Outposts with the
|
402
|
-
# you must specify the ARN of the bucket accessed
|
401
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
402
|
+
# Services SDK and CLI, you must specify the ARN of the bucket accessed
|
403
|
+
# in the format
|
403
404
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
404
405
|
# For example, to access the bucket `reports` through outpost
|
405
406
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -423,6 +424,7 @@ module Aws::S3Control
|
|
423
424
|
# @return [Types::CreateAccessPointResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
424
425
|
#
|
425
426
|
# * {Types::CreateAccessPointResult#access_point_arn #access_point_arn} => String
|
427
|
+
# * {Types::CreateAccessPointResult#alias #alias} => String
|
426
428
|
#
|
427
429
|
# @example Request syntax with placeholder values
|
428
430
|
#
|
@@ -444,6 +446,7 @@ module Aws::S3Control
|
|
444
446
|
# @example Response structure
|
445
447
|
#
|
446
448
|
# resp.access_point_arn #=> String
|
449
|
+
# resp.alias #=> String
|
447
450
|
#
|
448
451
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/CreateAccessPoint AWS API Documentation
|
449
452
|
#
|
@@ -475,8 +478,7 @@ module Aws::S3Control
|
|
475
478
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_ListAccessPointsForObjectLambda.html
|
476
479
|
#
|
477
480
|
# @option params [required, String] :account_id
|
478
|
-
# The
|
479
|
-
# Point.
|
481
|
+
# The account ID for owner of the specified Object Lambda Access Point.
|
480
482
|
#
|
481
483
|
# @option params [required, String] :name
|
482
484
|
# The name you want to assign to this Object Lambda Access Point.
|
@@ -713,7 +715,7 @@ module Aws::S3Control
|
|
713
715
|
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_JobOperation.html
|
714
716
|
#
|
715
717
|
# @option params [required, String] :account_id
|
716
|
-
# The
|
718
|
+
# The account ID that creates the job.
|
717
719
|
#
|
718
720
|
# @option params [Boolean] :confirmation_required
|
719
721
|
# Indicates whether confirmation is required before Amazon S3 runs the
|
@@ -752,9 +754,9 @@ module Aws::S3Control
|
|
752
754
|
# priority.
|
753
755
|
#
|
754
756
|
# @option params [required, String] :role_arn
|
755
|
-
# The Amazon Resource Name (ARN) for the
|
756
|
-
#
|
757
|
-
#
|
757
|
+
# The Amazon Resource Name (ARN) for the Identity and Access Management
|
758
|
+
# (IAM) role that Batch Operations will use to run this job's action on
|
759
|
+
# every object in the manifest.
|
758
760
|
#
|
759
761
|
# @option params [Array<Types::S3Tag>] :tags
|
760
762
|
# A set of tags to associate with the S3 Batch Operations job. This is
|
@@ -945,8 +947,9 @@ module Aws::S3Control
|
|
945
947
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
946
948
|
# you must specify the name and the x-amz-outpost-id as well.
|
947
949
|
#
|
948
|
-
# For using this parameter with S3 on Outposts with the
|
949
|
-
# you must specify the ARN of the access point
|
950
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
951
|
+
# Services SDK and CLI, you must specify the ARN of the access point
|
952
|
+
# accessed in the format
|
950
953
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>`.
|
951
954
|
# For example, to access the access point `reports-ap` through outpost
|
952
955
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -1047,8 +1050,9 @@ module Aws::S3Control
|
|
1047
1050
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
1048
1051
|
# you must specify the name and the x-amz-outpost-id as well.
|
1049
1052
|
#
|
1050
|
-
# For using this parameter with S3 on Outposts with the
|
1051
|
-
# you must specify the ARN of the access point
|
1053
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
1054
|
+
# Services SDK and CLI, you must specify the ARN of the access point
|
1055
|
+
# accessed in the format
|
1052
1056
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>`.
|
1053
1057
|
# For example, to access the access point `reports-ap` through outpost
|
1054
1058
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -1158,8 +1162,9 @@ module Aws::S3Control
|
|
1158
1162
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
1159
1163
|
# you must specify the name and the x-amz-outpost-id as well.
|
1160
1164
|
#
|
1161
|
-
# For using this parameter with S3 on Outposts with the
|
1162
|
-
# you must specify the ARN of the bucket accessed
|
1165
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
1166
|
+
# Services SDK and CLI, you must specify the ARN of the bucket accessed
|
1167
|
+
# in the format
|
1163
1168
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
1164
1169
|
# For example, to access the bucket `reports` through outpost
|
1165
1170
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -1239,8 +1244,9 @@ module Aws::S3Control
|
|
1239
1244
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
1240
1245
|
# you must specify the name and the x-amz-outpost-id as well.
|
1241
1246
|
#
|
1242
|
-
# For using this parameter with S3 on Outposts with the
|
1243
|
-
# you must specify the ARN of the bucket accessed
|
1247
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
1248
|
+
# Services SDK and CLI, you must specify the ARN of the bucket accessed
|
1249
|
+
# in the format
|
1244
1250
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
1245
1251
|
# For example, to access the bucket `reports` through outpost
|
1246
1252
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -1274,8 +1280,8 @@ module Aws::S3Control
|
|
1274
1280
|
#
|
1275
1281
|
# This implementation of the DELETE action uses the policy subresource
|
1276
1282
|
# to delete the policy of a specified Amazon S3 on Outposts bucket. If
|
1277
|
-
# you are using an identity other than the root user of the
|
1278
|
-
#
|
1283
|
+
# you are using an identity other than the root user of the account that
|
1284
|
+
# owns the bucket, the calling identity must have the
|
1279
1285
|
# `s3-outposts:DeleteBucketPolicy` permissions on the specified Outposts
|
1280
1286
|
# bucket and belong to the bucket owner's account to use this action.
|
1281
1287
|
# For more information, see [Using Amazon S3 on Outposts][2] in *Amazon
|
@@ -1286,7 +1292,7 @@ module Aws::S3Control
|
|
1286
1292
|
# you're not using an identity that belongs to the bucket owner's
|
1287
1293
|
# account, Amazon S3 returns a `405 Method Not Allowed` error.
|
1288
1294
|
#
|
1289
|
-
# As a security precaution, the root user of the
|
1295
|
+
# As a security precaution, the root user of the account that owns a
|
1290
1296
|
# bucket can always use this action, even if the policy explicitly
|
1291
1297
|
# denies the root user the ability to perform this action.
|
1292
1298
|
#
|
@@ -1325,8 +1331,9 @@ module Aws::S3Control
|
|
1325
1331
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
1326
1332
|
# you must specify the name and the x-amz-outpost-id as well.
|
1327
1333
|
#
|
1328
|
-
# For using this parameter with S3 on Outposts with the
|
1329
|
-
# you must specify the ARN of the bucket accessed
|
1334
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
1335
|
+
# Services SDK and CLI, you must specify the ARN of the bucket accessed
|
1336
|
+
# in the format
|
1330
1337
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
1331
1338
|
# For example, to access the bucket `reports` through outpost
|
1332
1339
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -1388,7 +1395,7 @@ module Aws::S3Control
|
|
1388
1395
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutBucketTagging.html
|
1389
1396
|
#
|
1390
1397
|
# @option params [required, String] :account_id
|
1391
|
-
# The
|
1398
|
+
# The account ID of the Outposts bucket tag set to be removed.
|
1392
1399
|
#
|
1393
1400
|
# @option params [required, String] :bucket
|
1394
1401
|
# The bucket ARN that has the tag set to be removed.
|
@@ -1396,8 +1403,9 @@ module Aws::S3Control
|
|
1396
1403
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
1397
1404
|
# you must specify the name and the x-amz-outpost-id as well.
|
1398
1405
|
#
|
1399
|
-
# For using this parameter with S3 on Outposts with the
|
1400
|
-
# you must specify the ARN of the bucket accessed
|
1406
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
1407
|
+
# Services SDK and CLI, you must specify the ARN of the bucket accessed
|
1408
|
+
# in the format
|
1401
1409
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
1402
1410
|
# For example, to access the bucket `reports` through outpost
|
1403
1411
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -1446,7 +1454,7 @@ module Aws::S3Control
|
|
1446
1454
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutJobTagging.html
|
1447
1455
|
#
|
1448
1456
|
# @option params [required, String] :account_id
|
1449
|
-
# The
|
1457
|
+
# The account ID associated with the S3 Batch Operations job.
|
1450
1458
|
#
|
1451
1459
|
# @option params [required, String] :job_id
|
1452
1460
|
# The ID for the S3 Batch Operations job whose tags you want to delete.
|
@@ -1469,8 +1477,8 @@ module Aws::S3Control
|
|
1469
1477
|
req.send_request(options)
|
1470
1478
|
end
|
1471
1479
|
|
1472
|
-
# Removes the `PublicAccessBlock` configuration for an
|
1473
|
-
#
|
1480
|
+
# Removes the `PublicAccessBlock` configuration for an account. For more
|
1481
|
+
# information, see [ Using Amazon S3 block public access][1].
|
1474
1482
|
#
|
1475
1483
|
# Related actions include:
|
1476
1484
|
#
|
@@ -1485,8 +1493,8 @@ module Aws::S3Control
|
|
1485
1493
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutPublicAccessBlock.html
|
1486
1494
|
#
|
1487
1495
|
# @option params [required, String] :account_id
|
1488
|
-
# The account ID for the
|
1489
|
-
#
|
1496
|
+
# The account ID for the account whose `PublicAccessBlock` configuration
|
1497
|
+
# you want to remove.
|
1490
1498
|
#
|
1491
1499
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1492
1500
|
#
|
@@ -1611,7 +1619,7 @@ module Aws::S3Control
|
|
1611
1619
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_UpdateJobStatus.html
|
1612
1620
|
#
|
1613
1621
|
# @option params [required, String] :account_id
|
1614
|
-
# The
|
1622
|
+
# The account ID associated with the S3 Batch Operations job.
|
1615
1623
|
#
|
1616
1624
|
# @option params [required, String] :job_id
|
1617
1625
|
# The ID for the job whose information you want to retrieve.
|
@@ -1757,8 +1765,9 @@ module Aws::S3Control
|
|
1757
1765
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
1758
1766
|
# you must specify the name and the x-amz-outpost-id as well.
|
1759
1767
|
#
|
1760
|
-
# For using this parameter with S3 on Outposts with the
|
1761
|
-
# you must specify the ARN of the access point
|
1768
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
1769
|
+
# Services SDK and CLI, you must specify the ARN of the access point
|
1770
|
+
# accessed in the format
|
1762
1771
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>`.
|
1763
1772
|
# For example, to access the access point `reports-ap` through outpost
|
1764
1773
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -1774,6 +1783,9 @@ module Aws::S3Control
|
|
1774
1783
|
# * {Types::GetAccessPointResult#vpc_configuration #vpc_configuration} => Types::VpcConfiguration
|
1775
1784
|
# * {Types::GetAccessPointResult#public_access_block_configuration #public_access_block_configuration} => Types::PublicAccessBlockConfiguration
|
1776
1785
|
# * {Types::GetAccessPointResult#creation_date #creation_date} => Time
|
1786
|
+
# * {Types::GetAccessPointResult#alias #alias} => String
|
1787
|
+
# * {Types::GetAccessPointResult#access_point_arn #access_point_arn} => String
|
1788
|
+
# * {Types::GetAccessPointResult#endpoints #endpoints} => Hash<String,String>
|
1777
1789
|
#
|
1778
1790
|
# @example Request syntax with placeholder values
|
1779
1791
|
#
|
@@ -1793,6 +1805,10 @@ module Aws::S3Control
|
|
1793
1805
|
# resp.public_access_block_configuration.block_public_policy #=> Boolean
|
1794
1806
|
# resp.public_access_block_configuration.restrict_public_buckets #=> Boolean
|
1795
1807
|
# resp.creation_date #=> Time
|
1808
|
+
# resp.alias #=> String
|
1809
|
+
# resp.access_point_arn #=> String
|
1810
|
+
# resp.endpoints #=> Hash
|
1811
|
+
# resp.endpoints["NonEmptyMaxLength64String"] #=> String
|
1796
1812
|
#
|
1797
1813
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/GetAccessPoint AWS API Documentation
|
1798
1814
|
#
|
@@ -1934,8 +1950,9 @@ module Aws::S3Control
|
|
1934
1950
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
1935
1951
|
# you must specify the name and the x-amz-outpost-id as well.
|
1936
1952
|
#
|
1937
|
-
# For using this parameter with S3 on Outposts with the
|
1938
|
-
# you must specify the ARN of the access point
|
1953
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
1954
|
+
# Services SDK and CLI, you must specify the ARN of the access point
|
1955
|
+
# accessed in the format
|
1939
1956
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>`.
|
1940
1957
|
# For example, to access the access point `reports-ap` through outpost
|
1941
1958
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -2088,12 +2105,12 @@ module Aws::S3Control
|
|
2088
2105
|
# Gets an Amazon S3 on Outposts bucket. For more information, see [
|
2089
2106
|
# Using Amazon S3 on Outposts][1] in the *Amazon S3 User Guide*.
|
2090
2107
|
#
|
2091
|
-
# If you are using an identity other than the root user of the
|
2092
|
-
#
|
2093
|
-
#
|
2094
|
-
#
|
2095
|
-
#
|
2096
|
-
#
|
2108
|
+
# If you are using an identity other than the root user of the account
|
2109
|
+
# that owns the Outposts bucket, the calling identity must have the
|
2110
|
+
# `s3-outposts:GetBucket` permissions on the specified Outposts bucket
|
2111
|
+
# and belong to the Outposts bucket owner's account in order to use
|
2112
|
+
# this action. Only users from Outposts bucket owner account with the
|
2113
|
+
# right permissions can perform actions on an Outposts bucket.
|
2097
2114
|
#
|
2098
2115
|
# If you don't have `s3-outposts:GetBucket` permissions or you're not
|
2099
2116
|
# using an identity that belongs to the bucket owner's account, Amazon
|
@@ -2125,7 +2142,7 @@ module Aws::S3Control
|
|
2125
2142
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteBucket.html
|
2126
2143
|
#
|
2127
2144
|
# @option params [required, String] :account_id
|
2128
|
-
# The
|
2145
|
+
# The account ID of the Outposts bucket.
|
2129
2146
|
#
|
2130
2147
|
# @option params [required, String] :bucket
|
2131
2148
|
# Specifies the bucket.
|
@@ -2133,8 +2150,9 @@ module Aws::S3Control
|
|
2133
2150
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
2134
2151
|
# you must specify the name and the x-amz-outpost-id as well.
|
2135
2152
|
#
|
2136
|
-
# For using this parameter with S3 on Outposts with the
|
2137
|
-
# you must specify the ARN of the bucket accessed
|
2153
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
2154
|
+
# Services SDK and CLI, you must specify the ARN of the bucket accessed
|
2155
|
+
# in the format
|
2138
2156
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
2139
2157
|
# For example, to access the bucket `reports` through outpost
|
2140
2158
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -2225,7 +2243,7 @@ module Aws::S3Control
|
|
2225
2243
|
# [8]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteBucketLifecycleConfiguration.html
|
2226
2244
|
#
|
2227
2245
|
# @option params [required, String] :account_id
|
2228
|
-
# The
|
2246
|
+
# The account ID of the Outposts bucket.
|
2229
2247
|
#
|
2230
2248
|
# @option params [required, String] :bucket
|
2231
2249
|
# The Amazon Resource Name (ARN) of the bucket.
|
@@ -2233,8 +2251,9 @@ module Aws::S3Control
|
|
2233
2251
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
2234
2252
|
# you must specify the name and the x-amz-outpost-id as well.
|
2235
2253
|
#
|
2236
|
-
# For using this parameter with S3 on Outposts with the
|
2237
|
-
# you must specify the ARN of the bucket accessed
|
2254
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
2255
|
+
# Services SDK and CLI, you must specify the ARN of the bucket accessed
|
2256
|
+
# in the format
|
2238
2257
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
2239
2258
|
# For example, to access the bucket `reports` through outpost
|
2240
2259
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -2297,8 +2316,8 @@ module Aws::S3Control
|
|
2297
2316
|
# information, see [Using Amazon S3 on Outposts][2] in the *Amazon S3
|
2298
2317
|
# User Guide*.
|
2299
2318
|
#
|
2300
|
-
# If you are using an identity other than the root user of the
|
2301
|
-
#
|
2319
|
+
# If you are using an identity other than the root user of the account
|
2320
|
+
# that owns the bucket, the calling identity must have the
|
2302
2321
|
# `GetBucketPolicy` permissions on the specified bucket and belong to
|
2303
2322
|
# the bucket owner's account in order to use this action.
|
2304
2323
|
#
|
@@ -2308,7 +2327,7 @@ module Aws::S3Control
|
|
2308
2327
|
# identity that belongs to the bucket owner's account, Amazon S3
|
2309
2328
|
# returns a `403 Access Denied` error.
|
2310
2329
|
#
|
2311
|
-
# As a security precaution, the root user of the
|
2330
|
+
# As a security precaution, the root user of the account that owns a
|
2312
2331
|
# bucket can always use this action, even if the policy explicitly
|
2313
2332
|
# denies the root user the ability to perform this action.
|
2314
2333
|
#
|
@@ -2342,7 +2361,7 @@ module Aws::S3Control
|
|
2342
2361
|
# [7]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteBucketPolicy.html
|
2343
2362
|
#
|
2344
2363
|
# @option params [required, String] :account_id
|
2345
|
-
# The
|
2364
|
+
# The account ID of the Outposts bucket.
|
2346
2365
|
#
|
2347
2366
|
# @option params [required, String] :bucket
|
2348
2367
|
# Specifies the bucket.
|
@@ -2350,8 +2369,9 @@ module Aws::S3Control
|
|
2350
2369
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
2351
2370
|
# you must specify the name and the x-amz-outpost-id as well.
|
2352
2371
|
#
|
2353
|
-
# For using this parameter with S3 on Outposts with the
|
2354
|
-
# you must specify the ARN of the bucket accessed
|
2372
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
2373
|
+
# Services SDK and CLI, you must specify the ARN of the bucket accessed
|
2374
|
+
# in the format
|
2355
2375
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
2356
2376
|
# For example, to access the bucket `reports` through outpost
|
2357
2377
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -2428,7 +2448,7 @@ module Aws::S3Control
|
|
2428
2448
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteBucketTagging.html
|
2429
2449
|
#
|
2430
2450
|
# @option params [required, String] :account_id
|
2431
|
-
# The
|
2451
|
+
# The account ID of the Outposts bucket.
|
2432
2452
|
#
|
2433
2453
|
# @option params [required, String] :bucket
|
2434
2454
|
# Specifies the bucket.
|
@@ -2436,8 +2456,9 @@ module Aws::S3Control
|
|
2436
2456
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
2437
2457
|
# you must specify the name and the x-amz-outpost-id as well.
|
2438
2458
|
#
|
2439
|
-
# For using this parameter with S3 on Outposts with the
|
2440
|
-
# you must specify the ARN of the bucket accessed
|
2459
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
2460
|
+
# Services SDK and CLI, you must specify the ARN of the bucket accessed
|
2461
|
+
# in the format
|
2441
2462
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
2442
2463
|
# For example, to access the bucket `reports` through outpost
|
2443
2464
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -2494,7 +2515,7 @@ module Aws::S3Control
|
|
2494
2515
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteJobTagging.html
|
2495
2516
|
#
|
2496
2517
|
# @option params [required, String] :account_id
|
2497
|
-
# The
|
2518
|
+
# The account ID associated with the S3 Batch Operations job.
|
2498
2519
|
#
|
2499
2520
|
# @option params [required, String] :job_id
|
2500
2521
|
# The ID for the S3 Batch Operations job whose tags you want to
|
@@ -2526,8 +2547,8 @@ module Aws::S3Control
|
|
2526
2547
|
req.send_request(options)
|
2527
2548
|
end
|
2528
2549
|
|
2529
|
-
# Retrieves the `PublicAccessBlock` configuration for an
|
2530
|
-
#
|
2550
|
+
# Retrieves the `PublicAccessBlock` configuration for an account. For
|
2551
|
+
# more information, see [ Using Amazon S3 block public access][1].
|
2531
2552
|
#
|
2532
2553
|
# Related actions include:
|
2533
2554
|
#
|
@@ -2542,8 +2563,8 @@ module Aws::S3Control
|
|
2542
2563
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutPublicAccessBlock.html
|
2543
2564
|
#
|
2544
2565
|
# @option params [required, String] :account_id
|
2545
|
-
# The account ID for the
|
2546
|
-
#
|
2566
|
+
# The account ID for the account whose `PublicAccessBlock` configuration
|
2567
|
+
# you want to retrieve.
|
2547
2568
|
#
|
2548
2569
|
# @return [Types::GetPublicAccessBlockOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2549
2570
|
#
|
@@ -2722,8 +2743,8 @@ module Aws::S3Control
|
|
2722
2743
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetAccessPoint.html
|
2723
2744
|
#
|
2724
2745
|
# @option params [required, String] :account_id
|
2725
|
-
# The
|
2726
|
-
#
|
2746
|
+
# The account ID for owner of the bucket whose access points you want to
|
2747
|
+
# list.
|
2727
2748
|
#
|
2728
2749
|
# @option params [String] :bucket
|
2729
2750
|
# The name of the bucket whose associated access points you want to
|
@@ -2732,8 +2753,9 @@ module Aws::S3Control
|
|
2732
2753
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
2733
2754
|
# you must specify the name and the x-amz-outpost-id as well.
|
2734
2755
|
#
|
2735
|
-
# For using this parameter with S3 on Outposts with the
|
2736
|
-
# you must specify the ARN of the bucket accessed
|
2756
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
2757
|
+
# Services SDK and CLI, you must specify the ARN of the bucket accessed
|
2758
|
+
# in the format
|
2737
2759
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
2738
2760
|
# For example, to access the bucket `reports` through outpost
|
2739
2761
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -2777,6 +2799,7 @@ module Aws::S3Control
|
|
2777
2799
|
# resp.access_point_list[0].vpc_configuration.vpc_id #=> String
|
2778
2800
|
# resp.access_point_list[0].bucket #=> String
|
2779
2801
|
# resp.access_point_list[0].access_point_arn #=> String
|
2802
|
+
# resp.access_point_list[0].alias #=> String
|
2780
2803
|
# resp.next_token #=> String
|
2781
2804
|
#
|
2782
2805
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/ListAccessPoints AWS API Documentation
|
@@ -2858,7 +2881,7 @@ module Aws::S3Control
|
|
2858
2881
|
end
|
2859
2882
|
|
2860
2883
|
# Lists current S3 Batch Operations jobs and jobs that have ended within
|
2861
|
-
# the last 30 days for the
|
2884
|
+
# the last 30 days for the account making the request. For more
|
2862
2885
|
# information, see [S3 Batch Operations][1] in the *Amazon S3 User
|
2863
2886
|
# Guide*.
|
2864
2887
|
#
|
@@ -2883,7 +2906,7 @@ module Aws::S3Control
|
|
2883
2906
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_UpdateJobStatus.html
|
2884
2907
|
#
|
2885
2908
|
# @option params [required, String] :account_id
|
2886
|
-
# The
|
2909
|
+
# The account ID associated with the S3 Batch Operations job.
|
2887
2910
|
#
|
2888
2911
|
# @option params [Array<String>] :job_statuses
|
2889
2912
|
# The `List Jobs` request returns jobs that match the statuses listed in
|
@@ -2954,14 +2977,14 @@ module Aws::S3Control
|
|
2954
2977
|
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_ListRegionalBuckets.html#API_control_ListRegionalBuckets_Examples
|
2955
2978
|
#
|
2956
2979
|
# @option params [required, String] :account_id
|
2957
|
-
# The
|
2980
|
+
# The account ID of the Outposts bucket.
|
2958
2981
|
#
|
2959
2982
|
# @option params [String] :next_token
|
2960
2983
|
#
|
2961
2984
|
# @option params [Integer] :max_results
|
2962
2985
|
#
|
2963
2986
|
# @option params [String] :outpost_id
|
2964
|
-
# The ID of the
|
2987
|
+
# The ID of the Outposts.
|
2965
2988
|
#
|
2966
2989
|
# <note markdown="1"> This is required by Amazon S3 on Outposts buckets.
|
2967
2990
|
#
|
@@ -3142,8 +3165,8 @@ module Aws::S3Control
|
|
3142
3165
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteAccessPointPolicy.html
|
3143
3166
|
#
|
3144
3167
|
# @option params [required, String] :account_id
|
3145
|
-
# The
|
3146
|
-
#
|
3168
|
+
# The account ID for owner of the bucket associated with the specified
|
3169
|
+
# access point.
|
3147
3170
|
#
|
3148
3171
|
# @option params [required, String] :name
|
3149
3172
|
# The name of the access point that you want to associate with the
|
@@ -3152,8 +3175,9 @@ module Aws::S3Control
|
|
3152
3175
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
3153
3176
|
# you must specify the name and the x-amz-outpost-id as well.
|
3154
3177
|
#
|
3155
|
-
# For using this parameter with S3 on Outposts with the
|
3156
|
-
# you must specify the ARN of the access point
|
3178
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
3179
|
+
# Services SDK and CLI, you must specify the ARN of the access point
|
3180
|
+
# accessed in the format
|
3157
3181
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>`.
|
3158
3182
|
# For example, to access the access point `reports-ap` through outpost
|
3159
3183
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -3271,7 +3295,7 @@ module Aws::S3Control
|
|
3271
3295
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteBucketLifecycleConfiguration.html
|
3272
3296
|
#
|
3273
3297
|
# @option params [required, String] :account_id
|
3274
|
-
# The
|
3298
|
+
# The account ID of the Outposts bucket.
|
3275
3299
|
#
|
3276
3300
|
# @option params [required, String] :bucket
|
3277
3301
|
# The name of the bucket for which to set the configuration.
|
@@ -3355,9 +3379,9 @@ module Aws::S3Control
|
|
3355
3379
|
# information, see [Using Amazon S3 on Outposts][2] in the *Amazon S3
|
3356
3380
|
# User Guide*.
|
3357
3381
|
#
|
3358
|
-
# If you are using an identity other than the root user of the
|
3359
|
-
#
|
3360
|
-
#
|
3382
|
+
# If you are using an identity other than the root user of the account
|
3383
|
+
# that owns the Outposts bucket, the calling identity must have the
|
3384
|
+
# `PutBucketPolicy` permissions on the specified Outposts bucket and
|
3361
3385
|
# belong to the bucket owner's account in order to use this action.
|
3362
3386
|
#
|
3363
3387
|
# If you don't have `PutBucketPolicy` permissions, Amazon S3 returns a
|
@@ -3365,7 +3389,7 @@ module Aws::S3Control
|
|
3365
3389
|
# you're not using an identity that belongs to the bucket owner's
|
3366
3390
|
# account, Amazon S3 returns a `405 Method Not Allowed` error.
|
3367
3391
|
#
|
3368
|
-
# As a security precaution, the root user of the
|
3392
|
+
# As a security precaution, the root user of the account that owns a
|
3369
3393
|
# bucket can always use this action, even if the policy explicitly
|
3370
3394
|
# denies the root user the ability to perform this action.
|
3371
3395
|
#
|
@@ -3396,7 +3420,7 @@ module Aws::S3Control
|
|
3396
3420
|
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteBucketPolicy.html
|
3397
3421
|
#
|
3398
3422
|
# @option params [required, String] :account_id
|
3399
|
-
# The
|
3423
|
+
# The account ID of the Outposts bucket.
|
3400
3424
|
#
|
3401
3425
|
# @option params [required, String] :bucket
|
3402
3426
|
# Specifies the bucket.
|
@@ -3404,8 +3428,9 @@ module Aws::S3Control
|
|
3404
3428
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
3405
3429
|
# you must specify the name and the x-amz-outpost-id as well.
|
3406
3430
|
#
|
3407
|
-
# For using this parameter with S3 on Outposts with the
|
3408
|
-
# you must specify the ARN of the bucket accessed
|
3431
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
3432
|
+
# Services SDK and CLI, you must specify the ARN of the bucket accessed
|
3433
|
+
# in the format
|
3409
3434
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
3410
3435
|
# For example, to access the bucket `reports` through outpost
|
3411
3436
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -3453,14 +3478,14 @@ module Aws::S3Control
|
|
3453
3478
|
# Sets the tags for an S3 on Outposts bucket. For more information, see
|
3454
3479
|
# [Using Amazon S3 on Outposts][2] in the *Amazon S3 User Guide*.
|
3455
3480
|
#
|
3456
|
-
# Use tags to organize your
|
3457
|
-
# To do this, sign up to get your
|
3458
|
-
# included. Then, to see the cost of combined resources,
|
3459
|
-
# billing information according to resources with the same
|
3460
|
-
# values. For example, you can tag several resources with a
|
3461
|
-
# application name, and then organize your billing information
|
3462
|
-
# the total cost of that application across several services. For
|
3463
|
-
# information, see [Cost allocation and tagging][3].
|
3481
|
+
# Use tags to organize your Amazon Web Services bill to reflect your own
|
3482
|
+
# cost structure. To do this, sign up to get your account bill with tag
|
3483
|
+
# key values included. Then, to see the cost of combined resources,
|
3484
|
+
# organize your billing information according to resources with the same
|
3485
|
+
# tag key values. For example, you can tag several resources with a
|
3486
|
+
# specific application name, and then organize your billing information
|
3487
|
+
# to see the total cost of that application across several services. For
|
3488
|
+
# more information, see [Cost allocation and tagging][3].
|
3464
3489
|
#
|
3465
3490
|
# <note markdown="1"> Within a bucket, if you add a tag that has the same key as an existing
|
3466
3491
|
# tag, the new value overwrites the old value. For more information, see
|
@@ -3482,7 +3507,8 @@ module Aws::S3Control
|
|
3482
3507
|
# * Description: The tag provided was not a valid tag. This error can
|
3483
3508
|
# occur if the tag did not pass input validation. For information
|
3484
3509
|
# about tag restrictions, see [ User-Defined Tag Restrictions][7]
|
3485
|
-
# and [
|
3510
|
+
# and [ Amazon Web Services-Generated Cost Allocation Tag
|
3511
|
+
# Restrictions][8].
|
3486
3512
|
#
|
3487
3513
|
# ^
|
3488
3514
|
#
|
@@ -3535,7 +3561,7 @@ module Aws::S3Control
|
|
3535
3561
|
# [11]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteBucketTagging.html
|
3536
3562
|
#
|
3537
3563
|
# @option params [required, String] :account_id
|
3538
|
-
# The
|
3564
|
+
# The account ID of the Outposts bucket.
|
3539
3565
|
#
|
3540
3566
|
# @option params [required, String] :bucket
|
3541
3567
|
# The Amazon Resource Name (ARN) of the bucket.
|
@@ -3543,8 +3569,9 @@ module Aws::S3Control
|
|
3543
3569
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
3544
3570
|
# you must specify the name and the x-amz-outpost-id as well.
|
3545
3571
|
#
|
3546
|
-
# For using this parameter with S3 on Outposts with the
|
3547
|
-
# you must specify the ARN of the bucket accessed
|
3572
|
+
# For using this parameter with S3 on Outposts with the Amazon Web
|
3573
|
+
# Services SDK and CLI, you must specify the ARN of the bucket accessed
|
3574
|
+
# in the format
|
3548
3575
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
3549
3576
|
# For example, to access the bucket `reports` through outpost
|
3550
3577
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -3616,8 +3643,8 @@ module Aws::S3Control
|
|
3616
3643
|
# * The key and values are case sensitive.
|
3617
3644
|
#
|
3618
3645
|
# * For tagging-related restrictions related to characters and
|
3619
|
-
# encodings, see [User-Defined Tag Restrictions][5] in the *
|
3620
|
-
#
|
3646
|
+
# encodings, see [User-Defined Tag Restrictions][5] in the *Billing
|
3647
|
+
# and Cost Management User Guide*.
|
3621
3648
|
#
|
3622
3649
|
# </note>
|
3623
3650
|
#
|
@@ -3644,7 +3671,7 @@ module Aws::S3Control
|
|
3644
3671
|
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_CreateJob.html
|
3645
3672
|
#
|
3646
3673
|
# @option params [required, String] :account_id
|
3647
|
-
# The
|
3674
|
+
# The account ID associated with the S3 Batch Operations job.
|
3648
3675
|
#
|
3649
3676
|
# @option params [required, String] :job_id
|
3650
3677
|
# The ID for the S3 Batch Operations job whose tags you want to replace.
|
@@ -3676,7 +3703,7 @@ module Aws::S3Control
|
|
3676
3703
|
req.send_request(options)
|
3677
3704
|
end
|
3678
3705
|
|
3679
|
-
# Creates or modifies the `PublicAccessBlock` configuration for an
|
3706
|
+
# Creates or modifies the `PublicAccessBlock` configuration for an
|
3680
3707
|
# account. For more information, see [ Using Amazon S3 block public
|
3681
3708
|
# access][1].
|
3682
3709
|
#
|
@@ -3694,11 +3721,11 @@ module Aws::S3Control
|
|
3694
3721
|
#
|
3695
3722
|
# @option params [required, Types::PublicAccessBlockConfiguration] :public_access_block_configuration
|
3696
3723
|
# The `PublicAccessBlock` configuration that you want to apply to the
|
3697
|
-
# specified
|
3724
|
+
# specified account.
|
3698
3725
|
#
|
3699
3726
|
# @option params [required, String] :account_id
|
3700
|
-
# The account ID for the
|
3701
|
-
#
|
3727
|
+
# The account ID for the account whose `PublicAccessBlock` configuration
|
3728
|
+
# you want to set.
|
3702
3729
|
#
|
3703
3730
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
3704
3731
|
#
|
@@ -3910,7 +3937,7 @@ module Aws::S3Control
|
|
3910
3937
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_UpdateJobStatus.html
|
3911
3938
|
#
|
3912
3939
|
# @option params [required, String] :account_id
|
3913
|
-
# The
|
3940
|
+
# The account ID associated with the S3 Batch Operations job.
|
3914
3941
|
#
|
3915
3942
|
# @option params [required, String] :job_id
|
3916
3943
|
# The ID for the job whose priority you want to update.
|
@@ -3971,7 +3998,7 @@ module Aws::S3Control
|
|
3971
3998
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_UpdateJobStatus.html
|
3972
3999
|
#
|
3973
4000
|
# @option params [required, String] :account_id
|
3974
|
-
# The
|
4001
|
+
# The account ID associated with the S3 Batch Operations job.
|
3975
4002
|
#
|
3976
4003
|
# @option params [required, String] :job_id
|
3977
4004
|
# The ID of the job whose status you want to update.
|
@@ -4026,7 +4053,7 @@ module Aws::S3Control
|
|
4026
4053
|
params: params,
|
4027
4054
|
config: config)
|
4028
4055
|
context[:gem_name] = 'aws-sdk-s3control'
|
4029
|
-
context[:gem_version] = '1.
|
4056
|
+
context[:gem_version] = '1.38.0'
|
4030
4057
|
Seahorse::Client::Request.new(handlers, context)
|
4031
4058
|
end
|
4032
4059
|
|