aws-sdk-s3control 1.33.0 → 1.37.0
Sign up to get free protection for your applications and to get access to all the features.
- 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 +132 -103
- data/lib/aws-sdk-s3control/client_api.rb +15 -1
- data/lib/aws-sdk-s3control/types.rb +154 -103
- 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: 679f82abd4b7d4a97a23fd00132d5f1d3d7605b6fcf4f12096b5fe2ac194528c
|
4
|
+
data.tar.gz: 8ed1a58058cbd0be44c68172fbf370ea4a84de2768c9a806de7ac0ec20c3183b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 237475ab470557b578559e007add4db170fcb8ac968c80a68bddcce9da4b4805ffc8d26e538764df32dc8244dc931def5b46bbe844bbd776b8d66f825f749b26
|
7
|
+
data.tar.gz: e708187653aaaa9ed8c8204602ab6e7f76b9934f13fd7b71fd113497cc1d8cac2871fe429023ceb6443f297ca1be05a782b498a0f94fb694fee88c21059c5405
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.37.0 (2021-07-28)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.36.0 (2021-07-26)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - S3 Access Point aliases can be used anywhere you use S3 bucket names to access data in S3
|
13
|
+
|
14
|
+
1.35.0 (2021-07-22)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Documentation updates for Amazon S3-control
|
18
|
+
|
19
|
+
1.34.0 (2021-06-03)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Amazon S3 Batch Operations now supports S3 Bucket Keys.
|
23
|
+
|
4
24
|
1.33.0 (2021-05-11)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.37.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
|
@@ -818,6 +820,7 @@ module Aws::S3Control
|
|
818
820
|
# object_lock_legal_hold_status: "OFF", # accepts OFF, ON
|
819
821
|
# object_lock_mode: "COMPLIANCE", # accepts COMPLIANCE, GOVERNANCE
|
820
822
|
# object_lock_retain_until_date: Time.now,
|
823
|
+
# bucket_key_enabled: false,
|
821
824
|
# },
|
822
825
|
# s3_put_object_acl: {
|
823
826
|
# access_control_policy: {
|
@@ -944,8 +947,9 @@ module Aws::S3Control
|
|
944
947
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
945
948
|
# you must specify the name and the x-amz-outpost-id as well.
|
946
949
|
#
|
947
|
-
# For using this parameter with S3 on Outposts with the
|
948
|
-
# 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
|
949
953
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>`.
|
950
954
|
# For example, to access the access point `reports-ap` through outpost
|
951
955
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -1046,8 +1050,9 @@ module Aws::S3Control
|
|
1046
1050
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
1047
1051
|
# you must specify the name and the x-amz-outpost-id as well.
|
1048
1052
|
#
|
1049
|
-
# For using this parameter with S3 on Outposts with the
|
1050
|
-
# 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
|
1051
1056
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>`.
|
1052
1057
|
# For example, to access the access point `reports-ap` through outpost
|
1053
1058
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -1157,8 +1162,9 @@ module Aws::S3Control
|
|
1157
1162
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
1158
1163
|
# you must specify the name and the x-amz-outpost-id as well.
|
1159
1164
|
#
|
1160
|
-
# For using this parameter with S3 on Outposts with the
|
1161
|
-
# 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
|
1162
1168
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
1163
1169
|
# For example, to access the bucket `reports` through outpost
|
1164
1170
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -1238,8 +1244,9 @@ module Aws::S3Control
|
|
1238
1244
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
1239
1245
|
# you must specify the name and the x-amz-outpost-id as well.
|
1240
1246
|
#
|
1241
|
-
# For using this parameter with S3 on Outposts with the
|
1242
|
-
# 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
|
1243
1250
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
1244
1251
|
# For example, to access the bucket `reports` through outpost
|
1245
1252
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -1273,8 +1280,8 @@ module Aws::S3Control
|
|
1273
1280
|
#
|
1274
1281
|
# This implementation of the DELETE action uses the policy subresource
|
1275
1282
|
# to delete the policy of a specified Amazon S3 on Outposts bucket. If
|
1276
|
-
# you are using an identity other than the root user of the
|
1277
|
-
#
|
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
|
1278
1285
|
# `s3-outposts:DeleteBucketPolicy` permissions on the specified Outposts
|
1279
1286
|
# bucket and belong to the bucket owner's account to use this action.
|
1280
1287
|
# For more information, see [Using Amazon S3 on Outposts][2] in *Amazon
|
@@ -1285,7 +1292,7 @@ module Aws::S3Control
|
|
1285
1292
|
# you're not using an identity that belongs to the bucket owner's
|
1286
1293
|
# account, Amazon S3 returns a `405 Method Not Allowed` error.
|
1287
1294
|
#
|
1288
|
-
# As a security precaution, the root user of the
|
1295
|
+
# As a security precaution, the root user of the account that owns a
|
1289
1296
|
# bucket can always use this action, even if the policy explicitly
|
1290
1297
|
# denies the root user the ability to perform this action.
|
1291
1298
|
#
|
@@ -1324,8 +1331,9 @@ module Aws::S3Control
|
|
1324
1331
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
1325
1332
|
# you must specify the name and the x-amz-outpost-id as well.
|
1326
1333
|
#
|
1327
|
-
# For using this parameter with S3 on Outposts with the
|
1328
|
-
# 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
|
1329
1337
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
1330
1338
|
# For example, to access the bucket `reports` through outpost
|
1331
1339
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -1387,7 +1395,7 @@ module Aws::S3Control
|
|
1387
1395
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutBucketTagging.html
|
1388
1396
|
#
|
1389
1397
|
# @option params [required, String] :account_id
|
1390
|
-
# The
|
1398
|
+
# The account ID of the Outposts bucket tag set to be removed.
|
1391
1399
|
#
|
1392
1400
|
# @option params [required, String] :bucket
|
1393
1401
|
# The bucket ARN that has the tag set to be removed.
|
@@ -1395,8 +1403,9 @@ module Aws::S3Control
|
|
1395
1403
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
1396
1404
|
# you must specify the name and the x-amz-outpost-id as well.
|
1397
1405
|
#
|
1398
|
-
# For using this parameter with S3 on Outposts with the
|
1399
|
-
# 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
|
1400
1409
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
1401
1410
|
# For example, to access the bucket `reports` through outpost
|
1402
1411
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -1445,7 +1454,7 @@ module Aws::S3Control
|
|
1445
1454
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutJobTagging.html
|
1446
1455
|
#
|
1447
1456
|
# @option params [required, String] :account_id
|
1448
|
-
# The
|
1457
|
+
# The account ID associated with the S3 Batch Operations job.
|
1449
1458
|
#
|
1450
1459
|
# @option params [required, String] :job_id
|
1451
1460
|
# The ID for the S3 Batch Operations job whose tags you want to delete.
|
@@ -1468,8 +1477,8 @@ module Aws::S3Control
|
|
1468
1477
|
req.send_request(options)
|
1469
1478
|
end
|
1470
1479
|
|
1471
|
-
# Removes the `PublicAccessBlock` configuration for an
|
1472
|
-
#
|
1480
|
+
# Removes the `PublicAccessBlock` configuration for an account. For more
|
1481
|
+
# information, see [ Using Amazon S3 block public access][1].
|
1473
1482
|
#
|
1474
1483
|
# Related actions include:
|
1475
1484
|
#
|
@@ -1484,8 +1493,8 @@ module Aws::S3Control
|
|
1484
1493
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutPublicAccessBlock.html
|
1485
1494
|
#
|
1486
1495
|
# @option params [required, String] :account_id
|
1487
|
-
# The account ID for the
|
1488
|
-
#
|
1496
|
+
# The account ID for the account whose `PublicAccessBlock` configuration
|
1497
|
+
# you want to remove.
|
1489
1498
|
#
|
1490
1499
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1491
1500
|
#
|
@@ -1610,7 +1619,7 @@ module Aws::S3Control
|
|
1610
1619
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_UpdateJobStatus.html
|
1611
1620
|
#
|
1612
1621
|
# @option params [required, String] :account_id
|
1613
|
-
# The
|
1622
|
+
# The account ID associated with the S3 Batch Operations job.
|
1614
1623
|
#
|
1615
1624
|
# @option params [required, String] :job_id
|
1616
1625
|
# The ID for the job whose information you want to retrieve.
|
@@ -1673,6 +1682,7 @@ module Aws::S3Control
|
|
1673
1682
|
# resp.job.operation.s3_put_object_copy.object_lock_legal_hold_status #=> String, one of "OFF", "ON"
|
1674
1683
|
# resp.job.operation.s3_put_object_copy.object_lock_mode #=> String, one of "COMPLIANCE", "GOVERNANCE"
|
1675
1684
|
# resp.job.operation.s3_put_object_copy.object_lock_retain_until_date #=> Time
|
1685
|
+
# resp.job.operation.s3_put_object_copy.bucket_key_enabled #=> Boolean
|
1676
1686
|
# resp.job.operation.s3_put_object_acl.access_control_policy.access_control_list.owner.id #=> String
|
1677
1687
|
# resp.job.operation.s3_put_object_acl.access_control_policy.access_control_list.owner.display_name #=> String
|
1678
1688
|
# resp.job.operation.s3_put_object_acl.access_control_policy.access_control_list.grants #=> Array
|
@@ -1755,8 +1765,9 @@ module Aws::S3Control
|
|
1755
1765
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
1756
1766
|
# you must specify the name and the x-amz-outpost-id as well.
|
1757
1767
|
#
|
1758
|
-
# For using this parameter with S3 on Outposts with the
|
1759
|
-
# 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
|
1760
1771
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>`.
|
1761
1772
|
# For example, to access the access point `reports-ap` through outpost
|
1762
1773
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -1772,6 +1783,9 @@ module Aws::S3Control
|
|
1772
1783
|
# * {Types::GetAccessPointResult#vpc_configuration #vpc_configuration} => Types::VpcConfiguration
|
1773
1784
|
# * {Types::GetAccessPointResult#public_access_block_configuration #public_access_block_configuration} => Types::PublicAccessBlockConfiguration
|
1774
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>
|
1775
1789
|
#
|
1776
1790
|
# @example Request syntax with placeholder values
|
1777
1791
|
#
|
@@ -1791,6 +1805,10 @@ module Aws::S3Control
|
|
1791
1805
|
# resp.public_access_block_configuration.block_public_policy #=> Boolean
|
1792
1806
|
# resp.public_access_block_configuration.restrict_public_buckets #=> Boolean
|
1793
1807
|
# resp.creation_date #=> Time
|
1808
|
+
# resp.alias #=> String
|
1809
|
+
# resp.access_point_arn #=> String
|
1810
|
+
# resp.endpoints #=> Hash
|
1811
|
+
# resp.endpoints["NonEmptyMaxLength64String"] #=> String
|
1794
1812
|
#
|
1795
1813
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/GetAccessPoint AWS API Documentation
|
1796
1814
|
#
|
@@ -1932,8 +1950,9 @@ module Aws::S3Control
|
|
1932
1950
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
1933
1951
|
# you must specify the name and the x-amz-outpost-id as well.
|
1934
1952
|
#
|
1935
|
-
# For using this parameter with S3 on Outposts with the
|
1936
|
-
# 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
|
1937
1956
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>`.
|
1938
1957
|
# For example, to access the access point `reports-ap` through outpost
|
1939
1958
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -2086,12 +2105,12 @@ module Aws::S3Control
|
|
2086
2105
|
# Gets an Amazon S3 on Outposts bucket. For more information, see [
|
2087
2106
|
# Using Amazon S3 on Outposts][1] in the *Amazon S3 User Guide*.
|
2088
2107
|
#
|
2089
|
-
# If you are using an identity other than the root user of the
|
2090
|
-
#
|
2091
|
-
#
|
2092
|
-
#
|
2093
|
-
#
|
2094
|
-
#
|
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.
|
2095
2114
|
#
|
2096
2115
|
# If you don't have `s3-outposts:GetBucket` permissions or you're not
|
2097
2116
|
# using an identity that belongs to the bucket owner's account, Amazon
|
@@ -2123,7 +2142,7 @@ module Aws::S3Control
|
|
2123
2142
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteBucket.html
|
2124
2143
|
#
|
2125
2144
|
# @option params [required, String] :account_id
|
2126
|
-
# The
|
2145
|
+
# The account ID of the Outposts bucket.
|
2127
2146
|
#
|
2128
2147
|
# @option params [required, String] :bucket
|
2129
2148
|
# Specifies the bucket.
|
@@ -2131,8 +2150,9 @@ module Aws::S3Control
|
|
2131
2150
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
2132
2151
|
# you must specify the name and the x-amz-outpost-id as well.
|
2133
2152
|
#
|
2134
|
-
# For using this parameter with S3 on Outposts with the
|
2135
|
-
# 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
|
2136
2156
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
2137
2157
|
# For example, to access the bucket `reports` through outpost
|
2138
2158
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -2223,7 +2243,7 @@ module Aws::S3Control
|
|
2223
2243
|
# [8]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteBucketLifecycleConfiguration.html
|
2224
2244
|
#
|
2225
2245
|
# @option params [required, String] :account_id
|
2226
|
-
# The
|
2246
|
+
# The account ID of the Outposts bucket.
|
2227
2247
|
#
|
2228
2248
|
# @option params [required, String] :bucket
|
2229
2249
|
# The Amazon Resource Name (ARN) of the bucket.
|
@@ -2231,8 +2251,9 @@ module Aws::S3Control
|
|
2231
2251
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
2232
2252
|
# you must specify the name and the x-amz-outpost-id as well.
|
2233
2253
|
#
|
2234
|
-
# For using this parameter with S3 on Outposts with the
|
2235
|
-
# 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
|
2236
2257
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
2237
2258
|
# For example, to access the bucket `reports` through outpost
|
2238
2259
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -2295,8 +2316,8 @@ module Aws::S3Control
|
|
2295
2316
|
# information, see [Using Amazon S3 on Outposts][2] in the *Amazon S3
|
2296
2317
|
# User Guide*.
|
2297
2318
|
#
|
2298
|
-
# If you are using an identity other than the root user of the
|
2299
|
-
#
|
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
|
2300
2321
|
# `GetBucketPolicy` permissions on the specified bucket and belong to
|
2301
2322
|
# the bucket owner's account in order to use this action.
|
2302
2323
|
#
|
@@ -2306,7 +2327,7 @@ module Aws::S3Control
|
|
2306
2327
|
# identity that belongs to the bucket owner's account, Amazon S3
|
2307
2328
|
# returns a `403 Access Denied` error.
|
2308
2329
|
#
|
2309
|
-
# As a security precaution, the root user of the
|
2330
|
+
# As a security precaution, the root user of the account that owns a
|
2310
2331
|
# bucket can always use this action, even if the policy explicitly
|
2311
2332
|
# denies the root user the ability to perform this action.
|
2312
2333
|
#
|
@@ -2340,7 +2361,7 @@ module Aws::S3Control
|
|
2340
2361
|
# [7]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteBucketPolicy.html
|
2341
2362
|
#
|
2342
2363
|
# @option params [required, String] :account_id
|
2343
|
-
# The
|
2364
|
+
# The account ID of the Outposts bucket.
|
2344
2365
|
#
|
2345
2366
|
# @option params [required, String] :bucket
|
2346
2367
|
# Specifies the bucket.
|
@@ -2348,8 +2369,9 @@ module Aws::S3Control
|
|
2348
2369
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
2349
2370
|
# you must specify the name and the x-amz-outpost-id as well.
|
2350
2371
|
#
|
2351
|
-
# For using this parameter with S3 on Outposts with the
|
2352
|
-
# 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
|
2353
2375
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
2354
2376
|
# For example, to access the bucket `reports` through outpost
|
2355
2377
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -2426,7 +2448,7 @@ module Aws::S3Control
|
|
2426
2448
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteBucketTagging.html
|
2427
2449
|
#
|
2428
2450
|
# @option params [required, String] :account_id
|
2429
|
-
# The
|
2451
|
+
# The account ID of the Outposts bucket.
|
2430
2452
|
#
|
2431
2453
|
# @option params [required, String] :bucket
|
2432
2454
|
# Specifies the bucket.
|
@@ -2434,8 +2456,9 @@ module Aws::S3Control
|
|
2434
2456
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
2435
2457
|
# you must specify the name and the x-amz-outpost-id as well.
|
2436
2458
|
#
|
2437
|
-
# For using this parameter with S3 on Outposts with the
|
2438
|
-
# 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
|
2439
2462
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
2440
2463
|
# For example, to access the bucket `reports` through outpost
|
2441
2464
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -2492,7 +2515,7 @@ module Aws::S3Control
|
|
2492
2515
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteJobTagging.html
|
2493
2516
|
#
|
2494
2517
|
# @option params [required, String] :account_id
|
2495
|
-
# The
|
2518
|
+
# The account ID associated with the S3 Batch Operations job.
|
2496
2519
|
#
|
2497
2520
|
# @option params [required, String] :job_id
|
2498
2521
|
# The ID for the S3 Batch Operations job whose tags you want to
|
@@ -2524,8 +2547,8 @@ module Aws::S3Control
|
|
2524
2547
|
req.send_request(options)
|
2525
2548
|
end
|
2526
2549
|
|
2527
|
-
# Retrieves the `PublicAccessBlock` configuration for an
|
2528
|
-
#
|
2550
|
+
# Retrieves the `PublicAccessBlock` configuration for an account. For
|
2551
|
+
# more information, see [ Using Amazon S3 block public access][1].
|
2529
2552
|
#
|
2530
2553
|
# Related actions include:
|
2531
2554
|
#
|
@@ -2540,8 +2563,8 @@ module Aws::S3Control
|
|
2540
2563
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutPublicAccessBlock.html
|
2541
2564
|
#
|
2542
2565
|
# @option params [required, String] :account_id
|
2543
|
-
# The account ID for the
|
2544
|
-
#
|
2566
|
+
# The account ID for the account whose `PublicAccessBlock` configuration
|
2567
|
+
# you want to retrieve.
|
2545
2568
|
#
|
2546
2569
|
# @return [Types::GetPublicAccessBlockOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2547
2570
|
#
|
@@ -2720,8 +2743,8 @@ module Aws::S3Control
|
|
2720
2743
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetAccessPoint.html
|
2721
2744
|
#
|
2722
2745
|
# @option params [required, String] :account_id
|
2723
|
-
# The
|
2724
|
-
#
|
2746
|
+
# The account ID for owner of the bucket whose access points you want to
|
2747
|
+
# list.
|
2725
2748
|
#
|
2726
2749
|
# @option params [String] :bucket
|
2727
2750
|
# The name of the bucket whose associated access points you want to
|
@@ -2730,8 +2753,9 @@ module Aws::S3Control
|
|
2730
2753
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
2731
2754
|
# you must specify the name and the x-amz-outpost-id as well.
|
2732
2755
|
#
|
2733
|
-
# For using this parameter with S3 on Outposts with the
|
2734
|
-
# 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
|
2735
2759
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
2736
2760
|
# For example, to access the bucket `reports` through outpost
|
2737
2761
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -2775,6 +2799,7 @@ module Aws::S3Control
|
|
2775
2799
|
# resp.access_point_list[0].vpc_configuration.vpc_id #=> String
|
2776
2800
|
# resp.access_point_list[0].bucket #=> String
|
2777
2801
|
# resp.access_point_list[0].access_point_arn #=> String
|
2802
|
+
# resp.access_point_list[0].alias #=> String
|
2778
2803
|
# resp.next_token #=> String
|
2779
2804
|
#
|
2780
2805
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/ListAccessPoints AWS API Documentation
|
@@ -2856,7 +2881,7 @@ module Aws::S3Control
|
|
2856
2881
|
end
|
2857
2882
|
|
2858
2883
|
# Lists current S3 Batch Operations jobs and jobs that have ended within
|
2859
|
-
# the last 30 days for the
|
2884
|
+
# the last 30 days for the account making the request. For more
|
2860
2885
|
# information, see [S3 Batch Operations][1] in the *Amazon S3 User
|
2861
2886
|
# Guide*.
|
2862
2887
|
#
|
@@ -2881,7 +2906,7 @@ module Aws::S3Control
|
|
2881
2906
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_UpdateJobStatus.html
|
2882
2907
|
#
|
2883
2908
|
# @option params [required, String] :account_id
|
2884
|
-
# The
|
2909
|
+
# The account ID associated with the S3 Batch Operations job.
|
2885
2910
|
#
|
2886
2911
|
# @option params [Array<String>] :job_statuses
|
2887
2912
|
# The `List Jobs` request returns jobs that match the statuses listed in
|
@@ -2952,14 +2977,14 @@ module Aws::S3Control
|
|
2952
2977
|
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_ListRegionalBuckets.html#API_control_ListRegionalBuckets_Examples
|
2953
2978
|
#
|
2954
2979
|
# @option params [required, String] :account_id
|
2955
|
-
# The
|
2980
|
+
# The account ID of the Outposts bucket.
|
2956
2981
|
#
|
2957
2982
|
# @option params [String] :next_token
|
2958
2983
|
#
|
2959
2984
|
# @option params [Integer] :max_results
|
2960
2985
|
#
|
2961
2986
|
# @option params [String] :outpost_id
|
2962
|
-
# The ID of the
|
2987
|
+
# The ID of the Outposts.
|
2963
2988
|
#
|
2964
2989
|
# <note markdown="1"> This is required by Amazon S3 on Outposts buckets.
|
2965
2990
|
#
|
@@ -3140,8 +3165,8 @@ module Aws::S3Control
|
|
3140
3165
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteAccessPointPolicy.html
|
3141
3166
|
#
|
3142
3167
|
# @option params [required, String] :account_id
|
3143
|
-
# The
|
3144
|
-
#
|
3168
|
+
# The account ID for owner of the bucket associated with the specified
|
3169
|
+
# access point.
|
3145
3170
|
#
|
3146
3171
|
# @option params [required, String] :name
|
3147
3172
|
# The name of the access point that you want to associate with the
|
@@ -3150,8 +3175,9 @@ module Aws::S3Control
|
|
3150
3175
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
3151
3176
|
# you must specify the name and the x-amz-outpost-id as well.
|
3152
3177
|
#
|
3153
|
-
# For using this parameter with S3 on Outposts with the
|
3154
|
-
# 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
|
3155
3181
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>`.
|
3156
3182
|
# For example, to access the access point `reports-ap` through outpost
|
3157
3183
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -3269,7 +3295,7 @@ module Aws::S3Control
|
|
3269
3295
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteBucketLifecycleConfiguration.html
|
3270
3296
|
#
|
3271
3297
|
# @option params [required, String] :account_id
|
3272
|
-
# The
|
3298
|
+
# The account ID of the Outposts bucket.
|
3273
3299
|
#
|
3274
3300
|
# @option params [required, String] :bucket
|
3275
3301
|
# The name of the bucket for which to set the configuration.
|
@@ -3353,9 +3379,9 @@ module Aws::S3Control
|
|
3353
3379
|
# information, see [Using Amazon S3 on Outposts][2] in the *Amazon S3
|
3354
3380
|
# User Guide*.
|
3355
3381
|
#
|
3356
|
-
# If you are using an identity other than the root user of the
|
3357
|
-
#
|
3358
|
-
#
|
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
|
3359
3385
|
# belong to the bucket owner's account in order to use this action.
|
3360
3386
|
#
|
3361
3387
|
# If you don't have `PutBucketPolicy` permissions, Amazon S3 returns a
|
@@ -3363,7 +3389,7 @@ module Aws::S3Control
|
|
3363
3389
|
# you're not using an identity that belongs to the bucket owner's
|
3364
3390
|
# account, Amazon S3 returns a `405 Method Not Allowed` error.
|
3365
3391
|
#
|
3366
|
-
# As a security precaution, the root user of the
|
3392
|
+
# As a security precaution, the root user of the account that owns a
|
3367
3393
|
# bucket can always use this action, even if the policy explicitly
|
3368
3394
|
# denies the root user the ability to perform this action.
|
3369
3395
|
#
|
@@ -3394,7 +3420,7 @@ module Aws::S3Control
|
|
3394
3420
|
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteBucketPolicy.html
|
3395
3421
|
#
|
3396
3422
|
# @option params [required, String] :account_id
|
3397
|
-
# The
|
3423
|
+
# The account ID of the Outposts bucket.
|
3398
3424
|
#
|
3399
3425
|
# @option params [required, String] :bucket
|
3400
3426
|
# Specifies the bucket.
|
@@ -3402,8 +3428,9 @@ module Aws::S3Control
|
|
3402
3428
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
3403
3429
|
# you must specify the name and the x-amz-outpost-id as well.
|
3404
3430
|
#
|
3405
|
-
# For using this parameter with S3 on Outposts with the
|
3406
|
-
# 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
|
3407
3434
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
3408
3435
|
# For example, to access the bucket `reports` through outpost
|
3409
3436
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -3451,14 +3478,14 @@ module Aws::S3Control
|
|
3451
3478
|
# Sets the tags for an S3 on Outposts bucket. For more information, see
|
3452
3479
|
# [Using Amazon S3 on Outposts][2] in the *Amazon S3 User Guide*.
|
3453
3480
|
#
|
3454
|
-
# Use tags to organize your
|
3455
|
-
# To do this, sign up to get your
|
3456
|
-
# included. Then, to see the cost of combined resources,
|
3457
|
-
# billing information according to resources with the same
|
3458
|
-
# values. For example, you can tag several resources with a
|
3459
|
-
# application name, and then organize your billing information
|
3460
|
-
# the total cost of that application across several services. For
|
3461
|
-
# 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].
|
3462
3489
|
#
|
3463
3490
|
# <note markdown="1"> Within a bucket, if you add a tag that has the same key as an existing
|
3464
3491
|
# tag, the new value overwrites the old value. For more information, see
|
@@ -3480,7 +3507,8 @@ module Aws::S3Control
|
|
3480
3507
|
# * Description: The tag provided was not a valid tag. This error can
|
3481
3508
|
# occur if the tag did not pass input validation. For information
|
3482
3509
|
# about tag restrictions, see [ User-Defined Tag Restrictions][7]
|
3483
|
-
# and [
|
3510
|
+
# and [ Amazon Web Services-Generated Cost Allocation Tag
|
3511
|
+
# Restrictions][8].
|
3484
3512
|
#
|
3485
3513
|
# ^
|
3486
3514
|
#
|
@@ -3533,7 +3561,7 @@ module Aws::S3Control
|
|
3533
3561
|
# [11]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteBucketTagging.html
|
3534
3562
|
#
|
3535
3563
|
# @option params [required, String] :account_id
|
3536
|
-
# The
|
3564
|
+
# The account ID of the Outposts bucket.
|
3537
3565
|
#
|
3538
3566
|
# @option params [required, String] :bucket
|
3539
3567
|
# The Amazon Resource Name (ARN) of the bucket.
|
@@ -3541,8 +3569,9 @@ module Aws::S3Control
|
|
3541
3569
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
3542
3570
|
# you must specify the name and the x-amz-outpost-id as well.
|
3543
3571
|
#
|
3544
|
-
# For using this parameter with S3 on Outposts with the
|
3545
|
-
# 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
|
3546
3575
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
3547
3576
|
# For example, to access the bucket `reports` through outpost
|
3548
3577
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -3614,8 +3643,8 @@ module Aws::S3Control
|
|
3614
3643
|
# * The key and values are case sensitive.
|
3615
3644
|
#
|
3616
3645
|
# * For tagging-related restrictions related to characters and
|
3617
|
-
# encodings, see [User-Defined Tag Restrictions][5] in the *
|
3618
|
-
#
|
3646
|
+
# encodings, see [User-Defined Tag Restrictions][5] in the *Billing
|
3647
|
+
# and Cost Management User Guide*.
|
3619
3648
|
#
|
3620
3649
|
# </note>
|
3621
3650
|
#
|
@@ -3642,7 +3671,7 @@ module Aws::S3Control
|
|
3642
3671
|
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_CreateJob.html
|
3643
3672
|
#
|
3644
3673
|
# @option params [required, String] :account_id
|
3645
|
-
# The
|
3674
|
+
# The account ID associated with the S3 Batch Operations job.
|
3646
3675
|
#
|
3647
3676
|
# @option params [required, String] :job_id
|
3648
3677
|
# The ID for the S3 Batch Operations job whose tags you want to replace.
|
@@ -3674,7 +3703,7 @@ module Aws::S3Control
|
|
3674
3703
|
req.send_request(options)
|
3675
3704
|
end
|
3676
3705
|
|
3677
|
-
# Creates or modifies the `PublicAccessBlock` configuration for an
|
3706
|
+
# Creates or modifies the `PublicAccessBlock` configuration for an
|
3678
3707
|
# account. For more information, see [ Using Amazon S3 block public
|
3679
3708
|
# access][1].
|
3680
3709
|
#
|
@@ -3692,11 +3721,11 @@ module Aws::S3Control
|
|
3692
3721
|
#
|
3693
3722
|
# @option params [required, Types::PublicAccessBlockConfiguration] :public_access_block_configuration
|
3694
3723
|
# The `PublicAccessBlock` configuration that you want to apply to the
|
3695
|
-
# specified
|
3724
|
+
# specified account.
|
3696
3725
|
#
|
3697
3726
|
# @option params [required, String] :account_id
|
3698
|
-
# The account ID for the
|
3699
|
-
#
|
3727
|
+
# The account ID for the account whose `PublicAccessBlock` configuration
|
3728
|
+
# you want to set.
|
3700
3729
|
#
|
3701
3730
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
3702
3731
|
#
|
@@ -3908,7 +3937,7 @@ module Aws::S3Control
|
|
3908
3937
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_UpdateJobStatus.html
|
3909
3938
|
#
|
3910
3939
|
# @option params [required, String] :account_id
|
3911
|
-
# The
|
3940
|
+
# The account ID associated with the S3 Batch Operations job.
|
3912
3941
|
#
|
3913
3942
|
# @option params [required, String] :job_id
|
3914
3943
|
# The ID for the job whose priority you want to update.
|
@@ -3969,7 +3998,7 @@ module Aws::S3Control
|
|
3969
3998
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_UpdateJobStatus.html
|
3970
3999
|
#
|
3971
4000
|
# @option params [required, String] :account_id
|
3972
|
-
# The
|
4001
|
+
# The account ID associated with the S3 Batch Operations job.
|
3973
4002
|
#
|
3974
4003
|
# @option params [required, String] :job_id
|
3975
4004
|
# The ID of the job whose status you want to update.
|
@@ -4024,7 +4053,7 @@ module Aws::S3Control
|
|
4024
4053
|
params: params,
|
4025
4054
|
config: config)
|
4026
4055
|
context[:gem_name] = 'aws-sdk-s3control'
|
4027
|
-
context[:gem_version] = '1.
|
4056
|
+
context[:gem_version] = '1.37.0'
|
4028
4057
|
Seahorse::Client::Request.new(handlers, context)
|
4029
4058
|
end
|
4030
4059
|
|