aws-sdk-s3control 1.32.0 → 1.36.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 +200 -185
- data/lib/aws-sdk-s3control/client_api.rb +11 -0
- data/lib/aws-sdk-s3control/types.rb +177 -117
- metadata +3 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: af636287f48ee79c15c5758a133751b8fbb4fc0b3821294d215f21f4c7a03f7e
|
4
|
+
data.tar.gz: cf8cc1f1604eaa67af6088e5f14e4b08875cf98f341ba1743127c5af96b634ad
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a7504a2d34d54f7ab4930b4e5cd6578a8429a83483f0086d7f906450ed608ec2b3ae9b9029ddfd027bff76afa7bf8495bdabc28e994ad978fe77ae4226ed68fb
|
7
|
+
data.tar.gz: c61ec86f82259e8859bcca0168719c33db3ec3d86927b09eb8d1c401a1a9b9d0eb8e4c877a3cc6d035b65c86abc8a20307e266e3104af61803efbdeffa17372d
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.36.0 (2021-07-26)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - S3 Access Point aliases can be used anywhere you use S3 bucket names to access data in S3
|
8
|
+
|
9
|
+
1.35.0 (2021-07-22)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Documentation updates for Amazon S3-control
|
13
|
+
|
14
|
+
1.34.0 (2021-06-03)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Amazon S3 Batch Operations now supports S3 Bucket Keys.
|
18
|
+
|
19
|
+
1.33.0 (2021-05-11)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Documentation updates for Amazon S3-control
|
23
|
+
|
4
24
|
1.32.0 (2021-03-24)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.36.0
|
data/lib/aws-sdk-s3control.rb
CHANGED
@@ -345,15 +345,15 @@ module Aws::S3Control
|
|
345
345
|
|
346
346
|
# Creates an access point and associates it with the specified bucket.
|
347
347
|
# For more information, see [Managing Data Access with Amazon S3 Access
|
348
|
-
# Points][1] in the *Amazon
|
348
|
+
# Points][1] in the *Amazon S3 User Guide*.
|
349
349
|
#
|
350
350
|
#
|
351
351
|
#
|
352
|
-
# <note markdown="1"> S3 on Outposts only supports VPC-style
|
352
|
+
# <note markdown="1"> S3 on Outposts only supports VPC-style access points.
|
353
353
|
#
|
354
354
|
# For more information, see [ Accessing Amazon S3 on Outposts using
|
355
|
-
# virtual private cloud (VPC) only
|
356
|
-
#
|
355
|
+
# virtual private cloud (VPC) only access points][2] in the *Amazon S3
|
356
|
+
# User Guide*.
|
357
357
|
#
|
358
358
|
# </note>
|
359
359
|
#
|
@@ -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
|
#
|
@@ -456,7 +459,7 @@ module Aws::S3Control
|
|
456
459
|
|
457
460
|
# Creates an Object Lambda Access Point. For more information, see
|
458
461
|
# [Transforming objects with Object Lambda Access Points][1] in the
|
459
|
-
# *Amazon
|
462
|
+
# *Amazon S3 User Guide*.
|
460
463
|
#
|
461
464
|
# The following actions are related to
|
462
465
|
# `CreateAccessPointForObjectLambda`\:
|
@@ -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.
|
@@ -525,15 +527,14 @@ module Aws::S3Control
|
|
525
527
|
end
|
526
528
|
|
527
529
|
# <note markdown="1"> This action creates an Amazon S3 on Outposts bucket. To create an S3
|
528
|
-
# bucket, see [Create Bucket][1] in the *Amazon
|
529
|
-
# API*.
|
530
|
+
# bucket, see [Create Bucket][1] in the *Amazon S3 API Reference*.
|
530
531
|
#
|
531
532
|
# </note>
|
532
533
|
#
|
533
534
|
# Creates a new Outposts bucket. By creating the bucket, you become the
|
534
535
|
# bucket owner. To create an Outposts bucket, you must have S3 on
|
535
536
|
# Outposts. For more information, see [Using Amazon S3 on Outposts][2]
|
536
|
-
# in *Amazon
|
537
|
+
# in *Amazon S3 User Guide*.
|
537
538
|
#
|
538
539
|
# Not every string is an acceptable bucket name. For information on
|
539
540
|
# bucket naming restrictions, see [Working with Amazon S3 Buckets][3].
|
@@ -686,8 +687,7 @@ module Aws::S3Control
|
|
686
687
|
# You can use S3 Batch Operations to perform large-scale batch actions
|
687
688
|
# on Amazon S3 objects. Batch Operations can run a single action on
|
688
689
|
# lists of Amazon S3 objects that you specify. For more information, see
|
689
|
-
# [S3 Batch Operations][1] in the *Amazon
|
690
|
-
# Guide*.
|
690
|
+
# [S3 Batch Operations][1] in the *Amazon S3 User Guide*.
|
691
691
|
#
|
692
692
|
# This action creates a S3 Batch Operations job.
|
693
693
|
#
|
@@ -715,7 +715,7 @@ module Aws::S3Control
|
|
715
715
|
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_JobOperation.html
|
716
716
|
#
|
717
717
|
# @option params [required, String] :account_id
|
718
|
-
# The
|
718
|
+
# The account ID that creates the job.
|
719
719
|
#
|
720
720
|
# @option params [Boolean] :confirmation_required
|
721
721
|
# Indicates whether confirmation is required before Amazon S3 runs the
|
@@ -725,7 +725,7 @@ module Aws::S3Control
|
|
725
725
|
# @option params [required, Types::JobOperation] :operation
|
726
726
|
# The action that you want this job to perform on every object listed in
|
727
727
|
# the manifest. For more information about the available actions, see
|
728
|
-
# [Operations][1] in the *Amazon
|
728
|
+
# [Operations][1] in the *Amazon S3 User Guide*.
|
729
729
|
#
|
730
730
|
#
|
731
731
|
#
|
@@ -754,9 +754,9 @@ module Aws::S3Control
|
|
754
754
|
# priority.
|
755
755
|
#
|
756
756
|
# @option params [required, String] :role_arn
|
757
|
-
# The Amazon Resource Name (ARN) for the
|
758
|
-
#
|
759
|
-
#
|
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.
|
760
760
|
#
|
761
761
|
# @option params [Array<Types::S3Tag>] :tags
|
762
762
|
# A set of tags to associate with the S3 Batch Operations job. This is
|
@@ -820,6 +820,7 @@ module Aws::S3Control
|
|
820
820
|
# object_lock_legal_hold_status: "OFF", # accepts OFF, ON
|
821
821
|
# object_lock_mode: "COMPLIANCE", # accepts COMPLIANCE, GOVERNANCE
|
822
822
|
# object_lock_retain_until_date: Time.now,
|
823
|
+
# bucket_key_enabled: false,
|
823
824
|
# },
|
824
825
|
# s3_put_object_acl: {
|
825
826
|
# access_control_policy: {
|
@@ -946,8 +947,9 @@ module Aws::S3Control
|
|
946
947
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
947
948
|
# you must specify the name and the x-amz-outpost-id as well.
|
948
949
|
#
|
949
|
-
# For using this parameter with S3 on Outposts with the
|
950
|
-
# 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
|
951
953
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>`.
|
952
954
|
# For example, to access the access point `reports-ap` through outpost
|
953
955
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -1048,8 +1050,9 @@ module Aws::S3Control
|
|
1048
1050
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
1049
1051
|
# you must specify the name and the x-amz-outpost-id as well.
|
1050
1052
|
#
|
1051
|
-
# For using this parameter with S3 on Outposts with the
|
1052
|
-
# 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
|
1053
1056
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>`.
|
1054
1057
|
# For example, to access the access point `reports-ap` through outpost
|
1055
1058
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -1116,16 +1119,14 @@ module Aws::S3Control
|
|
1116
1119
|
end
|
1117
1120
|
|
1118
1121
|
# <note markdown="1"> This action deletes an Amazon S3 on Outposts bucket. To delete an S3
|
1119
|
-
# bucket, see [DeleteBucket][1] in the *Amazon
|
1120
|
-
# API*.
|
1122
|
+
# bucket, see [DeleteBucket][1] in the *Amazon S3 API Reference*.
|
1121
1123
|
#
|
1122
1124
|
# </note>
|
1123
1125
|
#
|
1124
1126
|
# Deletes the Amazon S3 on Outposts bucket. All objects (including all
|
1125
1127
|
# object versions and delete markers) in the bucket must be deleted
|
1126
1128
|
# before the bucket itself can be deleted. For more information, see
|
1127
|
-
# [Using Amazon S3 on Outposts][2] in *Amazon
|
1128
|
-
# User Guide*.
|
1129
|
+
# [Using Amazon S3 on Outposts][2] in *Amazon S3 User Guide*.
|
1129
1130
|
#
|
1130
1131
|
# All Amazon S3 on Outposts REST API requests for this action require an
|
1131
1132
|
# additional parameter of `x-amz-outpost-id` to be passed with the
|
@@ -1161,8 +1162,9 @@ module Aws::S3Control
|
|
1161
1162
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
1162
1163
|
# you must specify the name and the x-amz-outpost-id as well.
|
1163
1164
|
#
|
1164
|
-
# For using this parameter with S3 on Outposts with the
|
1165
|
-
# 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
|
1166
1168
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
1167
1169
|
# For example, to access the bucket `reports` through outpost
|
1168
1170
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -1190,7 +1192,7 @@ module Aws::S3Control
|
|
1190
1192
|
|
1191
1193
|
# <note markdown="1"> This action deletes an Amazon S3 on Outposts bucket's lifecycle
|
1192
1194
|
# configuration. To delete an S3 bucket's lifecycle configuration, see
|
1193
|
-
# [DeleteBucketLifecycle][1] in the *Amazon
|
1195
|
+
# [DeleteBucketLifecycle][1] in the *Amazon S3 API Reference*.
|
1194
1196
|
#
|
1195
1197
|
# </note>
|
1196
1198
|
#
|
@@ -1200,8 +1202,7 @@ module Aws::S3Control
|
|
1200
1202
|
# objects never expire, and Amazon S3 on Outposts no longer
|
1201
1203
|
# automatically deletes any objects on the basis of rules contained in
|
1202
1204
|
# the deleted lifecycle configuration. For more information, see [Using
|
1203
|
-
# Amazon S3 on Outposts][2] in *Amazon
|
1204
|
-
# Guide*.
|
1205
|
+
# Amazon S3 on Outposts][2] in *Amazon S3 User Guide*.
|
1205
1206
|
#
|
1206
1207
|
# To use this action, you must have permission to perform the
|
1207
1208
|
# `s3-outposts:DeleteLifecycleConfiguration` action. By default, the
|
@@ -1243,8 +1244,9 @@ module Aws::S3Control
|
|
1243
1244
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
1244
1245
|
# you must specify the name and the x-amz-outpost-id as well.
|
1245
1246
|
#
|
1246
|
-
# For using this parameter with S3 on Outposts with the
|
1247
|
-
# 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
|
1248
1250
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
1249
1251
|
# For example, to access the bucket `reports` through outpost
|
1250
1252
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -1271,26 +1273,26 @@ module Aws::S3Control
|
|
1271
1273
|
end
|
1272
1274
|
|
1273
1275
|
# <note markdown="1"> This action deletes an Amazon S3 on Outposts bucket policy. To delete
|
1274
|
-
# an S3 bucket policy, see [DeleteBucketPolicy][1] in the *Amazon
|
1275
|
-
#
|
1276
|
+
# an S3 bucket policy, see [DeleteBucketPolicy][1] in the *Amazon S3 API
|
1277
|
+
# Reference*.
|
1276
1278
|
#
|
1277
1279
|
# </note>
|
1278
1280
|
#
|
1279
1281
|
# This implementation of the DELETE action uses the policy subresource
|
1280
1282
|
# to delete the policy of a specified Amazon S3 on Outposts bucket. If
|
1281
|
-
# you are using an identity other than the root user of the
|
1282
|
-
#
|
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
|
1283
1285
|
# `s3-outposts:DeleteBucketPolicy` permissions on the specified Outposts
|
1284
1286
|
# bucket and belong to the bucket owner's account to use this action.
|
1285
1287
|
# For more information, see [Using Amazon S3 on Outposts][2] in *Amazon
|
1286
|
-
#
|
1288
|
+
# S3 User Guide*.
|
1287
1289
|
#
|
1288
1290
|
# If you don't have `DeleteBucketPolicy` permissions, Amazon S3 returns
|
1289
1291
|
# a `403 Access Denied` error. If you have the correct permissions, but
|
1290
1292
|
# you're not using an identity that belongs to the bucket owner's
|
1291
1293
|
# account, Amazon S3 returns a `405 Method Not Allowed` error.
|
1292
1294
|
#
|
1293
|
-
# As a security precaution, the root user of the
|
1295
|
+
# As a security precaution, the root user of the account that owns a
|
1294
1296
|
# bucket can always use this action, even if the policy explicitly
|
1295
1297
|
# denies the root user the ability to perform this action.
|
1296
1298
|
#
|
@@ -1329,8 +1331,9 @@ module Aws::S3Control
|
|
1329
1331
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
1330
1332
|
# you must specify the name and the x-amz-outpost-id as well.
|
1331
1333
|
#
|
1332
|
-
# For using this parameter with S3 on Outposts with the
|
1333
|
-
# 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
|
1334
1337
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
1335
1338
|
# For example, to access the bucket `reports` through outpost
|
1336
1339
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -1357,14 +1360,13 @@ module Aws::S3Control
|
|
1357
1360
|
end
|
1358
1361
|
|
1359
1362
|
# <note markdown="1"> This action deletes an Amazon S3 on Outposts bucket's tags. To delete
|
1360
|
-
# an S3 bucket tags, see [DeleteBucketTagging][1] in the *Amazon
|
1361
|
-
#
|
1363
|
+
# an S3 bucket tags, see [DeleteBucketTagging][1] in the *Amazon S3 API
|
1364
|
+
# Reference*.
|
1362
1365
|
#
|
1363
1366
|
# </note>
|
1364
1367
|
#
|
1365
1368
|
# Deletes the tags from the Outposts bucket. For more information, see
|
1366
|
-
# [Using Amazon S3 on Outposts][2] in *Amazon
|
1367
|
-
# User Guide*.
|
1369
|
+
# [Using Amazon S3 on Outposts][2] in *Amazon S3 User Guide*.
|
1368
1370
|
#
|
1369
1371
|
# To use this action, you must have permission to perform the
|
1370
1372
|
# `PutBucketTagging` action. By default, the bucket owner has this
|
@@ -1393,7 +1395,7 @@ module Aws::S3Control
|
|
1393
1395
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutBucketTagging.html
|
1394
1396
|
#
|
1395
1397
|
# @option params [required, String] :account_id
|
1396
|
-
# The
|
1398
|
+
# The account ID of the Outposts bucket tag set to be removed.
|
1397
1399
|
#
|
1398
1400
|
# @option params [required, String] :bucket
|
1399
1401
|
# The bucket ARN that has the tag set to be removed.
|
@@ -1401,8 +1403,9 @@ module Aws::S3Control
|
|
1401
1403
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
1402
1404
|
# you must specify the name and the x-amz-outpost-id as well.
|
1403
1405
|
#
|
1404
|
-
# For using this parameter with S3 on Outposts with the
|
1405
|
-
# 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
|
1406
1409
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
1407
1410
|
# For example, to access the bucket `reports` through outpost
|
1408
1411
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -1431,8 +1434,7 @@ module Aws::S3Control
|
|
1431
1434
|
# Removes the entire tag set from the specified S3 Batch Operations job.
|
1432
1435
|
# To use this operation, you must have permission to perform the
|
1433
1436
|
# `s3:DeleteJobTagging` action. For more information, see [Controlling
|
1434
|
-
# access and labeling jobs using tags][1] in the *Amazon
|
1435
|
-
# Service User Guide*.
|
1437
|
+
# access and labeling jobs using tags][1] in the *Amazon S3 User Guide*.
|
1436
1438
|
#
|
1437
1439
|
#
|
1438
1440
|
#
|
@@ -1452,7 +1454,7 @@ module Aws::S3Control
|
|
1452
1454
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutJobTagging.html
|
1453
1455
|
#
|
1454
1456
|
# @option params [required, String] :account_id
|
1455
|
-
# The
|
1457
|
+
# The account ID associated with the S3 Batch Operations job.
|
1456
1458
|
#
|
1457
1459
|
# @option params [required, String] :job_id
|
1458
1460
|
# The ID for the S3 Batch Operations job whose tags you want to delete.
|
@@ -1475,8 +1477,8 @@ module Aws::S3Control
|
|
1475
1477
|
req.send_request(options)
|
1476
1478
|
end
|
1477
1479
|
|
1478
|
-
# Removes the `PublicAccessBlock` configuration for an
|
1479
|
-
#
|
1480
|
+
# Removes the `PublicAccessBlock` configuration for an account. For more
|
1481
|
+
# information, see [ Using Amazon S3 block public access][1].
|
1480
1482
|
#
|
1481
1483
|
# Related actions include:
|
1482
1484
|
#
|
@@ -1491,8 +1493,8 @@ module Aws::S3Control
|
|
1491
1493
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutPublicAccessBlock.html
|
1492
1494
|
#
|
1493
1495
|
# @option params [required, String] :account_id
|
1494
|
-
# The account ID for the
|
1495
|
-
#
|
1496
|
+
# The account ID for the account whose `PublicAccessBlock` configuration
|
1497
|
+
# you want to remove.
|
1496
1498
|
#
|
1497
1499
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1498
1500
|
#
|
@@ -1513,13 +1515,12 @@ module Aws::S3Control
|
|
1513
1515
|
|
1514
1516
|
# Deletes the Amazon S3 Storage Lens configuration. For more information
|
1515
1517
|
# about S3 Storage Lens, see [Assessing your storage activity and usage
|
1516
|
-
# with Amazon S3 Storage Lens ][1] in the *Amazon
|
1517
|
-
# User Guide*.
|
1518
|
+
# with Amazon S3 Storage Lens ][1] in the *Amazon S3 User Guide*.
|
1518
1519
|
#
|
1519
1520
|
# <note markdown="1"> To use this action, you must have permission to perform the
|
1520
1521
|
# `s3:DeleteStorageLensConfiguration` action. For more information, see
|
1521
1522
|
# [Setting permissions to use Amazon S3 Storage Lens][2] in the *Amazon
|
1522
|
-
#
|
1523
|
+
# S3 User Guide*.
|
1523
1524
|
#
|
1524
1525
|
# </note>
|
1525
1526
|
#
|
@@ -1554,13 +1555,13 @@ module Aws::S3Control
|
|
1554
1555
|
|
1555
1556
|
# Deletes the Amazon S3 Storage Lens configuration tags. For more
|
1556
1557
|
# information about S3 Storage Lens, see [Assessing your storage
|
1557
|
-
# activity and usage with Amazon S3 Storage Lens ][1] in the *Amazon
|
1558
|
-
#
|
1558
|
+
# activity and usage with Amazon S3 Storage Lens ][1] in the *Amazon S3
|
1559
|
+
# User Guide*.
|
1559
1560
|
#
|
1560
1561
|
# <note markdown="1"> To use this action, you must have permission to perform the
|
1561
1562
|
# `s3:DeleteStorageLensConfigurationTagging` action. For more
|
1562
1563
|
# information, see [Setting permissions to use Amazon S3 Storage
|
1563
|
-
# Lens][2] in the *Amazon
|
1564
|
+
# Lens][2] in the *Amazon S3 User Guide*.
|
1564
1565
|
#
|
1565
1566
|
# </note>
|
1566
1567
|
#
|
@@ -1595,7 +1596,7 @@ module Aws::S3Control
|
|
1595
1596
|
|
1596
1597
|
# Retrieves the configuration parameters and status for a Batch
|
1597
1598
|
# Operations job. For more information, see [S3 Batch Operations][1] in
|
1598
|
-
# the *Amazon
|
1599
|
+
# the *Amazon S3 User Guide*.
|
1599
1600
|
#
|
1600
1601
|
#
|
1601
1602
|
#
|
@@ -1618,7 +1619,7 @@ module Aws::S3Control
|
|
1618
1619
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_UpdateJobStatus.html
|
1619
1620
|
#
|
1620
1621
|
# @option params [required, String] :account_id
|
1621
|
-
# The
|
1622
|
+
# The account ID associated with the S3 Batch Operations job.
|
1622
1623
|
#
|
1623
1624
|
# @option params [required, String] :job_id
|
1624
1625
|
# The ID for the job whose information you want to retrieve.
|
@@ -1681,6 +1682,7 @@ module Aws::S3Control
|
|
1681
1682
|
# resp.job.operation.s3_put_object_copy.object_lock_legal_hold_status #=> String, one of "OFF", "ON"
|
1682
1683
|
# resp.job.operation.s3_put_object_copy.object_lock_mode #=> String, one of "COMPLIANCE", "GOVERNANCE"
|
1683
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
|
1684
1686
|
# resp.job.operation.s3_put_object_acl.access_control_policy.access_control_list.owner.id #=> String
|
1685
1687
|
# resp.job.operation.s3_put_object_acl.access_control_policy.access_control_list.owner.display_name #=> String
|
1686
1688
|
# resp.job.operation.s3_put_object_acl.access_control_policy.access_control_list.grants #=> Array
|
@@ -1763,8 +1765,9 @@ module Aws::S3Control
|
|
1763
1765
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
1764
1766
|
# you must specify the name and the x-amz-outpost-id as well.
|
1765
1767
|
#
|
1766
|
-
# For using this parameter with S3 on Outposts with the
|
1767
|
-
# 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
|
1768
1771
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>`.
|
1769
1772
|
# For example, to access the access point `reports-ap` through outpost
|
1770
1773
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -1780,6 +1783,9 @@ module Aws::S3Control
|
|
1780
1783
|
# * {Types::GetAccessPointResult#vpc_configuration #vpc_configuration} => Types::VpcConfiguration
|
1781
1784
|
# * {Types::GetAccessPointResult#public_access_block_configuration #public_access_block_configuration} => Types::PublicAccessBlockConfiguration
|
1782
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>
|
1783
1789
|
#
|
1784
1790
|
# @example Request syntax with placeholder values
|
1785
1791
|
#
|
@@ -1799,6 +1805,10 @@ module Aws::S3Control
|
|
1799
1805
|
# resp.public_access_block_configuration.block_public_policy #=> Boolean
|
1800
1806
|
# resp.public_access_block_configuration.restrict_public_buckets #=> Boolean
|
1801
1807
|
# resp.creation_date #=> Time
|
1808
|
+
# resp.alias #=> String
|
1809
|
+
# resp.access_point_arn #=> String
|
1810
|
+
# resp.endpoints #=> Hash
|
1811
|
+
# resp.endpoints["NonEmptyMaxLength64String"] #=> String
|
1802
1812
|
#
|
1803
1813
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/GetAccessPoint AWS API Documentation
|
1804
1814
|
#
|
@@ -1940,8 +1950,9 @@ module Aws::S3Control
|
|
1940
1950
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
1941
1951
|
# you must specify the name and the x-amz-outpost-id as well.
|
1942
1952
|
#
|
1943
|
-
# For using this parameter with S3 on Outposts with the
|
1944
|
-
# 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
|
1945
1956
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>`.
|
1946
1957
|
# For example, to access the access point `reports-ap` through outpost
|
1947
1958
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -2020,8 +2031,8 @@ module Aws::S3Control
|
|
2020
2031
|
|
2021
2032
|
# Indicates whether the specified access point currently has a policy
|
2022
2033
|
# that allows public access. For more information about public access
|
2023
|
-
# through access points, see [Managing Data Access with Amazon S3
|
2024
|
-
#
|
2034
|
+
# through access points, see [Managing Data Access with Amazon S3 access
|
2035
|
+
# points][1] in the *Amazon S3 User Guide*.
|
2025
2036
|
#
|
2026
2037
|
#
|
2027
2038
|
#
|
@@ -2092,15 +2103,14 @@ module Aws::S3Control
|
|
2092
2103
|
end
|
2093
2104
|
|
2094
2105
|
# Gets an Amazon S3 on Outposts bucket. For more information, see [
|
2095
|
-
# Using Amazon S3 on Outposts][1] in the *Amazon
|
2096
|
-
# User Guide*.
|
2106
|
+
# Using Amazon S3 on Outposts][1] in the *Amazon S3 User Guide*.
|
2097
2107
|
#
|
2098
|
-
# If you are using an identity other than the root user of the
|
2099
|
-
#
|
2100
|
-
#
|
2101
|
-
#
|
2102
|
-
#
|
2103
|
-
#
|
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.
|
2104
2114
|
#
|
2105
2115
|
# If you don't have `s3-outposts:GetBucket` permissions or you're not
|
2106
2116
|
# using an identity that belongs to the bucket owner's account, Amazon
|
@@ -2132,7 +2142,7 @@ module Aws::S3Control
|
|
2132
2142
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteBucket.html
|
2133
2143
|
#
|
2134
2144
|
# @option params [required, String] :account_id
|
2135
|
-
# The
|
2145
|
+
# The account ID of the Outposts bucket.
|
2136
2146
|
#
|
2137
2147
|
# @option params [required, String] :bucket
|
2138
2148
|
# Specifies the bucket.
|
@@ -2140,8 +2150,9 @@ module Aws::S3Control
|
|
2140
2150
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
2141
2151
|
# you must specify the name and the x-amz-outpost-id as well.
|
2142
2152
|
#
|
2143
|
-
# For using this parameter with S3 on Outposts with the
|
2144
|
-
# 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
|
2145
2156
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
2146
2157
|
# For example, to access the bucket `reports` through outpost
|
2147
2158
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -2179,15 +2190,14 @@ module Aws::S3Control
|
|
2179
2190
|
|
2180
2191
|
# <note markdown="1"> This action gets an Amazon S3 on Outposts bucket's lifecycle
|
2181
2192
|
# configuration. To get an S3 bucket's lifecycle configuration, see
|
2182
|
-
# [GetBucketLifecycleConfiguration][1] in the *Amazon
|
2183
|
-
# Service API*.
|
2193
|
+
# [GetBucketLifecycleConfiguration][1] in the *Amazon S3 API Reference*.
|
2184
2194
|
#
|
2185
2195
|
# </note>
|
2186
2196
|
#
|
2187
2197
|
# Returns the lifecycle configuration information set on the Outposts
|
2188
2198
|
# bucket. For more information, see [Using Amazon S3 on Outposts][2] and
|
2189
2199
|
# for information about lifecycle configuration, see [ Object Lifecycle
|
2190
|
-
# Management][3] in *Amazon
|
2200
|
+
# Management][3] in *Amazon S3 User Guide*.
|
2191
2201
|
#
|
2192
2202
|
# To use this action, you must have permission to perform the
|
2193
2203
|
# `s3-outposts:GetLifecycleConfiguration` action. The Outposts bucket
|
@@ -2233,7 +2243,7 @@ module Aws::S3Control
|
|
2233
2243
|
# [8]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteBucketLifecycleConfiguration.html
|
2234
2244
|
#
|
2235
2245
|
# @option params [required, String] :account_id
|
2236
|
-
# The
|
2246
|
+
# The account ID of the Outposts bucket.
|
2237
2247
|
#
|
2238
2248
|
# @option params [required, String] :bucket
|
2239
2249
|
# The Amazon Resource Name (ARN) of the bucket.
|
@@ -2241,8 +2251,9 @@ module Aws::S3Control
|
|
2241
2251
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
2242
2252
|
# you must specify the name and the x-amz-outpost-id as well.
|
2243
2253
|
#
|
2244
|
-
# For using this parameter with S3 on Outposts with the
|
2245
|
-
# 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
|
2246
2257
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
2247
2258
|
# For example, to access the bucket `reports` through outpost
|
2248
2259
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -2297,16 +2308,16 @@ module Aws::S3Control
|
|
2297
2308
|
|
2298
2309
|
# <note markdown="1"> This action gets a bucket policy for an Amazon S3 on Outposts bucket.
|
2299
2310
|
# To get a policy for an S3 bucket, see [GetBucketPolicy][1] in the
|
2300
|
-
# *Amazon
|
2311
|
+
# *Amazon S3 API Reference*.
|
2301
2312
|
#
|
2302
2313
|
# </note>
|
2303
2314
|
#
|
2304
2315
|
# Returns the policy of a specified Outposts bucket. For more
|
2305
|
-
# information, see [Using Amazon S3 on Outposts][2] in the *Amazon
|
2306
|
-
#
|
2316
|
+
# information, see [Using Amazon S3 on Outposts][2] in the *Amazon S3
|
2317
|
+
# User Guide*.
|
2307
2318
|
#
|
2308
|
-
# If you are using an identity other than the root user of the
|
2309
|
-
#
|
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
|
2310
2321
|
# `GetBucketPolicy` permissions on the specified bucket and belong to
|
2311
2322
|
# the bucket owner's account in order to use this action.
|
2312
2323
|
#
|
@@ -2316,7 +2327,7 @@ module Aws::S3Control
|
|
2316
2327
|
# identity that belongs to the bucket owner's account, Amazon S3
|
2317
2328
|
# returns a `403 Access Denied` error.
|
2318
2329
|
#
|
2319
|
-
# As a security precaution, the root user of the
|
2330
|
+
# As a security precaution, the root user of the account that owns a
|
2320
2331
|
# bucket can always use this action, even if the policy explicitly
|
2321
2332
|
# denies the root user the ability to perform this action.
|
2322
2333
|
#
|
@@ -2350,7 +2361,7 @@ module Aws::S3Control
|
|
2350
2361
|
# [7]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteBucketPolicy.html
|
2351
2362
|
#
|
2352
2363
|
# @option params [required, String] :account_id
|
2353
|
-
# The
|
2364
|
+
# The account ID of the Outposts bucket.
|
2354
2365
|
#
|
2355
2366
|
# @option params [required, String] :bucket
|
2356
2367
|
# Specifies the bucket.
|
@@ -2358,8 +2369,9 @@ module Aws::S3Control
|
|
2358
2369
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
2359
2370
|
# you must specify the name and the x-amz-outpost-id as well.
|
2360
2371
|
#
|
2361
|
-
# For using this parameter with S3 on Outposts with the
|
2362
|
-
# 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
|
2363
2375
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
2364
2376
|
# For example, to access the bucket `reports` through outpost
|
2365
2377
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -2392,14 +2404,14 @@ module Aws::S3Control
|
|
2392
2404
|
end
|
2393
2405
|
|
2394
2406
|
# <note markdown="1"> This action gets an Amazon S3 on Outposts bucket's tags. To get an S3
|
2395
|
-
# bucket tags, see [GetBucketTagging][1] in the *Amazon
|
2396
|
-
#
|
2407
|
+
# bucket tags, see [GetBucketTagging][1] in the *Amazon S3 API
|
2408
|
+
# Reference*.
|
2397
2409
|
#
|
2398
2410
|
# </note>
|
2399
2411
|
#
|
2400
2412
|
# Returns the tag set associated with the Outposts bucket. For more
|
2401
|
-
# information, see [Using Amazon S3 on Outposts][2] in the *Amazon
|
2402
|
-
#
|
2413
|
+
# information, see [Using Amazon S3 on Outposts][2] in the *Amazon S3
|
2414
|
+
# User Guide*.
|
2403
2415
|
#
|
2404
2416
|
# To use this action, you must have permission to perform the
|
2405
2417
|
# `GetBucketTagging` action. By default, the bucket owner has this
|
@@ -2436,7 +2448,7 @@ module Aws::S3Control
|
|
2436
2448
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteBucketTagging.html
|
2437
2449
|
#
|
2438
2450
|
# @option params [required, String] :account_id
|
2439
|
-
# The
|
2451
|
+
# The account ID of the Outposts bucket.
|
2440
2452
|
#
|
2441
2453
|
# @option params [required, String] :bucket
|
2442
2454
|
# Specifies the bucket.
|
@@ -2444,8 +2456,9 @@ module Aws::S3Control
|
|
2444
2456
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
2445
2457
|
# you must specify the name and the x-amz-outpost-id as well.
|
2446
2458
|
#
|
2447
|
-
# For using this parameter with S3 on Outposts with the
|
2448
|
-
# 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
|
2449
2462
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
2450
2463
|
# For example, to access the bucket `reports` through outpost
|
2451
2464
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -2482,7 +2495,7 @@ module Aws::S3Control
|
|
2482
2495
|
# Returns the tags on an S3 Batch Operations job. To use this operation,
|
2483
2496
|
# you must have permission to perform the `s3:GetJobTagging` action. For
|
2484
2497
|
# more information, see [Controlling access and labeling jobs using
|
2485
|
-
# tags][1] in the *Amazon
|
2498
|
+
# tags][1] in the *Amazon S3 User Guide*.
|
2486
2499
|
#
|
2487
2500
|
#
|
2488
2501
|
#
|
@@ -2502,7 +2515,7 @@ module Aws::S3Control
|
|
2502
2515
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteJobTagging.html
|
2503
2516
|
#
|
2504
2517
|
# @option params [required, String] :account_id
|
2505
|
-
# The
|
2518
|
+
# The account ID associated with the S3 Batch Operations job.
|
2506
2519
|
#
|
2507
2520
|
# @option params [required, String] :job_id
|
2508
2521
|
# The ID for the S3 Batch Operations job whose tags you want to
|
@@ -2534,8 +2547,8 @@ module Aws::S3Control
|
|
2534
2547
|
req.send_request(options)
|
2535
2548
|
end
|
2536
2549
|
|
2537
|
-
# Retrieves the `PublicAccessBlock` configuration for an
|
2538
|
-
#
|
2550
|
+
# Retrieves the `PublicAccessBlock` configuration for an account. For
|
2551
|
+
# more information, see [ Using Amazon S3 block public access][1].
|
2539
2552
|
#
|
2540
2553
|
# Related actions include:
|
2541
2554
|
#
|
@@ -2550,8 +2563,8 @@ module Aws::S3Control
|
|
2550
2563
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutPublicAccessBlock.html
|
2551
2564
|
#
|
2552
2565
|
# @option params [required, String] :account_id
|
2553
|
-
# The account ID for the
|
2554
|
-
#
|
2566
|
+
# The account ID for the account whose `PublicAccessBlock` configuration
|
2567
|
+
# you want to retrieve.
|
2555
2568
|
#
|
2556
2569
|
# @return [Types::GetPublicAccessBlockOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2557
2570
|
#
|
@@ -2581,12 +2594,12 @@ module Aws::S3Control
|
|
2581
2594
|
|
2582
2595
|
# Gets the Amazon S3 Storage Lens configuration. For more information,
|
2583
2596
|
# see [Assessing your storage activity and usage with Amazon S3 Storage
|
2584
|
-
# Lens ][1] in the *Amazon
|
2597
|
+
# Lens ][1] in the *Amazon S3 User Guide*.
|
2585
2598
|
#
|
2586
2599
|
# <note markdown="1"> To use this action, you must have permission to perform the
|
2587
2600
|
# `s3:GetStorageLensConfiguration` action. For more information, see
|
2588
2601
|
# [Setting permissions to use Amazon S3 Storage Lens][2] in the *Amazon
|
2589
|
-
#
|
2602
|
+
# S3 User Guide*.
|
2590
2603
|
#
|
2591
2604
|
# </note>
|
2592
2605
|
#
|
@@ -2650,13 +2663,13 @@ module Aws::S3Control
|
|
2650
2663
|
|
2651
2664
|
# Gets the tags of Amazon S3 Storage Lens configuration. For more
|
2652
2665
|
# information about S3 Storage Lens, see [Assessing your storage
|
2653
|
-
# activity and usage with Amazon S3 Storage Lens ][1] in the *Amazon
|
2654
|
-
#
|
2666
|
+
# activity and usage with Amazon S3 Storage Lens ][1] in the *Amazon S3
|
2667
|
+
# User Guide*.
|
2655
2668
|
#
|
2656
2669
|
# <note markdown="1"> To use this action, you must have permission to perform the
|
2657
2670
|
# `s3:GetStorageLensConfigurationTagging` action. For more information,
|
2658
2671
|
# see [Setting permissions to use Amazon S3 Storage Lens][2] in the
|
2659
|
-
# *Amazon
|
2672
|
+
# *Amazon S3 User Guide*.
|
2660
2673
|
#
|
2661
2674
|
# </note>
|
2662
2675
|
#
|
@@ -2730,8 +2743,8 @@ module Aws::S3Control
|
|
2730
2743
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetAccessPoint.html
|
2731
2744
|
#
|
2732
2745
|
# @option params [required, String] :account_id
|
2733
|
-
# The
|
2734
|
-
#
|
2746
|
+
# The account ID for owner of the bucket whose access points you want to
|
2747
|
+
# list.
|
2735
2748
|
#
|
2736
2749
|
# @option params [String] :bucket
|
2737
2750
|
# The name of the bucket whose associated access points you want to
|
@@ -2740,8 +2753,9 @@ module Aws::S3Control
|
|
2740
2753
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
2741
2754
|
# you must specify the name and the x-amz-outpost-id as well.
|
2742
2755
|
#
|
2743
|
-
# For using this parameter with S3 on Outposts with the
|
2744
|
-
# 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
|
2745
2759
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
2746
2760
|
# For example, to access the bucket `reports` through outpost
|
2747
2761
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -2785,6 +2799,7 @@ module Aws::S3Control
|
|
2785
2799
|
# resp.access_point_list[0].vpc_configuration.vpc_id #=> String
|
2786
2800
|
# resp.access_point_list[0].bucket #=> String
|
2787
2801
|
# resp.access_point_list[0].access_point_arn #=> String
|
2802
|
+
# resp.access_point_list[0].alias #=> String
|
2788
2803
|
# resp.next_token #=> String
|
2789
2804
|
#
|
2790
2805
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/ListAccessPoints AWS API Documentation
|
@@ -2866,9 +2881,9 @@ module Aws::S3Control
|
|
2866
2881
|
end
|
2867
2882
|
|
2868
2883
|
# Lists current S3 Batch Operations jobs and jobs that have ended within
|
2869
|
-
# the last 30 days for the
|
2870
|
-
# information, see [S3 Batch Operations][1] in the *Amazon
|
2871
|
-
#
|
2884
|
+
# the last 30 days for the account making the request. For more
|
2885
|
+
# information, see [S3 Batch Operations][1] in the *Amazon S3 User
|
2886
|
+
# Guide*.
|
2872
2887
|
#
|
2873
2888
|
# Related actions include:
|
2874
2889
|
#
|
@@ -2891,7 +2906,7 @@ module Aws::S3Control
|
|
2891
2906
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_UpdateJobStatus.html
|
2892
2907
|
#
|
2893
2908
|
# @option params [required, String] :account_id
|
2894
|
-
# The
|
2909
|
+
# The account ID associated with the S3 Batch Operations job.
|
2895
2910
|
#
|
2896
2911
|
# @option params [Array<String>] :job_statuses
|
2897
2912
|
# The `List Jobs` request returns jobs that match the statuses listed in
|
@@ -2950,8 +2965,7 @@ module Aws::S3Control
|
|
2950
2965
|
|
2951
2966
|
# Returns a list of all Outposts buckets in an Outpost that are owned by
|
2952
2967
|
# the authenticated sender of the request. For more information, see
|
2953
|
-
# [Using Amazon S3 on Outposts][1] in the *Amazon
|
2954
|
-
# User Guide*.
|
2968
|
+
# [Using Amazon S3 on Outposts][1] in the *Amazon S3 User Guide*.
|
2955
2969
|
#
|
2956
2970
|
# For an example of the request syntax for Amazon S3 on Outposts that
|
2957
2971
|
# uses the S3 on Outposts endpoint hostname prefix and
|
@@ -2963,14 +2977,14 @@ module Aws::S3Control
|
|
2963
2977
|
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_ListRegionalBuckets.html#API_control_ListRegionalBuckets_Examples
|
2964
2978
|
#
|
2965
2979
|
# @option params [required, String] :account_id
|
2966
|
-
# The
|
2980
|
+
# The account ID of the Outposts bucket.
|
2967
2981
|
#
|
2968
2982
|
# @option params [String] :next_token
|
2969
2983
|
#
|
2970
2984
|
# @option params [Integer] :max_results
|
2971
2985
|
#
|
2972
2986
|
# @option params [String] :outpost_id
|
2973
|
-
# The ID of the
|
2987
|
+
# The ID of the Outposts.
|
2974
2988
|
#
|
2975
2989
|
# <note markdown="1"> This is required by Amazon S3 on Outposts buckets.
|
2976
2990
|
#
|
@@ -3013,13 +3027,13 @@ module Aws::S3Control
|
|
3013
3027
|
|
3014
3028
|
# Gets a list of Amazon S3 Storage Lens configurations. For more
|
3015
3029
|
# information about S3 Storage Lens, see [Assessing your storage
|
3016
|
-
# activity and usage with Amazon S3 Storage Lens ][1] in the *Amazon
|
3017
|
-
#
|
3030
|
+
# activity and usage with Amazon S3 Storage Lens ][1] in the *Amazon S3
|
3031
|
+
# User Guide*.
|
3018
3032
|
#
|
3019
3033
|
# <note markdown="1"> To use this action, you must have permission to perform the
|
3020
3034
|
# `s3:ListStorageLensConfigurations` action. For more information, see
|
3021
3035
|
# [Setting permissions to use Amazon S3 Storage Lens][2] in the *Amazon
|
3022
|
-
#
|
3036
|
+
# S3 User Guide*.
|
3023
3037
|
#
|
3024
3038
|
# </note>
|
3025
3039
|
#
|
@@ -3151,8 +3165,8 @@ module Aws::S3Control
|
|
3151
3165
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteAccessPointPolicy.html
|
3152
3166
|
#
|
3153
3167
|
# @option params [required, String] :account_id
|
3154
|
-
# The
|
3155
|
-
#
|
3168
|
+
# The account ID for owner of the bucket associated with the specified
|
3169
|
+
# access point.
|
3156
3170
|
#
|
3157
3171
|
# @option params [required, String] :name
|
3158
3172
|
# The name of the access point that you want to associate with the
|
@@ -3161,8 +3175,9 @@ module Aws::S3Control
|
|
3161
3175
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
3162
3176
|
# you must specify the name and the x-amz-outpost-id as well.
|
3163
3177
|
#
|
3164
|
-
# For using this parameter with S3 on Outposts with the
|
3165
|
-
# 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
|
3166
3181
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>`.
|
3167
3182
|
# For example, to access the access point `reports-ap` through outpost
|
3168
3183
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -3173,8 +3188,7 @@ module Aws::S3Control
|
|
3173
3188
|
# @option params [required, String] :policy
|
3174
3189
|
# The policy that you want to apply to the specified access point. For
|
3175
3190
|
# more information about access point policies, see [Managing data
|
3176
|
-
# access with Amazon S3
|
3177
|
-
# Service User Guide*.
|
3191
|
+
# access with Amazon S3 access points][1] in the *Amazon S3 User Guide*.
|
3178
3192
|
#
|
3179
3193
|
#
|
3180
3194
|
#
|
@@ -3201,7 +3215,7 @@ module Aws::S3Control
|
|
3201
3215
|
|
3202
3216
|
# Creates or replaces resource policy for an Object Lambda Access Point.
|
3203
3217
|
# For an example policy, see [Creating Object Lambda Access Points][1]
|
3204
|
-
# in the *Amazon
|
3218
|
+
# in the *Amazon S3 User Guide*.
|
3205
3219
|
#
|
3206
3220
|
# The following actions are related to
|
3207
3221
|
# `PutAccessPointPolicyForObjectLambda`\:
|
@@ -3247,8 +3261,7 @@ module Aws::S3Control
|
|
3247
3261
|
|
3248
3262
|
# <note markdown="1"> This action puts a lifecycle configuration to an Amazon S3 on Outposts
|
3249
3263
|
# bucket. To put a lifecycle configuration to an S3 bucket, see
|
3250
|
-
# [PutBucketLifecycleConfiguration][1] in the *Amazon
|
3251
|
-
# Service API*.
|
3264
|
+
# [PutBucketLifecycleConfiguration][1] in the *Amazon S3 API Reference*.
|
3252
3265
|
#
|
3253
3266
|
# </note>
|
3254
3267
|
#
|
@@ -3282,7 +3295,7 @@ module Aws::S3Control
|
|
3282
3295
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteBucketLifecycleConfiguration.html
|
3283
3296
|
#
|
3284
3297
|
# @option params [required, String] :account_id
|
3285
|
-
# The
|
3298
|
+
# The account ID of the Outposts bucket.
|
3286
3299
|
#
|
3287
3300
|
# @option params [required, String] :bucket
|
3288
3301
|
# The name of the bucket for which to set the configuration.
|
@@ -3358,17 +3371,17 @@ module Aws::S3Control
|
|
3358
3371
|
|
3359
3372
|
# <note markdown="1"> This action puts a bucket policy to an Amazon S3 on Outposts bucket.
|
3360
3373
|
# To put a policy on an S3 bucket, see [PutBucketPolicy][1] in the
|
3361
|
-
# *Amazon
|
3374
|
+
# *Amazon S3 API Reference*.
|
3362
3375
|
#
|
3363
3376
|
# </note>
|
3364
3377
|
#
|
3365
3378
|
# Applies an Amazon S3 bucket policy to an Outposts bucket. For more
|
3366
|
-
# information, see [Using Amazon S3 on Outposts][2] in the *Amazon
|
3367
|
-
#
|
3379
|
+
# information, see [Using Amazon S3 on Outposts][2] in the *Amazon S3
|
3380
|
+
# User Guide*.
|
3368
3381
|
#
|
3369
|
-
# If you are using an identity other than the root user of the
|
3370
|
-
#
|
3371
|
-
#
|
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
|
3372
3385
|
# belong to the bucket owner's account in order to use this action.
|
3373
3386
|
#
|
3374
3387
|
# If you don't have `PutBucketPolicy` permissions, Amazon S3 returns a
|
@@ -3376,7 +3389,7 @@ module Aws::S3Control
|
|
3376
3389
|
# you're not using an identity that belongs to the bucket owner's
|
3377
3390
|
# account, Amazon S3 returns a `405 Method Not Allowed` error.
|
3378
3391
|
#
|
3379
|
-
# As a security precaution, the root user of the
|
3392
|
+
# As a security precaution, the root user of the account that owns a
|
3380
3393
|
# bucket can always use this action, even if the policy explicitly
|
3381
3394
|
# denies the root user the ability to perform this action.
|
3382
3395
|
#
|
@@ -3407,7 +3420,7 @@ module Aws::S3Control
|
|
3407
3420
|
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteBucketPolicy.html
|
3408
3421
|
#
|
3409
3422
|
# @option params [required, String] :account_id
|
3410
|
-
# The
|
3423
|
+
# The account ID of the Outposts bucket.
|
3411
3424
|
#
|
3412
3425
|
# @option params [required, String] :bucket
|
3413
3426
|
# Specifies the bucket.
|
@@ -3415,8 +3428,9 @@ module Aws::S3Control
|
|
3415
3428
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
3416
3429
|
# you must specify the name and the x-amz-outpost-id as well.
|
3417
3430
|
#
|
3418
|
-
# For using this parameter with S3 on Outposts with the
|
3419
|
-
# 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
|
3420
3434
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
3421
3435
|
# For example, to access the bucket `reports` through outpost
|
3422
3436
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -3456,23 +3470,22 @@ module Aws::S3Control
|
|
3456
3470
|
end
|
3457
3471
|
|
3458
3472
|
# <note markdown="1"> This action puts tags on an Amazon S3 on Outposts bucket. To put tags
|
3459
|
-
# on an S3 bucket, see [PutBucketTagging][1] in the *Amazon
|
3460
|
-
#
|
3473
|
+
# on an S3 bucket, see [PutBucketTagging][1] in the *Amazon S3 API
|
3474
|
+
# Reference*.
|
3461
3475
|
#
|
3462
3476
|
# </note>
|
3463
3477
|
#
|
3464
3478
|
# Sets the tags for an S3 on Outposts bucket. For more information, see
|
3465
|
-
# [Using Amazon S3 on Outposts][2] in the *Amazon
|
3466
|
-
# User Guide*.
|
3479
|
+
# [Using Amazon S3 on Outposts][2] in the *Amazon S3 User Guide*.
|
3467
3480
|
#
|
3468
|
-
# Use tags to organize your
|
3469
|
-
# To do this, sign up to get your
|
3470
|
-
# included. Then, to see the cost of combined resources,
|
3471
|
-
# billing information according to resources with the same
|
3472
|
-
# values. For example, you can tag several resources with a
|
3473
|
-
# application name, and then organize your billing information
|
3474
|
-
# the total cost of that application across several services. For
|
3475
|
-
# 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].
|
3476
3489
|
#
|
3477
3490
|
# <note markdown="1"> Within a bucket, if you add a tag that has the same key as an existing
|
3478
3491
|
# tag, the new value overwrites the old value. For more information, see
|
@@ -3494,7 +3507,8 @@ module Aws::S3Control
|
|
3494
3507
|
# * Description: The tag provided was not a valid tag. This error can
|
3495
3508
|
# occur if the tag did not pass input validation. For information
|
3496
3509
|
# about tag restrictions, see [ User-Defined Tag Restrictions][7]
|
3497
|
-
# and [
|
3510
|
+
# and [ Amazon Web Services-Generated Cost Allocation Tag
|
3511
|
+
# Restrictions][8].
|
3498
3512
|
#
|
3499
3513
|
# ^
|
3500
3514
|
#
|
@@ -3547,7 +3561,7 @@ module Aws::S3Control
|
|
3547
3561
|
# [11]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteBucketTagging.html
|
3548
3562
|
#
|
3549
3563
|
# @option params [required, String] :account_id
|
3550
|
-
# The
|
3564
|
+
# The account ID of the Outposts bucket.
|
3551
3565
|
#
|
3552
3566
|
# @option params [required, String] :bucket
|
3553
3567
|
# The Amazon Resource Name (ARN) of the bucket.
|
@@ -3555,8 +3569,9 @@ module Aws::S3Control
|
|
3555
3569
|
# For using this parameter with Amazon S3 on Outposts with the REST API,
|
3556
3570
|
# you must specify the name and the x-amz-outpost-id as well.
|
3557
3571
|
#
|
3558
|
-
# For using this parameter with S3 on Outposts with the
|
3559
|
-
# 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
|
3560
3575
|
# `arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>`.
|
3561
3576
|
# For example, to access the bucket `reports` through outpost
|
3562
3577
|
# `my-outpost` owned by account `123456789012` in Region `us-west-2`,
|
@@ -3602,7 +3617,7 @@ module Aws::S3Control
|
|
3602
3617
|
# [GetJobTagging][1], modify that tag set, and use this action to
|
3603
3618
|
# replace the tag set with the one you modified. For more information,
|
3604
3619
|
# see [Controlling access and labeling jobs using tags][2] in the
|
3605
|
-
# *Amazon
|
3620
|
+
# *Amazon S3 User Guide*.
|
3606
3621
|
#
|
3607
3622
|
#
|
3608
3623
|
#
|
@@ -3628,8 +3643,8 @@ module Aws::S3Control
|
|
3628
3643
|
# * The key and values are case sensitive.
|
3629
3644
|
#
|
3630
3645
|
# * For tagging-related restrictions related to characters and
|
3631
|
-
# encodings, see [User-Defined Tag Restrictions][5] in the *
|
3632
|
-
#
|
3646
|
+
# encodings, see [User-Defined Tag Restrictions][5] in the *Billing
|
3647
|
+
# and Cost Management User Guide*.
|
3633
3648
|
#
|
3634
3649
|
# </note>
|
3635
3650
|
#
|
@@ -3656,7 +3671,7 @@ module Aws::S3Control
|
|
3656
3671
|
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_CreateJob.html
|
3657
3672
|
#
|
3658
3673
|
# @option params [required, String] :account_id
|
3659
|
-
# The
|
3674
|
+
# The account ID associated with the S3 Batch Operations job.
|
3660
3675
|
#
|
3661
3676
|
# @option params [required, String] :job_id
|
3662
3677
|
# The ID for the S3 Batch Operations job whose tags you want to replace.
|
@@ -3688,7 +3703,7 @@ module Aws::S3Control
|
|
3688
3703
|
req.send_request(options)
|
3689
3704
|
end
|
3690
3705
|
|
3691
|
-
# Creates or modifies the `PublicAccessBlock` configuration for an
|
3706
|
+
# Creates or modifies the `PublicAccessBlock` configuration for an
|
3692
3707
|
# account. For more information, see [ Using Amazon S3 block public
|
3693
3708
|
# access][1].
|
3694
3709
|
#
|
@@ -3706,11 +3721,11 @@ module Aws::S3Control
|
|
3706
3721
|
#
|
3707
3722
|
# @option params [required, Types::PublicAccessBlockConfiguration] :public_access_block_configuration
|
3708
3723
|
# The `PublicAccessBlock` configuration that you want to apply to the
|
3709
|
-
# specified
|
3724
|
+
# specified account.
|
3710
3725
|
#
|
3711
3726
|
# @option params [required, String] :account_id
|
3712
|
-
# The account ID for the
|
3713
|
-
#
|
3727
|
+
# The account ID for the account whose `PublicAccessBlock` configuration
|
3728
|
+
# you want to set.
|
3714
3729
|
#
|
3715
3730
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
3716
3731
|
#
|
@@ -3737,12 +3752,12 @@ module Aws::S3Control
|
|
3737
3752
|
|
3738
3753
|
# Puts an Amazon S3 Storage Lens configuration. For more information
|
3739
3754
|
# about S3 Storage Lens, see [Working with Amazon S3 Storage Lens][1] in
|
3740
|
-
# the *Amazon
|
3755
|
+
# the *Amazon S3 User Guide*.
|
3741
3756
|
#
|
3742
3757
|
# <note markdown="1"> To use this action, you must have permission to perform the
|
3743
3758
|
# `s3:PutStorageLensConfiguration` action. For more information, see
|
3744
3759
|
# [Setting permissions to use Amazon S3 Storage Lens][2] in the *Amazon
|
3745
|
-
#
|
3760
|
+
# S3 User Guide*.
|
3746
3761
|
#
|
3747
3762
|
# </note>
|
3748
3763
|
#
|
@@ -3846,12 +3861,12 @@ module Aws::S3Control
|
|
3846
3861
|
# Put or replace tags on an existing Amazon S3 Storage Lens
|
3847
3862
|
# configuration. For more information about S3 Storage Lens, see
|
3848
3863
|
# [Assessing your storage activity and usage with Amazon S3 Storage Lens
|
3849
|
-
# ][1] in the *Amazon
|
3864
|
+
# ][1] in the *Amazon S3 User Guide*.
|
3850
3865
|
#
|
3851
3866
|
# <note markdown="1"> To use this action, you must have permission to perform the
|
3852
3867
|
# `s3:PutStorageLensConfigurationTagging` action. For more information,
|
3853
3868
|
# see [Setting permissions to use Amazon S3 Storage Lens][2] in the
|
3854
|
-
# *Amazon
|
3869
|
+
# *Amazon S3 User Guide*.
|
3855
3870
|
#
|
3856
3871
|
# </note>
|
3857
3872
|
#
|
@@ -3898,8 +3913,8 @@ module Aws::S3Control
|
|
3898
3913
|
end
|
3899
3914
|
|
3900
3915
|
# Updates an existing S3 Batch Operations job's priority. For more
|
3901
|
-
# information, see [S3 Batch Operations][1] in the *Amazon
|
3902
|
-
#
|
3916
|
+
# information, see [S3 Batch Operations][1] in the *Amazon S3 User
|
3917
|
+
# Guide*.
|
3903
3918
|
#
|
3904
3919
|
#
|
3905
3920
|
#
|
@@ -3922,7 +3937,7 @@ module Aws::S3Control
|
|
3922
3937
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_UpdateJobStatus.html
|
3923
3938
|
#
|
3924
3939
|
# @option params [required, String] :account_id
|
3925
|
-
# The
|
3940
|
+
# The account ID associated with the S3 Batch Operations job.
|
3926
3941
|
#
|
3927
3942
|
# @option params [required, String] :job_id
|
3928
3943
|
# The ID for the job whose priority you want to update.
|
@@ -3959,8 +3974,8 @@ module Aws::S3Control
|
|
3959
3974
|
|
3960
3975
|
# Updates the status for the specified job. Use this action to confirm
|
3961
3976
|
# that you want to run a job or to cancel an existing job. For more
|
3962
|
-
# information, see [S3 Batch Operations][1] in the *Amazon
|
3963
|
-
#
|
3977
|
+
# information, see [S3 Batch Operations][1] in the *Amazon S3 User
|
3978
|
+
# Guide*.
|
3964
3979
|
#
|
3965
3980
|
#
|
3966
3981
|
#
|
@@ -3983,7 +3998,7 @@ module Aws::S3Control
|
|
3983
3998
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_UpdateJobStatus.html
|
3984
3999
|
#
|
3985
4000
|
# @option params [required, String] :account_id
|
3986
|
-
# The
|
4001
|
+
# The account ID associated with the S3 Batch Operations job.
|
3987
4002
|
#
|
3988
4003
|
# @option params [required, String] :job_id
|
3989
4004
|
# The ID of the job whose status you want to update.
|
@@ -4038,7 +4053,7 @@ module Aws::S3Control
|
|
4038
4053
|
params: params,
|
4039
4054
|
config: config)
|
4040
4055
|
context[:gem_name] = 'aws-sdk-s3control'
|
4041
|
-
context[:gem_version] = '1.
|
4056
|
+
context[:gem_version] = '1.36.0'
|
4042
4057
|
Seahorse::Client::Request.new(handlers, context)
|
4043
4058
|
end
|
4044
4059
|
|