Skip to content

Get Multi Region Access Point

s3control_get_multi_region_access_point R Documentation

This operation is not supported by directory buckets

Description

This operation is not supported by directory buckets.

Returns configuration information about the specified Multi-Region Access Point.

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 get_multi_region_access_point:

  • create_multi_region_access_point

  • delete_multi_region_access_point

  • describe_multi_region_access_point_operation

  • list_multi_region_access_points

Usage

s3control_get_multi_region_access_point(AccountId, Name)

Arguments

AccountId

[required] The Amazon Web Services account ID for the owner of the Multi-Region Access Point.

Name

[required] The name of the Multi-Region Access Point whose configuration information you want to receive. The name of the Multi-Region Access Point is different from the alias. For more information about the distinction between the name and the alias of an Multi-Region Access Point, see Rules for naming Amazon S3 Multi-Region Access Points in the Amazon S3 User Guide.

Value

A list with the following syntax:

list(
  AccessPoint = 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"
      )
    )
  )
)

Request syntax

svc$get_multi_region_access_point(
  AccountId = "string",
  Name = "string"
)