aws-sdk-s3control 1.39.0 → 1.42.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 +22 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3control/arn/outpost_access_point_arn.rb +15 -9
- data/lib/aws-sdk-s3control/arn/outpost_bucket_arn.rb +13 -8
- data/lib/aws-sdk-s3control/client.rb +684 -80
- data/lib/aws-sdk-s3control/client_api.rb +298 -0
- data/lib/aws-sdk-s3control/plugins/arn.rb +12 -32
- data/lib/aws-sdk-s3control/plugins/dualstack.rb +13 -23
- data/lib/aws-sdk-s3control/plugins/s3_control_signer.rb +3 -2
- data/lib/aws-sdk-s3control/types.rb +945 -56
- data/lib/aws-sdk-s3control.rb +1 -1
- metadata +4 -4
@@ -147,6 +147,134 @@ module Aws::S3Control
|
|
147
147
|
include Aws::Structure
|
148
148
|
end
|
149
149
|
|
150
|
+
# Error details for the failed asynchronous operation.
|
151
|
+
#
|
152
|
+
# @!attribute [rw] code
|
153
|
+
# A string that uniquely identifies the error condition.
|
154
|
+
# @return [String]
|
155
|
+
#
|
156
|
+
# @!attribute [rw] message
|
157
|
+
# A generic descritpion of the error condition in English.
|
158
|
+
# @return [String]
|
159
|
+
#
|
160
|
+
# @!attribute [rw] resource
|
161
|
+
# The identifier of the resource associated with the error.
|
162
|
+
# @return [String]
|
163
|
+
#
|
164
|
+
# @!attribute [rw] request_id
|
165
|
+
# The ID of the request associated with the error.
|
166
|
+
# @return [String]
|
167
|
+
#
|
168
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/AsyncErrorDetails AWS API Documentation
|
169
|
+
#
|
170
|
+
class AsyncErrorDetails < Struct.new(
|
171
|
+
:code,
|
172
|
+
:message,
|
173
|
+
:resource,
|
174
|
+
:request_id)
|
175
|
+
SENSITIVE = []
|
176
|
+
include Aws::Structure
|
177
|
+
end
|
178
|
+
|
179
|
+
# A container for the information about an asynchronous operation.
|
180
|
+
#
|
181
|
+
# @!attribute [rw] creation_time
|
182
|
+
# The time that the request was sent to the service.
|
183
|
+
# @return [Time]
|
184
|
+
#
|
185
|
+
# @!attribute [rw] operation
|
186
|
+
# The specific operation for the asynchronous request.
|
187
|
+
# @return [String]
|
188
|
+
#
|
189
|
+
# @!attribute [rw] request_token_arn
|
190
|
+
# The request token associated with the request.
|
191
|
+
# @return [String]
|
192
|
+
#
|
193
|
+
# @!attribute [rw] request_parameters
|
194
|
+
# The parameters associated with the request.
|
195
|
+
# @return [Types::AsyncRequestParameters]
|
196
|
+
#
|
197
|
+
# @!attribute [rw] request_status
|
198
|
+
# The current status of the request.
|
199
|
+
# @return [String]
|
200
|
+
#
|
201
|
+
# @!attribute [rw] response_details
|
202
|
+
# The details of the response.
|
203
|
+
# @return [Types::AsyncResponseDetails]
|
204
|
+
#
|
205
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/AsyncOperation AWS API Documentation
|
206
|
+
#
|
207
|
+
class AsyncOperation < Struct.new(
|
208
|
+
:creation_time,
|
209
|
+
:operation,
|
210
|
+
:request_token_arn,
|
211
|
+
:request_parameters,
|
212
|
+
:request_status,
|
213
|
+
:response_details)
|
214
|
+
SENSITIVE = []
|
215
|
+
include Aws::Structure
|
216
|
+
end
|
217
|
+
|
218
|
+
# A container for the request parameters associated with an asynchronous
|
219
|
+
# request.
|
220
|
+
#
|
221
|
+
# @!attribute [rw] create_multi_region_access_point_request
|
222
|
+
# A container of the parameters for a
|
223
|
+
# [CreateMultiRegionAccessPoint][1] request.
|
224
|
+
#
|
225
|
+
#
|
226
|
+
#
|
227
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_CreateMultiRegionAccessPoint.html
|
228
|
+
# @return [Types::CreateMultiRegionAccessPointInput]
|
229
|
+
#
|
230
|
+
# @!attribute [rw] delete_multi_region_access_point_request
|
231
|
+
# A container of the parameters for a
|
232
|
+
# [DeleteMultiRegionAccessPoint][1] request.
|
233
|
+
#
|
234
|
+
#
|
235
|
+
#
|
236
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteMultiRegionAccessPoint.html
|
237
|
+
# @return [Types::DeleteMultiRegionAccessPointInput]
|
238
|
+
#
|
239
|
+
# @!attribute [rw] put_multi_region_access_point_policy_request
|
240
|
+
# A container of the parameters for a [PutMultiRegionAccessPoint][1]
|
241
|
+
# request.
|
242
|
+
#
|
243
|
+
#
|
244
|
+
#
|
245
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutMultiRegionAccessPoint.html
|
246
|
+
# @return [Types::PutMultiRegionAccessPointPolicyInput]
|
247
|
+
#
|
248
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/AsyncRequestParameters AWS API Documentation
|
249
|
+
#
|
250
|
+
class AsyncRequestParameters < Struct.new(
|
251
|
+
:create_multi_region_access_point_request,
|
252
|
+
:delete_multi_region_access_point_request,
|
253
|
+
:put_multi_region_access_point_policy_request)
|
254
|
+
SENSITIVE = []
|
255
|
+
include Aws::Structure
|
256
|
+
end
|
257
|
+
|
258
|
+
# A container for the response details that are returned when querying
|
259
|
+
# about an asynchronous request.
|
260
|
+
#
|
261
|
+
# @!attribute [rw] multi_region_access_point_details
|
262
|
+
# The details for the Multi-Region Access Point.
|
263
|
+
# @return [Types::MultiRegionAccessPointsAsyncResponse]
|
264
|
+
#
|
265
|
+
# @!attribute [rw] error_details
|
266
|
+
# Error details for an asynchronous request.
|
267
|
+
# @return [Types::AsyncErrorDetails]
|
268
|
+
#
|
269
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/AsyncResponseDetails AWS API Documentation
|
270
|
+
#
|
271
|
+
class AsyncResponseDetails < Struct.new(
|
272
|
+
:multi_region_access_point_details,
|
273
|
+
:error_details)
|
274
|
+
SENSITIVE = []
|
275
|
+
include Aws::Structure
|
276
|
+
end
|
277
|
+
|
150
278
|
# Lambda function used to transform objects through an Object Lambda
|
151
279
|
# Access Point.
|
152
280
|
#
|
@@ -267,8 +395,8 @@ module Aws::S3Control
|
|
267
395
|
# }
|
268
396
|
#
|
269
397
|
# @!attribute [rw] account_id
|
270
|
-
# The account ID for owner of the specified Object
|
271
|
-
# Point.
|
398
|
+
# The Amazon Web Services account ID for owner of the specified Object
|
399
|
+
# Lambda Access Point.
|
272
400
|
# @return [String]
|
273
401
|
#
|
274
402
|
# @!attribute [rw] name
|
@@ -320,8 +448,8 @@ module Aws::S3Control
|
|
320
448
|
# }
|
321
449
|
#
|
322
450
|
# @!attribute [rw] account_id
|
323
|
-
# The account ID for the owner of the bucket for
|
324
|
-
# create an access point.
|
451
|
+
# The Amazon Web Services account ID for the owner of the bucket for
|
452
|
+
# which you want to create an access point.
|
325
453
|
# @return [String]
|
326
454
|
#
|
327
455
|
# @!attribute [rw] name
|
@@ -705,7 +833,7 @@ module Aws::S3Control
|
|
705
833
|
# }
|
706
834
|
#
|
707
835
|
# @!attribute [rw] account_id
|
708
|
-
# The account ID that creates the job.
|
836
|
+
# The Amazon Web Services account ID that creates the job.
|
709
837
|
# @return [String]
|
710
838
|
#
|
711
839
|
# @!attribute [rw] confirmation_required
|
@@ -793,6 +921,134 @@ module Aws::S3Control
|
|
793
921
|
include Aws::Structure
|
794
922
|
end
|
795
923
|
|
924
|
+
# A container for the information associated with a
|
925
|
+
# [CreateMultiRegionAccessPoint][1] request.
|
926
|
+
#
|
927
|
+
#
|
928
|
+
#
|
929
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_CreateMultiRegionAccessPoint.html
|
930
|
+
#
|
931
|
+
# @note When making an API call, you may pass CreateMultiRegionAccessPointInput
|
932
|
+
# data as a hash:
|
933
|
+
#
|
934
|
+
# {
|
935
|
+
# name: "MultiRegionAccessPointName", # required
|
936
|
+
# public_access_block: {
|
937
|
+
# block_public_acls: false,
|
938
|
+
# ignore_public_acls: false,
|
939
|
+
# block_public_policy: false,
|
940
|
+
# restrict_public_buckets: false,
|
941
|
+
# },
|
942
|
+
# regions: [ # required
|
943
|
+
# {
|
944
|
+
# bucket: "BucketName", # required
|
945
|
+
# },
|
946
|
+
# ],
|
947
|
+
# }
|
948
|
+
#
|
949
|
+
# @!attribute [rw] name
|
950
|
+
# The name of the Multi-Region Access Point associated with this
|
951
|
+
# request.
|
952
|
+
# @return [String]
|
953
|
+
#
|
954
|
+
# @!attribute [rw] public_access_block
|
955
|
+
# The `PublicAccessBlock` configuration that you want to apply to this
|
956
|
+
# Amazon S3 account. You can enable the configuration options in any
|
957
|
+
# combination. For more information about when Amazon S3 considers a
|
958
|
+
# bucket or object public, see [The Meaning of "Public"][1] in the
|
959
|
+
# *Amazon S3 User Guide*.
|
960
|
+
#
|
961
|
+
# This is not supported for Amazon S3 on Outposts.
|
962
|
+
#
|
963
|
+
#
|
964
|
+
#
|
965
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html#access-control-block-public-access-policy-status
|
966
|
+
# @return [Types::PublicAccessBlockConfiguration]
|
967
|
+
#
|
968
|
+
# @!attribute [rw] regions
|
969
|
+
# The buckets in different Regions that are associated with the
|
970
|
+
# Multi-Region Access Point.
|
971
|
+
# @return [Array<Types::Region>]
|
972
|
+
#
|
973
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/CreateMultiRegionAccessPointInput AWS API Documentation
|
974
|
+
#
|
975
|
+
class CreateMultiRegionAccessPointInput < Struct.new(
|
976
|
+
:name,
|
977
|
+
:public_access_block,
|
978
|
+
:regions)
|
979
|
+
SENSITIVE = []
|
980
|
+
include Aws::Structure
|
981
|
+
end
|
982
|
+
|
983
|
+
# @note When making an API call, you may pass CreateMultiRegionAccessPointRequest
|
984
|
+
# data as a hash:
|
985
|
+
#
|
986
|
+
# {
|
987
|
+
# account_id: "AccountId", # required
|
988
|
+
# client_token: "MultiRegionAccessPointClientToken", # required
|
989
|
+
# details: { # required
|
990
|
+
# name: "MultiRegionAccessPointName", # required
|
991
|
+
# public_access_block: {
|
992
|
+
# block_public_acls: false,
|
993
|
+
# ignore_public_acls: false,
|
994
|
+
# block_public_policy: false,
|
995
|
+
# restrict_public_buckets: false,
|
996
|
+
# },
|
997
|
+
# regions: [ # required
|
998
|
+
# {
|
999
|
+
# bucket: "BucketName", # required
|
1000
|
+
# },
|
1001
|
+
# ],
|
1002
|
+
# },
|
1003
|
+
# }
|
1004
|
+
#
|
1005
|
+
# @!attribute [rw] account_id
|
1006
|
+
# The Amazon Web Services account ID for the owner of the Multi-Region
|
1007
|
+
# Access Point. The owner of the Multi-Region Access Point also must
|
1008
|
+
# own the underlying buckets.
|
1009
|
+
# @return [String]
|
1010
|
+
#
|
1011
|
+
# @!attribute [rw] client_token
|
1012
|
+
# An idempotency token used to identify the request and guarantee that
|
1013
|
+
# requests are unique.
|
1014
|
+
#
|
1015
|
+
# **A suitable default value is auto-generated.** You should normally
|
1016
|
+
# not need to pass this option.
|
1017
|
+
# @return [String]
|
1018
|
+
#
|
1019
|
+
# @!attribute [rw] details
|
1020
|
+
# A container element containing details about the Multi-Region Access
|
1021
|
+
# Point.
|
1022
|
+
# @return [Types::CreateMultiRegionAccessPointInput]
|
1023
|
+
#
|
1024
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/CreateMultiRegionAccessPointRequest AWS API Documentation
|
1025
|
+
#
|
1026
|
+
class CreateMultiRegionAccessPointRequest < Struct.new(
|
1027
|
+
:account_id,
|
1028
|
+
:client_token,
|
1029
|
+
:details)
|
1030
|
+
SENSITIVE = []
|
1031
|
+
include Aws::Structure
|
1032
|
+
end
|
1033
|
+
|
1034
|
+
# @!attribute [rw] request_token_arn
|
1035
|
+
# The request token associated with the request. You can use this
|
1036
|
+
# token with [DescribeMultiRegionAccessPointOperation][1] to determine
|
1037
|
+
# the status of asynchronous requests.
|
1038
|
+
#
|
1039
|
+
#
|
1040
|
+
#
|
1041
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DescribeMultiRegionAccessPointOperation.html
|
1042
|
+
# @return [String]
|
1043
|
+
#
|
1044
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/CreateMultiRegionAccessPointResult AWS API Documentation
|
1045
|
+
#
|
1046
|
+
class CreateMultiRegionAccessPointResult < Struct.new(
|
1047
|
+
:request_token_arn)
|
1048
|
+
SENSITIVE = []
|
1049
|
+
include Aws::Structure
|
1050
|
+
end
|
1051
|
+
|
796
1052
|
# @note When making an API call, you may pass DeleteAccessPointForObjectLambdaRequest
|
797
1053
|
# data as a hash:
|
798
1054
|
#
|
@@ -1045,7 +1301,8 @@ module Aws::S3Control
|
|
1045
1301
|
# }
|
1046
1302
|
#
|
1047
1303
|
# @!attribute [rw] account_id
|
1048
|
-
# The account ID of the Outposts bucket tag set to
|
1304
|
+
# The Amazon Web Services account ID of the Outposts bucket tag set to
|
1305
|
+
# be removed.
|
1049
1306
|
# @return [String]
|
1050
1307
|
#
|
1051
1308
|
# @!attribute [rw] bucket
|
@@ -1083,7 +1340,8 @@ module Aws::S3Control
|
|
1083
1340
|
# }
|
1084
1341
|
#
|
1085
1342
|
# @!attribute [rw] account_id
|
1086
|
-
# The account ID associated with the S3 Batch
|
1343
|
+
# The Amazon Web Services account ID associated with the S3 Batch
|
1344
|
+
# Operations job.
|
1087
1345
|
# @return [String]
|
1088
1346
|
#
|
1089
1347
|
# @!attribute [rw] job_id
|
@@ -1104,6 +1362,90 @@ module Aws::S3Control
|
|
1104
1362
|
#
|
1105
1363
|
class DeleteJobTaggingResult < Aws::EmptyStructure; end
|
1106
1364
|
|
1365
|
+
# A container for the information associated with a
|
1366
|
+
# [DeleteMultiRegionAccessPoint][1] request.
|
1367
|
+
#
|
1368
|
+
#
|
1369
|
+
#
|
1370
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteMultiRegionAccessPoint.html
|
1371
|
+
#
|
1372
|
+
# @note When making an API call, you may pass DeleteMultiRegionAccessPointInput
|
1373
|
+
# data as a hash:
|
1374
|
+
#
|
1375
|
+
# {
|
1376
|
+
# name: "MultiRegionAccessPointName", # required
|
1377
|
+
# }
|
1378
|
+
#
|
1379
|
+
# @!attribute [rw] name
|
1380
|
+
# The name of the Multi-Region Access Point associated with this
|
1381
|
+
# request.
|
1382
|
+
# @return [String]
|
1383
|
+
#
|
1384
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/DeleteMultiRegionAccessPointInput AWS API Documentation
|
1385
|
+
#
|
1386
|
+
class DeleteMultiRegionAccessPointInput < Struct.new(
|
1387
|
+
:name)
|
1388
|
+
SENSITIVE = []
|
1389
|
+
include Aws::Structure
|
1390
|
+
end
|
1391
|
+
|
1392
|
+
# @note When making an API call, you may pass DeleteMultiRegionAccessPointRequest
|
1393
|
+
# data as a hash:
|
1394
|
+
#
|
1395
|
+
# {
|
1396
|
+
# account_id: "AccountId", # required
|
1397
|
+
# client_token: "MultiRegionAccessPointClientToken", # required
|
1398
|
+
# details: { # required
|
1399
|
+
# name: "MultiRegionAccessPointName", # required
|
1400
|
+
# },
|
1401
|
+
# }
|
1402
|
+
#
|
1403
|
+
# @!attribute [rw] account_id
|
1404
|
+
# The Amazon Web Services account ID for the owner of the Multi-Region
|
1405
|
+
# Access Point.
|
1406
|
+
# @return [String]
|
1407
|
+
#
|
1408
|
+
# @!attribute [rw] client_token
|
1409
|
+
# An idempotency token used to identify the request and guarantee that
|
1410
|
+
# requests are unique.
|
1411
|
+
#
|
1412
|
+
# **A suitable default value is auto-generated.** You should normally
|
1413
|
+
# not need to pass this option.
|
1414
|
+
# @return [String]
|
1415
|
+
#
|
1416
|
+
# @!attribute [rw] details
|
1417
|
+
# A container element containing details about the Multi-Region Access
|
1418
|
+
# Point.
|
1419
|
+
# @return [Types::DeleteMultiRegionAccessPointInput]
|
1420
|
+
#
|
1421
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/DeleteMultiRegionAccessPointRequest AWS API Documentation
|
1422
|
+
#
|
1423
|
+
class DeleteMultiRegionAccessPointRequest < Struct.new(
|
1424
|
+
:account_id,
|
1425
|
+
:client_token,
|
1426
|
+
:details)
|
1427
|
+
SENSITIVE = []
|
1428
|
+
include Aws::Structure
|
1429
|
+
end
|
1430
|
+
|
1431
|
+
# @!attribute [rw] request_token_arn
|
1432
|
+
# The request token associated with the request. You can use this
|
1433
|
+
# token with [DescribeMultiRegionAccessPointOperation][1] to determine
|
1434
|
+
# the status of asynchronous requests.
|
1435
|
+
#
|
1436
|
+
#
|
1437
|
+
#
|
1438
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DescribeMultiRegionAccessPointOperation.html
|
1439
|
+
# @return [String]
|
1440
|
+
#
|
1441
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/DeleteMultiRegionAccessPointResult AWS API Documentation
|
1442
|
+
#
|
1443
|
+
class DeleteMultiRegionAccessPointResult < Struct.new(
|
1444
|
+
:request_token_arn)
|
1445
|
+
SENSITIVE = []
|
1446
|
+
include Aws::Structure
|
1447
|
+
end
|
1448
|
+
|
1107
1449
|
# @note When making an API call, you may pass DeletePublicAccessBlockRequest
|
1108
1450
|
# data as a hash:
|
1109
1451
|
#
|
@@ -1112,8 +1454,8 @@ module Aws::S3Control
|
|
1112
1454
|
# }
|
1113
1455
|
#
|
1114
1456
|
# @!attribute [rw] account_id
|
1115
|
-
# The account ID for the account whose
|
1116
|
-
# configuration you want to remove.
|
1457
|
+
# The account ID for the Amazon Web Services account whose
|
1458
|
+
# `PublicAccessBlock` configuration you want to remove.
|
1117
1459
|
# @return [String]
|
1118
1460
|
#
|
1119
1461
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/DeletePublicAccessBlockRequest AWS API Documentation
|
@@ -1187,7 +1529,8 @@ module Aws::S3Control
|
|
1187
1529
|
# }
|
1188
1530
|
#
|
1189
1531
|
# @!attribute [rw] account_id
|
1190
|
-
# The account ID associated with the S3 Batch
|
1532
|
+
# The Amazon Web Services account ID associated with the S3 Batch
|
1533
|
+
# Operations job.
|
1191
1534
|
# @return [String]
|
1192
1535
|
#
|
1193
1536
|
# @!attribute [rw] job_id
|
@@ -1216,6 +1559,69 @@ module Aws::S3Control
|
|
1216
1559
|
include Aws::Structure
|
1217
1560
|
end
|
1218
1561
|
|
1562
|
+
# @note When making an API call, you may pass DescribeMultiRegionAccessPointOperationRequest
|
1563
|
+
# data as a hash:
|
1564
|
+
#
|
1565
|
+
# {
|
1566
|
+
# account_id: "AccountId", # required
|
1567
|
+
# request_token_arn: "AsyncRequestTokenARN", # required
|
1568
|
+
# }
|
1569
|
+
#
|
1570
|
+
# @!attribute [rw] account_id
|
1571
|
+
# The Amazon Web Services account ID for the owner of the Multi-Region
|
1572
|
+
# Access Point.
|
1573
|
+
# @return [String]
|
1574
|
+
#
|
1575
|
+
# @!attribute [rw] request_token_arn
|
1576
|
+
# The request token associated with the request you want to know
|
1577
|
+
# about. This request token is returned as part of the response when
|
1578
|
+
# you make an asynchronous request. You provide this token to query
|
1579
|
+
# about the status of the asynchronous action.
|
1580
|
+
# @return [String]
|
1581
|
+
#
|
1582
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/DescribeMultiRegionAccessPointOperationRequest AWS API Documentation
|
1583
|
+
#
|
1584
|
+
class DescribeMultiRegionAccessPointOperationRequest < Struct.new(
|
1585
|
+
:account_id,
|
1586
|
+
:request_token_arn)
|
1587
|
+
SENSITIVE = []
|
1588
|
+
include Aws::Structure
|
1589
|
+
end
|
1590
|
+
|
1591
|
+
# @!attribute [rw] async_operation
|
1592
|
+
# A container element containing the details of the asynchronous
|
1593
|
+
# operation.
|
1594
|
+
# @return [Types::AsyncOperation]
|
1595
|
+
#
|
1596
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/DescribeMultiRegionAccessPointOperationResult AWS API Documentation
|
1597
|
+
#
|
1598
|
+
class DescribeMultiRegionAccessPointOperationResult < Struct.new(
|
1599
|
+
:async_operation)
|
1600
|
+
SENSITIVE = []
|
1601
|
+
include Aws::Structure
|
1602
|
+
end
|
1603
|
+
|
1604
|
+
# The last established access control policy for a Multi-Region Access
|
1605
|
+
# Point.
|
1606
|
+
#
|
1607
|
+
# When you update the policy, the update is first listed as the proposed
|
1608
|
+
# policy. After the update is finished and all Regions have been
|
1609
|
+
# updated, the proposed policy is listed as the established policy. If
|
1610
|
+
# both policies have the same version number, the proposed policy is the
|
1611
|
+
# established policy.
|
1612
|
+
#
|
1613
|
+
# @!attribute [rw] policy
|
1614
|
+
# The details of the last established policy.
|
1615
|
+
# @return [String]
|
1616
|
+
#
|
1617
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/EstablishedMultiRegionAccessPointPolicy AWS API Documentation
|
1618
|
+
#
|
1619
|
+
class EstablishedMultiRegionAccessPointPolicy < Struct.new(
|
1620
|
+
:policy)
|
1621
|
+
SENSITIVE = []
|
1622
|
+
include Aws::Structure
|
1623
|
+
end
|
1624
|
+
|
1219
1625
|
# A container for what Amazon S3 Storage Lens will exclude.
|
1220
1626
|
#
|
1221
1627
|
# @note When making an API call, you may pass Exclude
|
@@ -1626,7 +2032,7 @@ module Aws::S3Control
|
|
1626
2032
|
# }
|
1627
2033
|
#
|
1628
2034
|
# @!attribute [rw] account_id
|
1629
|
-
# The account ID of the Outposts bucket.
|
2035
|
+
# The Amazon Web Services account ID of the Outposts bucket.
|
1630
2036
|
# @return [String]
|
1631
2037
|
#
|
1632
2038
|
# @!attribute [rw] bucket
|
@@ -1676,7 +2082,7 @@ module Aws::S3Control
|
|
1676
2082
|
# }
|
1677
2083
|
#
|
1678
2084
|
# @!attribute [rw] account_id
|
1679
|
-
# The account ID of the Outposts bucket.
|
2085
|
+
# The Amazon Web Services account ID of the Outposts bucket.
|
1680
2086
|
# @return [String]
|
1681
2087
|
#
|
1682
2088
|
# @!attribute [rw] bucket
|
@@ -1726,7 +2132,7 @@ module Aws::S3Control
|
|
1726
2132
|
# }
|
1727
2133
|
#
|
1728
2134
|
# @!attribute [rw] account_id
|
1729
|
-
# The account ID of the Outposts bucket.
|
2135
|
+
# The Amazon Web Services account ID of the Outposts bucket.
|
1730
2136
|
# @return [String]
|
1731
2137
|
#
|
1732
2138
|
# @!attribute [rw] bucket
|
@@ -1785,7 +2191,7 @@ module Aws::S3Control
|
|
1785
2191
|
# }
|
1786
2192
|
#
|
1787
2193
|
# @!attribute [rw] account_id
|
1788
|
-
# The account ID of the Outposts bucket.
|
2194
|
+
# The Amazon Web Services account ID of the Outposts bucket.
|
1789
2195
|
# @return [String]
|
1790
2196
|
#
|
1791
2197
|
# @!attribute [rw] bucket
|
@@ -1805,68 +2211,216 @@ module Aws::S3Control
|
|
1805
2211
|
# The value must be URL encoded.
|
1806
2212
|
# @return [String]
|
1807
2213
|
#
|
1808
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/GetBucketTaggingRequest AWS API Documentation
|
2214
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/GetBucketTaggingRequest AWS API Documentation
|
2215
|
+
#
|
2216
|
+
class GetBucketTaggingRequest < Struct.new(
|
2217
|
+
:account_id,
|
2218
|
+
:bucket)
|
2219
|
+
SENSITIVE = []
|
2220
|
+
include Aws::Structure
|
2221
|
+
end
|
2222
|
+
|
2223
|
+
# @!attribute [rw] tag_set
|
2224
|
+
# The tags set of the Outposts bucket.
|
2225
|
+
# @return [Array<Types::S3Tag>]
|
2226
|
+
#
|
2227
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/GetBucketTaggingResult AWS API Documentation
|
2228
|
+
#
|
2229
|
+
class GetBucketTaggingResult < Struct.new(
|
2230
|
+
:tag_set)
|
2231
|
+
SENSITIVE = []
|
2232
|
+
include Aws::Structure
|
2233
|
+
end
|
2234
|
+
|
2235
|
+
# @note When making an API call, you may pass GetJobTaggingRequest
|
2236
|
+
# data as a hash:
|
2237
|
+
#
|
2238
|
+
# {
|
2239
|
+
# account_id: "AccountId", # required
|
2240
|
+
# job_id: "JobId", # required
|
2241
|
+
# }
|
2242
|
+
#
|
2243
|
+
# @!attribute [rw] account_id
|
2244
|
+
# The Amazon Web Services account ID associated with the S3 Batch
|
2245
|
+
# Operations job.
|
2246
|
+
# @return [String]
|
2247
|
+
#
|
2248
|
+
# @!attribute [rw] job_id
|
2249
|
+
# The ID for the S3 Batch Operations job whose tags you want to
|
2250
|
+
# retrieve.
|
2251
|
+
# @return [String]
|
2252
|
+
#
|
2253
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/GetJobTaggingRequest AWS API Documentation
|
2254
|
+
#
|
2255
|
+
class GetJobTaggingRequest < Struct.new(
|
2256
|
+
:account_id,
|
2257
|
+
:job_id)
|
2258
|
+
SENSITIVE = []
|
2259
|
+
include Aws::Structure
|
2260
|
+
end
|
2261
|
+
|
2262
|
+
# @!attribute [rw] tags
|
2263
|
+
# The set of tags associated with the S3 Batch Operations job.
|
2264
|
+
# @return [Array<Types::S3Tag>]
|
2265
|
+
#
|
2266
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/GetJobTaggingResult AWS API Documentation
|
2267
|
+
#
|
2268
|
+
class GetJobTaggingResult < Struct.new(
|
2269
|
+
:tags)
|
2270
|
+
SENSITIVE = []
|
2271
|
+
include Aws::Structure
|
2272
|
+
end
|
2273
|
+
|
2274
|
+
# @note When making an API call, you may pass GetMultiRegionAccessPointPolicyRequest
|
2275
|
+
# data as a hash:
|
2276
|
+
#
|
2277
|
+
# {
|
2278
|
+
# account_id: "AccountId", # required
|
2279
|
+
# name: "MultiRegionAccessPointName", # required
|
2280
|
+
# }
|
2281
|
+
#
|
2282
|
+
# @!attribute [rw] account_id
|
2283
|
+
# The Amazon Web Services account ID for the owner of the Multi-Region
|
2284
|
+
# Access Point.
|
2285
|
+
# @return [String]
|
2286
|
+
#
|
2287
|
+
# @!attribute [rw] name
|
2288
|
+
# Specifies the Multi-Region Access Point. The name of the
|
2289
|
+
# Multi-Region Access Point is different from the alias. For more
|
2290
|
+
# information about the distinction between the name and the alias of
|
2291
|
+
# an Multi-Region Access Point, see [Managing Multi-Region Access
|
2292
|
+
# Points][1] in the *Amazon S3 User Guide*.
|
2293
|
+
#
|
2294
|
+
#
|
2295
|
+
#
|
2296
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/CreatingMultiRegionAccessPoints.html#multi-region-access-point-naming
|
2297
|
+
# @return [String]
|
2298
|
+
#
|
2299
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/GetMultiRegionAccessPointPolicyRequest AWS API Documentation
|
2300
|
+
#
|
2301
|
+
class GetMultiRegionAccessPointPolicyRequest < Struct.new(
|
2302
|
+
:account_id,
|
2303
|
+
:name)
|
2304
|
+
SENSITIVE = []
|
2305
|
+
include Aws::Structure
|
2306
|
+
end
|
2307
|
+
|
2308
|
+
# @!attribute [rw] policy
|
2309
|
+
# The policy associated with the specified Multi-Region Access Point.
|
2310
|
+
# @return [Types::MultiRegionAccessPointPolicyDocument]
|
2311
|
+
#
|
2312
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/GetMultiRegionAccessPointPolicyResult AWS API Documentation
|
2313
|
+
#
|
2314
|
+
class GetMultiRegionAccessPointPolicyResult < Struct.new(
|
2315
|
+
:policy)
|
2316
|
+
SENSITIVE = []
|
2317
|
+
include Aws::Structure
|
2318
|
+
end
|
2319
|
+
|
2320
|
+
# @note When making an API call, you may pass GetMultiRegionAccessPointPolicyStatusRequest
|
2321
|
+
# data as a hash:
|
2322
|
+
#
|
2323
|
+
# {
|
2324
|
+
# account_id: "AccountId", # required
|
2325
|
+
# name: "MultiRegionAccessPointName", # required
|
2326
|
+
# }
|
2327
|
+
#
|
2328
|
+
# @!attribute [rw] account_id
|
2329
|
+
# The Amazon Web Services account ID for the owner of the Multi-Region
|
2330
|
+
# Access Point.
|
2331
|
+
# @return [String]
|
2332
|
+
#
|
2333
|
+
# @!attribute [rw] name
|
2334
|
+
# Specifies the Multi-Region Access Point. The name of the
|
2335
|
+
# Multi-Region Access Point is different from the alias. For more
|
2336
|
+
# information about the distinction between the name and the alias of
|
2337
|
+
# an Multi-Region Access Point, see [Managing Multi-Region Access
|
2338
|
+
# Points][1] in the *Amazon S3 User Guide*.
|
2339
|
+
#
|
2340
|
+
#
|
2341
|
+
#
|
2342
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/CreatingMultiRegionAccessPoints.html#multi-region-access-point-naming
|
2343
|
+
# @return [String]
|
2344
|
+
#
|
2345
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/GetMultiRegionAccessPointPolicyStatusRequest AWS API Documentation
|
1809
2346
|
#
|
1810
|
-
class
|
2347
|
+
class GetMultiRegionAccessPointPolicyStatusRequest < Struct.new(
|
1811
2348
|
:account_id,
|
1812
|
-
:
|
2349
|
+
:name)
|
1813
2350
|
SENSITIVE = []
|
1814
2351
|
include Aws::Structure
|
1815
2352
|
end
|
1816
2353
|
|
1817
|
-
# @!attribute [rw]
|
1818
|
-
#
|
1819
|
-
#
|
2354
|
+
# @!attribute [rw] established
|
2355
|
+
# Indicates whether this access point policy is public. For more
|
2356
|
+
# information about how Amazon S3 evaluates policies to determine
|
2357
|
+
# whether they are public, see [The Meaning of "Public"][1] in the
|
2358
|
+
# *Amazon S3 User Guide*.
|
1820
2359
|
#
|
1821
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/GetBucketTaggingResult AWS API Documentation
|
1822
2360
|
#
|
1823
|
-
|
1824
|
-
|
2361
|
+
#
|
2362
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html#access-control-block-public-access-policy-status
|
2363
|
+
# @return [Types::PolicyStatus]
|
2364
|
+
#
|
2365
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/GetMultiRegionAccessPointPolicyStatusResult AWS API Documentation
|
2366
|
+
#
|
2367
|
+
class GetMultiRegionAccessPointPolicyStatusResult < Struct.new(
|
2368
|
+
:established)
|
1825
2369
|
SENSITIVE = []
|
1826
2370
|
include Aws::Structure
|
1827
2371
|
end
|
1828
2372
|
|
1829
|
-
# @note When making an API call, you may pass
|
2373
|
+
# @note When making an API call, you may pass GetMultiRegionAccessPointRequest
|
1830
2374
|
# data as a hash:
|
1831
2375
|
#
|
1832
2376
|
# {
|
1833
2377
|
# account_id: "AccountId", # required
|
1834
|
-
#
|
2378
|
+
# name: "MultiRegionAccessPointName", # required
|
1835
2379
|
# }
|
1836
2380
|
#
|
1837
2381
|
# @!attribute [rw] account_id
|
1838
|
-
# The account ID
|
2382
|
+
# The Amazon Web Services account ID for the owner of the Multi-Region
|
2383
|
+
# Access Point.
|
1839
2384
|
# @return [String]
|
1840
2385
|
#
|
1841
|
-
# @!attribute [rw]
|
1842
|
-
# The
|
1843
|
-
#
|
2386
|
+
# @!attribute [rw] name
|
2387
|
+
# The name of the Multi-Region Access Point whose configuration
|
2388
|
+
# information you want to receive. The name of the Multi-Region Access
|
2389
|
+
# Point is different from the alias. For more information about the
|
2390
|
+
# distinction between the name and the alias of an Multi-Region Access
|
2391
|
+
# Point, see [Managing Multi-Region Access Points][1] in the *Amazon
|
2392
|
+
# S3 User Guide*.
|
2393
|
+
#
|
2394
|
+
#
|
2395
|
+
#
|
2396
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/CreatingMultiRegionAccessPoints.html#multi-region-access-point-naming
|
1844
2397
|
# @return [String]
|
1845
2398
|
#
|
1846
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/
|
2399
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/GetMultiRegionAccessPointRequest AWS API Documentation
|
1847
2400
|
#
|
1848
|
-
class
|
2401
|
+
class GetMultiRegionAccessPointRequest < Struct.new(
|
1849
2402
|
:account_id,
|
1850
|
-
:
|
2403
|
+
:name)
|
1851
2404
|
SENSITIVE = []
|
1852
2405
|
include Aws::Structure
|
1853
2406
|
end
|
1854
2407
|
|
1855
|
-
# @!attribute [rw]
|
1856
|
-
#
|
1857
|
-
#
|
2408
|
+
# @!attribute [rw] access_point
|
2409
|
+
# A container element containing the details of the requested
|
2410
|
+
# Multi-Region Access Point.
|
2411
|
+
# @return [Types::MultiRegionAccessPointReport]
|
1858
2412
|
#
|
1859
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/
|
2413
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/GetMultiRegionAccessPointResult AWS API Documentation
|
1860
2414
|
#
|
1861
|
-
class
|
1862
|
-
:
|
2415
|
+
class GetMultiRegionAccessPointResult < Struct.new(
|
2416
|
+
:access_point)
|
1863
2417
|
SENSITIVE = []
|
1864
2418
|
include Aws::Structure
|
1865
2419
|
end
|
1866
2420
|
|
1867
2421
|
# @!attribute [rw] public_access_block_configuration
|
1868
2422
|
# The `PublicAccessBlock` configuration currently in effect for this
|
1869
|
-
# account.
|
2423
|
+
# Amazon Web Services account.
|
1870
2424
|
# @return [Types::PublicAccessBlockConfiguration]
|
1871
2425
|
#
|
1872
2426
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/GetPublicAccessBlockOutput AWS API Documentation
|
@@ -1885,8 +2439,8 @@ module Aws::S3Control
|
|
1885
2439
|
# }
|
1886
2440
|
#
|
1887
2441
|
# @!attribute [rw] account_id
|
1888
|
-
# The account ID for the account whose
|
1889
|
-
# configuration you want to retrieve.
|
2442
|
+
# The account ID for the Amazon Web Services account whose
|
2443
|
+
# `PublicAccessBlock` configuration you want to retrieve.
|
1890
2444
|
# @return [String]
|
1891
2445
|
#
|
1892
2446
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/GetPublicAccessBlockRequest AWS API Documentation
|
@@ -3007,8 +3561,8 @@ module Aws::S3Control
|
|
3007
3561
|
# }
|
3008
3562
|
#
|
3009
3563
|
# @!attribute [rw] account_id
|
3010
|
-
# The account ID for owner of the bucket whose
|
3011
|
-
# to list.
|
3564
|
+
# The Amazon Web Services account ID for owner of the bucket whose
|
3565
|
+
# access points you want to list.
|
3012
3566
|
# @return [String]
|
3013
3567
|
#
|
3014
3568
|
# @!attribute [rw] bucket
|
@@ -3087,7 +3641,8 @@ module Aws::S3Control
|
|
3087
3641
|
# }
|
3088
3642
|
#
|
3089
3643
|
# @!attribute [rw] account_id
|
3090
|
-
# The account ID associated with the S3 Batch
|
3644
|
+
# The Amazon Web Services account ID associated with the S3 Batch
|
3645
|
+
# Operations job.
|
3091
3646
|
# @return [String]
|
3092
3647
|
#
|
3093
3648
|
# @!attribute [rw] job_statuses
|
@@ -3139,6 +3694,58 @@ module Aws::S3Control
|
|
3139
3694
|
include Aws::Structure
|
3140
3695
|
end
|
3141
3696
|
|
3697
|
+
# @note When making an API call, you may pass ListMultiRegionAccessPointsRequest
|
3698
|
+
# data as a hash:
|
3699
|
+
#
|
3700
|
+
# {
|
3701
|
+
# account_id: "AccountId", # required
|
3702
|
+
# next_token: "NonEmptyMaxLength1024String",
|
3703
|
+
# max_results: 1,
|
3704
|
+
# }
|
3705
|
+
#
|
3706
|
+
# @!attribute [rw] account_id
|
3707
|
+
# The Amazon Web Services account ID for the owner of the Multi-Region
|
3708
|
+
# Access Point.
|
3709
|
+
# @return [String]
|
3710
|
+
#
|
3711
|
+
# @!attribute [rw] next_token
|
3712
|
+
# Not currently used. Do not use this parameter.
|
3713
|
+
# @return [String]
|
3714
|
+
#
|
3715
|
+
# @!attribute [rw] max_results
|
3716
|
+
# Not currently used. Do not use this parameter.
|
3717
|
+
# @return [Integer]
|
3718
|
+
#
|
3719
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/ListMultiRegionAccessPointsRequest AWS API Documentation
|
3720
|
+
#
|
3721
|
+
class ListMultiRegionAccessPointsRequest < Struct.new(
|
3722
|
+
:account_id,
|
3723
|
+
:next_token,
|
3724
|
+
:max_results)
|
3725
|
+
SENSITIVE = []
|
3726
|
+
include Aws::Structure
|
3727
|
+
end
|
3728
|
+
|
3729
|
+
# @!attribute [rw] access_points
|
3730
|
+
# The list of Multi-Region Access Points associated with the user.
|
3731
|
+
# @return [Array<Types::MultiRegionAccessPointReport>]
|
3732
|
+
#
|
3733
|
+
# @!attribute [rw] next_token
|
3734
|
+
# If the specified bucket has more Multi-Region Access Points than can
|
3735
|
+
# be returned in one call to this action, this field contains a
|
3736
|
+
# continuation token. You can use this token tin subsequent calls to
|
3737
|
+
# this action to retrieve additional Multi-Region Access Points.
|
3738
|
+
# @return [String]
|
3739
|
+
#
|
3740
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/ListMultiRegionAccessPointsResult AWS API Documentation
|
3741
|
+
#
|
3742
|
+
class ListMultiRegionAccessPointsResult < Struct.new(
|
3743
|
+
:access_points,
|
3744
|
+
:next_token)
|
3745
|
+
SENSITIVE = []
|
3746
|
+
include Aws::Structure
|
3747
|
+
end
|
3748
|
+
|
3142
3749
|
# @note When making an API call, you may pass ListRegionalBucketsRequest
|
3143
3750
|
# data as a hash:
|
3144
3751
|
#
|
@@ -3150,7 +3757,7 @@ module Aws::S3Control
|
|
3150
3757
|
# }
|
3151
3758
|
#
|
3152
3759
|
# @!attribute [rw] account_id
|
3153
|
-
# The account ID of the Outposts bucket.
|
3760
|
+
# The Amazon Web Services account ID of the Outposts bucket.
|
3154
3761
|
# @return [String]
|
3155
3762
|
#
|
3156
3763
|
# @!attribute [rw] next_token
|
@@ -3276,6 +3883,132 @@ module Aws::S3Control
|
|
3276
3883
|
include Aws::Structure
|
3277
3884
|
end
|
3278
3885
|
|
3886
|
+
# The Multi-Region Access Point access control policy.
|
3887
|
+
#
|
3888
|
+
# When you update the policy, the update is first listed as the proposed
|
3889
|
+
# policy. After the update is finished and all Regions have been
|
3890
|
+
# updated, the proposed policy is listed as the established policy. If
|
3891
|
+
# both policies have the same version number, the proposed policy is the
|
3892
|
+
# established policy.
|
3893
|
+
#
|
3894
|
+
# @!attribute [rw] established
|
3895
|
+
# The last established policy for the Multi-Region Access Point.
|
3896
|
+
# @return [Types::EstablishedMultiRegionAccessPointPolicy]
|
3897
|
+
#
|
3898
|
+
# @!attribute [rw] proposed
|
3899
|
+
# The proposed policy for the Multi-Region Access Point.
|
3900
|
+
# @return [Types::ProposedMultiRegionAccessPointPolicy]
|
3901
|
+
#
|
3902
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/MultiRegionAccessPointPolicyDocument AWS API Documentation
|
3903
|
+
#
|
3904
|
+
class MultiRegionAccessPointPolicyDocument < Struct.new(
|
3905
|
+
:established,
|
3906
|
+
:proposed)
|
3907
|
+
SENSITIVE = []
|
3908
|
+
include Aws::Structure
|
3909
|
+
end
|
3910
|
+
|
3911
|
+
# Status information for a single Multi-Region Access Point Region.
|
3912
|
+
#
|
3913
|
+
# @!attribute [rw] name
|
3914
|
+
# The name of the Region in the Multi-Region Access Point.
|
3915
|
+
# @return [String]
|
3916
|
+
#
|
3917
|
+
# @!attribute [rw] request_status
|
3918
|
+
# The current status of the Multi-Region Access Point in this Region.
|
3919
|
+
# @return [String]
|
3920
|
+
#
|
3921
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/MultiRegionAccessPointRegionalResponse AWS API Documentation
|
3922
|
+
#
|
3923
|
+
class MultiRegionAccessPointRegionalResponse < Struct.new(
|
3924
|
+
:name,
|
3925
|
+
:request_status)
|
3926
|
+
SENSITIVE = []
|
3927
|
+
include Aws::Structure
|
3928
|
+
end
|
3929
|
+
|
3930
|
+
# A collection of statuses for a Multi-Region Access Point in the
|
3931
|
+
# various Regions it supports.
|
3932
|
+
#
|
3933
|
+
# @!attribute [rw] name
|
3934
|
+
# The name of the Multi-Region Access Point.
|
3935
|
+
# @return [String]
|
3936
|
+
#
|
3937
|
+
# @!attribute [rw] alias
|
3938
|
+
# The alias for the Multi-Region Access Point. For more information
|
3939
|
+
# about the distinction between the name and the alias of an
|
3940
|
+
# Multi-Region Access Point, see [Managing Multi-Region Access
|
3941
|
+
# Points][1].
|
3942
|
+
#
|
3943
|
+
#
|
3944
|
+
#
|
3945
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/CreatingMultiRegionAccessPoints.html#multi-region-access-point-naming
|
3946
|
+
# @return [String]
|
3947
|
+
#
|
3948
|
+
# @!attribute [rw] created_at
|
3949
|
+
# When the Multi-Region Access Point create request was received.
|
3950
|
+
# @return [Time]
|
3951
|
+
#
|
3952
|
+
# @!attribute [rw] public_access_block
|
3953
|
+
# The `PublicAccessBlock` configuration that you want to apply to this
|
3954
|
+
# Amazon S3 account. You can enable the configuration options in any
|
3955
|
+
# combination. For more information about when Amazon S3 considers a
|
3956
|
+
# bucket or object public, see [The Meaning of "Public"][1] in the
|
3957
|
+
# *Amazon S3 User Guide*.
|
3958
|
+
#
|
3959
|
+
# This is not supported for Amazon S3 on Outposts.
|
3960
|
+
#
|
3961
|
+
#
|
3962
|
+
#
|
3963
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html#access-control-block-public-access-policy-status
|
3964
|
+
# @return [Types::PublicAccessBlockConfiguration]
|
3965
|
+
#
|
3966
|
+
# @!attribute [rw] status
|
3967
|
+
# The current status of the Multi-Region Access Point.
|
3968
|
+
#
|
3969
|
+
# `CREATING` and `DELETING` are temporary states that exist while the
|
3970
|
+
# request is propogating and being completed. If a Multi-Region Access
|
3971
|
+
# Point has a status of `PARTIALLY_CREATED`, you can retry creation or
|
3972
|
+
# send a request to delete the Multi-Region Access Point. If a
|
3973
|
+
# Multi-Region Access Point has a status of `PARTIALLY_DELETED`, you
|
3974
|
+
# can retry a delete request to finish the deletion of the
|
3975
|
+
# Multi-Region Access Point.
|
3976
|
+
# @return [String]
|
3977
|
+
#
|
3978
|
+
# @!attribute [rw] regions
|
3979
|
+
# A collection of the Regions and buckets associated with the
|
3980
|
+
# Multi-Region Access Point.
|
3981
|
+
# @return [Array<Types::RegionReport>]
|
3982
|
+
#
|
3983
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/MultiRegionAccessPointReport AWS API Documentation
|
3984
|
+
#
|
3985
|
+
class MultiRegionAccessPointReport < Struct.new(
|
3986
|
+
:name,
|
3987
|
+
:alias,
|
3988
|
+
:created_at,
|
3989
|
+
:public_access_block,
|
3990
|
+
:status,
|
3991
|
+
:regions)
|
3992
|
+
SENSITIVE = []
|
3993
|
+
include Aws::Structure
|
3994
|
+
end
|
3995
|
+
|
3996
|
+
# The Multi-Region Access Point details that are returned when querying
|
3997
|
+
# about an asynchronous request.
|
3998
|
+
#
|
3999
|
+
# @!attribute [rw] regions
|
4000
|
+
# A collection of status information for the different Regions that a
|
4001
|
+
# Multi-Region Access Point supports.
|
4002
|
+
# @return [Array<Types::MultiRegionAccessPointRegionalResponse>]
|
4003
|
+
#
|
4004
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/MultiRegionAccessPointsAsyncResponse AWS API Documentation
|
4005
|
+
#
|
4006
|
+
class MultiRegionAccessPointsAsyncResponse < Struct.new(
|
4007
|
+
:regions)
|
4008
|
+
SENSITIVE = []
|
4009
|
+
include Aws::Structure
|
4010
|
+
end
|
4011
|
+
|
3279
4012
|
# Amazon S3 throws this exception if you make a `GetPublicAccessBlock`
|
3280
4013
|
# request against an account that doesn't have a
|
3281
4014
|
# `PublicAccessBlockConfiguration` set.
|
@@ -3575,6 +4308,26 @@ module Aws::S3Control
|
|
3575
4308
|
include Aws::Structure
|
3576
4309
|
end
|
3577
4310
|
|
4311
|
+
# The proposed access control policy for the Multi-Region Access Point.
|
4312
|
+
#
|
4313
|
+
# When you update the policy, the update is first listed as the proposed
|
4314
|
+
# policy. After the update is finished and all Regions have been
|
4315
|
+
# updated, the proposed policy is listed as the established policy. If
|
4316
|
+
# both policies have the same version number, the proposed policy is the
|
4317
|
+
# established policy.
|
4318
|
+
#
|
4319
|
+
# @!attribute [rw] policy
|
4320
|
+
# The details of the proposed policy.
|
4321
|
+
# @return [String]
|
4322
|
+
#
|
4323
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/ProposedMultiRegionAccessPointPolicy AWS API Documentation
|
4324
|
+
#
|
4325
|
+
class ProposedMultiRegionAccessPointPolicy < Struct.new(
|
4326
|
+
:policy)
|
4327
|
+
SENSITIVE = []
|
4328
|
+
include Aws::Structure
|
4329
|
+
end
|
4330
|
+
|
3578
4331
|
# The `PublicAccessBlock` configuration that you want to apply to this
|
3579
4332
|
# Amazon S3 account. You can enable the configuration options in any
|
3580
4333
|
# combination. For more information about when Amazon S3 considers a
|
@@ -3751,8 +4504,8 @@ module Aws::S3Control
|
|
3751
4504
|
# }
|
3752
4505
|
#
|
3753
4506
|
# @!attribute [rw] account_id
|
3754
|
-
# The account ID for owner of the bucket
|
3755
|
-
# access point.
|
4507
|
+
# The Amazon Web Services account ID for owner of the bucket
|
4508
|
+
# associated with the specified access point.
|
3756
4509
|
# @return [String]
|
3757
4510
|
#
|
3758
4511
|
# @!attribute [rw] name
|
@@ -3851,7 +4604,7 @@ module Aws::S3Control
|
|
3851
4604
|
# }
|
3852
4605
|
#
|
3853
4606
|
# @!attribute [rw] account_id
|
3854
|
-
# The account ID of the Outposts bucket.
|
4607
|
+
# The Amazon Web Services account ID of the Outposts bucket.
|
3855
4608
|
# @return [String]
|
3856
4609
|
#
|
3857
4610
|
# @!attribute [rw] bucket
|
@@ -3883,7 +4636,7 @@ module Aws::S3Control
|
|
3883
4636
|
# }
|
3884
4637
|
#
|
3885
4638
|
# @!attribute [rw] account_id
|
3886
|
-
# The account ID of the Outposts bucket.
|
4639
|
+
# The Amazon Web Services account ID of the Outposts bucket.
|
3887
4640
|
# @return [String]
|
3888
4641
|
#
|
3889
4642
|
# @!attribute [rw] bucket
|
@@ -3944,7 +4697,7 @@ module Aws::S3Control
|
|
3944
4697
|
# }
|
3945
4698
|
#
|
3946
4699
|
# @!attribute [rw] account_id
|
3947
|
-
# The account ID of the Outposts bucket.
|
4700
|
+
# The Amazon Web Services account ID of the Outposts bucket.
|
3948
4701
|
# @return [String]
|
3949
4702
|
#
|
3950
4703
|
# @!attribute [rw] bucket
|
@@ -3992,7 +4745,8 @@ module Aws::S3Control
|
|
3992
4745
|
# }
|
3993
4746
|
#
|
3994
4747
|
# @!attribute [rw] account_id
|
3995
|
-
# The account ID associated with the S3 Batch
|
4748
|
+
# The Amazon Web Services account ID associated with the S3 Batch
|
4749
|
+
# Operations job.
|
3996
4750
|
# @return [String]
|
3997
4751
|
#
|
3998
4752
|
# @!attribute [rw] job_id
|
@@ -4018,6 +4772,97 @@ module Aws::S3Control
|
|
4018
4772
|
#
|
4019
4773
|
class PutJobTaggingResult < Aws::EmptyStructure; end
|
4020
4774
|
|
4775
|
+
# A container for the information associated with a
|
4776
|
+
# [PutMultiRegionAccessPoint][1] request.
|
4777
|
+
#
|
4778
|
+
#
|
4779
|
+
#
|
4780
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutMultiRegionAccessPoint.html
|
4781
|
+
#
|
4782
|
+
# @note When making an API call, you may pass PutMultiRegionAccessPointPolicyInput
|
4783
|
+
# data as a hash:
|
4784
|
+
#
|
4785
|
+
# {
|
4786
|
+
# name: "MultiRegionAccessPointName", # required
|
4787
|
+
# policy: "Policy", # required
|
4788
|
+
# }
|
4789
|
+
#
|
4790
|
+
# @!attribute [rw] name
|
4791
|
+
# The name of the Multi-Region Access Point associated with the
|
4792
|
+
# request.
|
4793
|
+
# @return [String]
|
4794
|
+
#
|
4795
|
+
# @!attribute [rw] policy
|
4796
|
+
# The policy details for the `PutMultiRegionAccessPoint` request.
|
4797
|
+
# @return [String]
|
4798
|
+
#
|
4799
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/PutMultiRegionAccessPointPolicyInput AWS API Documentation
|
4800
|
+
#
|
4801
|
+
class PutMultiRegionAccessPointPolicyInput < Struct.new(
|
4802
|
+
:name,
|
4803
|
+
:policy)
|
4804
|
+
SENSITIVE = []
|
4805
|
+
include Aws::Structure
|
4806
|
+
end
|
4807
|
+
|
4808
|
+
# @note When making an API call, you may pass PutMultiRegionAccessPointPolicyRequest
|
4809
|
+
# data as a hash:
|
4810
|
+
#
|
4811
|
+
# {
|
4812
|
+
# account_id: "AccountId", # required
|
4813
|
+
# client_token: "MultiRegionAccessPointClientToken", # required
|
4814
|
+
# details: { # required
|
4815
|
+
# name: "MultiRegionAccessPointName", # required
|
4816
|
+
# policy: "Policy", # required
|
4817
|
+
# },
|
4818
|
+
# }
|
4819
|
+
#
|
4820
|
+
# @!attribute [rw] account_id
|
4821
|
+
# The Amazon Web Services account ID for the owner of the Multi-Region
|
4822
|
+
# Access Point.
|
4823
|
+
# @return [String]
|
4824
|
+
#
|
4825
|
+
# @!attribute [rw] client_token
|
4826
|
+
# An idempotency token used to identify the request and guarantee that
|
4827
|
+
# requests are unique.
|
4828
|
+
#
|
4829
|
+
# **A suitable default value is auto-generated.** You should normally
|
4830
|
+
# not need to pass this option.
|
4831
|
+
# @return [String]
|
4832
|
+
#
|
4833
|
+
# @!attribute [rw] details
|
4834
|
+
# A container element containing the details of the policy for the
|
4835
|
+
# Multi-Region Access Point.
|
4836
|
+
# @return [Types::PutMultiRegionAccessPointPolicyInput]
|
4837
|
+
#
|
4838
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/PutMultiRegionAccessPointPolicyRequest AWS API Documentation
|
4839
|
+
#
|
4840
|
+
class PutMultiRegionAccessPointPolicyRequest < Struct.new(
|
4841
|
+
:account_id,
|
4842
|
+
:client_token,
|
4843
|
+
:details)
|
4844
|
+
SENSITIVE = []
|
4845
|
+
include Aws::Structure
|
4846
|
+
end
|
4847
|
+
|
4848
|
+
# @!attribute [rw] request_token_arn
|
4849
|
+
# The request token associated with the request. You can use this
|
4850
|
+
# token with [DescribeMultiRegionAccessPointOperation][1] to determine
|
4851
|
+
# the status of asynchronous requests.
|
4852
|
+
#
|
4853
|
+
#
|
4854
|
+
#
|
4855
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DescribeMultiRegionAccessPointOperation.html
|
4856
|
+
# @return [String]
|
4857
|
+
#
|
4858
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/PutMultiRegionAccessPointPolicyResult AWS API Documentation
|
4859
|
+
#
|
4860
|
+
class PutMultiRegionAccessPointPolicyResult < Struct.new(
|
4861
|
+
:request_token_arn)
|
4862
|
+
SENSITIVE = []
|
4863
|
+
include Aws::Structure
|
4864
|
+
end
|
4865
|
+
|
4021
4866
|
# @note When making an API call, you may pass PutPublicAccessBlockRequest
|
4022
4867
|
# data as a hash:
|
4023
4868
|
#
|
@@ -4033,12 +4878,12 @@ module Aws::S3Control
|
|
4033
4878
|
#
|
4034
4879
|
# @!attribute [rw] public_access_block_configuration
|
4035
4880
|
# The `PublicAccessBlock` configuration that you want to apply to the
|
4036
|
-
# specified account.
|
4881
|
+
# specified Amazon Web Services account.
|
4037
4882
|
# @return [Types::PublicAccessBlockConfiguration]
|
4038
4883
|
#
|
4039
4884
|
# @!attribute [rw] account_id
|
4040
|
-
# The account ID for the account whose
|
4041
|
-
# configuration you want to set.
|
4885
|
+
# The account ID for the Amazon Web Services account whose
|
4886
|
+
# `PublicAccessBlock` configuration you want to set.
|
4042
4887
|
# @return [String]
|
4043
4888
|
#
|
4044
4889
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/PutPublicAccessBlockRequest AWS API Documentation
|
@@ -4191,6 +5036,48 @@ module Aws::S3Control
|
|
4191
5036
|
#
|
4192
5037
|
class PutStorageLensConfigurationTaggingResult < Aws::EmptyStructure; end
|
4193
5038
|
|
5039
|
+
# A Region that supports a Multi-Region Access Point as well as the
|
5040
|
+
# associated bucket for the Region.
|
5041
|
+
#
|
5042
|
+
# @note When making an API call, you may pass Region
|
5043
|
+
# data as a hash:
|
5044
|
+
#
|
5045
|
+
# {
|
5046
|
+
# bucket: "BucketName", # required
|
5047
|
+
# }
|
5048
|
+
#
|
5049
|
+
# @!attribute [rw] bucket
|
5050
|
+
# The name of the associated bucket for the Region.
|
5051
|
+
# @return [String]
|
5052
|
+
#
|
5053
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/Region AWS API Documentation
|
5054
|
+
#
|
5055
|
+
class Region < Struct.new(
|
5056
|
+
:bucket)
|
5057
|
+
SENSITIVE = []
|
5058
|
+
include Aws::Structure
|
5059
|
+
end
|
5060
|
+
|
5061
|
+
# A combination of a bucket and Region that's part of a Multi-Region
|
5062
|
+
# Access Point.
|
5063
|
+
#
|
5064
|
+
# @!attribute [rw] bucket
|
5065
|
+
# The name of the bucket.
|
5066
|
+
# @return [String]
|
5067
|
+
#
|
5068
|
+
# @!attribute [rw] region
|
5069
|
+
# The name of the Region.
|
5070
|
+
# @return [String]
|
5071
|
+
#
|
5072
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/RegionReport AWS API Documentation
|
5073
|
+
#
|
5074
|
+
class RegionReport < Struct.new(
|
5075
|
+
:bucket,
|
5076
|
+
:region)
|
5077
|
+
SENSITIVE = []
|
5078
|
+
include Aws::Structure
|
5079
|
+
end
|
5080
|
+
|
4194
5081
|
# The container for the regional bucket.
|
4195
5082
|
#
|
4196
5083
|
# @!attribute [rw] bucket
|
@@ -5368,7 +6255,8 @@ module Aws::S3Control
|
|
5368
6255
|
# }
|
5369
6256
|
#
|
5370
6257
|
# @!attribute [rw] account_id
|
5371
|
-
# The account ID associated with the S3 Batch
|
6258
|
+
# The Amazon Web Services account ID associated with the S3 Batch
|
6259
|
+
# Operations job.
|
5372
6260
|
# @return [String]
|
5373
6261
|
#
|
5374
6262
|
# @!attribute [rw] job_id
|
@@ -5417,7 +6305,8 @@ module Aws::S3Control
|
|
5417
6305
|
# }
|
5418
6306
|
#
|
5419
6307
|
# @!attribute [rw] account_id
|
5420
|
-
# The account ID associated with the S3 Batch
|
6308
|
+
# The Amazon Web Services account ID associated with the S3 Batch
|
6309
|
+
# Operations job.
|
5421
6310
|
# @return [String]
|
5422
6311
|
#
|
5423
6312
|
# @!attribute [rw] job_id
|