List Multi Region Access Points
s3control_list_multi_region_access_points | R Documentation |
This operation is not supported by directory buckets¶
Description¶
This operation is not supported by directory buckets.
Returns a list of the Multi-Region Access Points currently associated with the specified Amazon Web Services account. Each call can return up to 100 Multi-Region Access Points, the maximum number of Multi-Region Access Points that can be associated with a single account.
This action will always be routed to the US West (Oregon) Region. For more information about the restrictions around working with Multi-Region Access Points, see Multi-Region Access Point restrictions and limitations in the Amazon S3 User Guide.
The following actions are related to ListMultiRegionAccessPoint
:
-
create_multi_region_access_point
-
delete_multi_region_access_point
-
describe_multi_region_access_point_operation
-
get_multi_region_access_point
Usage¶
Arguments¶
AccountId
[required] The Amazon Web Services account ID for the owner of the Multi-Region Access Point.
NextToken
Not currently used. Do not use this parameter.
MaxResults
Not currently used. Do not use this parameter.
Value¶
A list with the following syntax:
list(
AccessPoints = list(
list(
Name = "string",
Alias = "string",
CreatedAt = as.POSIXct(
"2015-01-01"
),
PublicAccessBlock = list(
BlockPublicAcls = TRUE|FALSE,
IgnorePublicAcls = TRUE|FALSE,
BlockPublicPolicy = TRUE|FALSE,
RestrictPublicBuckets = TRUE|FALSE
),
Status = "READY"|"INCONSISTENT_ACROSS_REGIONS"|"CREATING"|"PARTIALLY_CREATED"|"PARTIALLY_DELETED"|"DELETING",
Regions = list(
list(
Bucket = "string",
Region = "string",
BucketAccountId = "string"
)
)
)
),
NextToken = "string"
)