AWS Fundamentals Logo
AWS Fundamentals
AWS::S3::MultiRegionAccessPoint

S3 MultiRegionAccessPoint

AWS::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.

Properties

3 configurable properties. 1 required. Click a row to see details.

Filter:
PropertyTypeFlags
Regions
Array<Region>
RequiredCreate-only
Name
string
Create-only
PublicAccessBlockConfiguration
PublicAccessBlockConfiguration
Create-only

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
AliasstringThe alias is a unique identifier to, and is part of the public DNS name for this Multi Region Access Point
CreatedAtstringThe timestamp of the when the Multi Region Access Point is created

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::S3::MultiRegionAccessPoint

Resources:
  MyResource:
    Type: AWS::S3::MultiRegionAccessPoint
    Properties:
      Regions: []
      Name: !Ref "AWS::StackName"

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

read

s3:GetMultiRegionAccessPoint

create

s3:CreateMultiRegionAccessPoints3:DescribeMultiRegionAccessPointOperations3:GetMultiRegionAccessPoint

list

s3:ListMultiRegionAccessPoints

delete

s3:DeleteMultiRegionAccessPoints3:DescribeMultiRegionAccessPointOperations3:GetMultiRegionAccessPoint

Get the S3 Cheat Sheet

Everything you need to know about S3 on one page. HD quality, print-friendly.

Download Free Infographic

Quick Facts

ServiceS3
Properties5
Required1
TaggingNot supported
Primary IDName

Supported Operations

ReadCreateListDelete

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

NamePublicAccessBlockConfigurationRegions

External Links