Skip to main content

multi_region_access_points

Creates, updates, deletes or gets a multi_region_access_point resource or lists multi_region_access_points in a region

Overview

Namemulti_region_access_points
TypeResource
DescriptionAWS::S3::MultiRegionAccessPoint is an Amazon S3 resource type that dynamically routes S3 requests to easily satisfy geographic compliance requirements based on customer-defined routing policies.
Idawscc.s3.multi_region_access_points

Fields

NameDatatypeDescription
public_access_block_configurationobjectThe PublicAccessBlock configuration that you want to apply to this Multi Region Access Point. You can enable the configuration options in any combination. For more information about when Amazon S3 considers a bucket or object public, see https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html#access-control-block-public-access-policy-status 'The Meaning of Public' in the Amazon Simple Storage Service Developer Guide.
aliasstringThe alias is a unique identifier to, and is part of the public DNS name for this Multi Region Access Point
created_atstringThe timestamp of the when the Multi Region Access Point is created
regionsarrayThe list of buckets that you want to associate this Multi Region Access Point with.
namestringThe name you want to assign to this Multi Region Access Point.
regionstringAWS region.

For more information, see AWS::S3::MultiRegionAccessPoint.

Methods

NameResourceAccessible byRequired Params
create_resourcemulti_region_access_pointsINSERTRegions, region
delete_resourcemulti_region_access_pointsDELETEIdentifier, region
list_resourcesmulti_region_access_points_list_onlySELECTregion
get_resourcemulti_region_access_pointsSELECTIdentifier, region

SELECT examples

Gets all properties from an individual multi_region_access_point.

SELECT
region,
public_access_block_configuration,
alias,
created_at,
regions,
name
FROM awscc.s3.multi_region_access_points
WHERE
region = 'us-east-1' AND
Identifier = '{{ name }}';

INSERT example

Use the following StackQL query and manifest file to create a new multi_region_access_point resource, using stack-deploy.

/*+ create */
INSERT INTO awscc.s3.multi_region_access_points (
Regions,
region
)
SELECT
'{{ regions }}',
'{{ region }}';

DELETE example

/*+ delete */
DELETE FROM awscc.s3.multi_region_access_points
WHERE
Identifier = '{{ name }}' AND
region = 'us-east-1';

Permissions

To operate on the multi_region_access_points resource, the following permissions are required:

s3:GetMultiRegionAccessPoint