published on Thursday, Sep 10, 2026 by Pulumi
published on Thursday, Sep 10, 2026 by Pulumi
Provides a resource to manage an S3 Multi-Region Access Point associated with specified buckets.
This resource cannot be used with S3 directory buckets.
For more information, see the documentation on Multi-Region Access Points.
Example Usage
Multiple AWS Buckets in Different Regions
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const fooBucket = new aws.s3.Bucket("foo_bucket", {bucket: "example-bucket-foo"});
const barBucket = new aws.s3.Bucket("bar_bucket", {bucket: "example-bucket-bar"});
const example = new aws.s3control.MultiRegionAccessPoint("example", {details: {
regions: [
{
bucket: fooBucket.id,
},
{
bucket: barBucket.id,
},
],
name: "example",
}});
import pulumi
import pulumi_aws as aws
foo_bucket = aws.s3.Bucket("foo_bucket", bucket="example-bucket-foo")
bar_bucket = aws.s3.Bucket("bar_bucket", bucket="example-bucket-bar")
example = aws.s3control.MultiRegionAccessPoint("example", details={
"regions": [
{
"bucket": foo_bucket.id,
},
{
"bucket": bar_bucket.id,
},
],
"name": "example",
})
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/s3"
"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/s3control"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
fooBucket, err := s3.NewBucket(ctx, "foo_bucket", &s3.BucketArgs{
Bucket: pulumi.String("example-bucket-foo"),
})
if err != nil {
return err
}
barBucket, err := s3.NewBucket(ctx, "bar_bucket", &s3.BucketArgs{
Bucket: pulumi.String("example-bucket-bar"),
})
if err != nil {
return err
}
_, err = s3control.NewMultiRegionAccessPoint(ctx, "example", &s3control.MultiRegionAccessPointArgs{
Details: &s3control.MultiRegionAccessPointDetailsArgs{
Regions: s3control.MultiRegionAccessPointDetailsRegionArray{
&s3control.MultiRegionAccessPointDetailsRegionArgs{
Bucket: fooBucket.ID().ToIDOutput().ToStringOutput(),
},
&s3control.MultiRegionAccessPointDetailsRegionArgs{
Bucket: barBucket.ID().ToIDOutput().ToStringOutput(),
},
},
Name: pulumi.String("example"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var fooBucket = new Aws.S3.Bucket("foo_bucket", new()
{
BucketName = "example-bucket-foo",
});
var barBucket = new Aws.S3.Bucket("bar_bucket", new()
{
BucketName = "example-bucket-bar",
});
var example = new Aws.S3Control.MultiRegionAccessPoint("example", new()
{
Details = new Aws.S3Control.Inputs.MultiRegionAccessPointDetailsArgs
{
Regions = new[]
{
new Aws.S3Control.Inputs.MultiRegionAccessPointDetailsRegionArgs
{
Bucket = fooBucket.Id,
},
new Aws.S3Control.Inputs.MultiRegionAccessPointDetailsRegionArgs
{
Bucket = barBucket.Id,
},
},
Name = "example",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.s3.Bucket;
import com.pulumi.aws.s3.BucketArgs;
import com.pulumi.aws.s3control.MultiRegionAccessPoint;
import com.pulumi.aws.s3control.MultiRegionAccessPointArgs;
import com.pulumi.aws.s3control.inputs.MultiRegionAccessPointDetailsArgs;
import com.pulumi.aws.s3control.inputs.MultiRegionAccessPointDetailsRegionArgs;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var fooBucket = new Bucket("fooBucket", BucketArgs.builder()
.bucket("example-bucket-foo")
.build());
var barBucket = new Bucket("barBucket", BucketArgs.builder()
.bucket("example-bucket-bar")
.build());
var example = new MultiRegionAccessPoint("example", MultiRegionAccessPointArgs.builder()
.details(MultiRegionAccessPointDetailsArgs.builder()
.regions(
MultiRegionAccessPointDetailsRegionArgs.builder()
.bucket(fooBucket.id())
.build(),
MultiRegionAccessPointDetailsRegionArgs.builder()
.bucket(barBucket.id())
.build())
.name("example")
.build())
.build());
}
}
resources:
fooBucket:
type: aws:s3:Bucket
name: foo_bucket
properties:
bucket: example-bucket-foo
barBucket:
type: aws:s3:Bucket
name: bar_bucket
properties:
bucket: example-bucket-bar
example:
type: aws:s3control:MultiRegionAccessPoint
properties:
details:
regions:
- bucket: ${fooBucket.id}
- bucket: ${barBucket.id}
name: example
pulumi {
required_providers {
aws = {
source = "pulumi/aws"
}
}
}
resource "aws_s3_bucket" "foo_bucket" {
bucket = "example-bucket-foo"
}
resource "aws_s3_bucket" "bar_bucket" {
bucket = "example-bucket-bar"
}
resource "aws_s3control_multiregionaccesspoint" "example" {
details = {
regions = [{
"bucket" = aws_s3_bucket.foo_bucket.id
}, {
"bucket" = aws_s3_bucket.bar_bucket.id
}]
name = "example"
}
}
Create MultiRegionAccessPoint Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MultiRegionAccessPoint(name: string, args: MultiRegionAccessPointArgs, opts?: CustomResourceOptions);@overload
def MultiRegionAccessPoint(resource_name: str,
args: MultiRegionAccessPointArgs,
opts: Optional[ResourceOptions] = None)
@overload
def MultiRegionAccessPoint(resource_name: str,
opts: Optional[ResourceOptions] = None,
details: Optional[MultiRegionAccessPointDetailsArgs] = None,
account_id: Optional[str] = None,
region: Optional[str] = None)func NewMultiRegionAccessPoint(ctx *Context, name string, args MultiRegionAccessPointArgs, opts ...ResourceOption) (*MultiRegionAccessPoint, error)public MultiRegionAccessPoint(string name, MultiRegionAccessPointArgs args, CustomResourceOptions? opts = null)
public MultiRegionAccessPoint(String name, MultiRegionAccessPointArgs args)
public MultiRegionAccessPoint(String name, MultiRegionAccessPointArgs args, CustomResourceOptions options)
type: aws:s3control:MultiRegionAccessPoint
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "aws_s3control_multi_region_access_point" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args MultiRegionAccessPointArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args MultiRegionAccessPointArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args MultiRegionAccessPointArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MultiRegionAccessPointArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MultiRegionAccessPointArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var multiRegionAccessPointResource = new Aws.S3Control.MultiRegionAccessPoint("multiRegionAccessPointResource", new()
{
Details = new Aws.S3Control.Inputs.MultiRegionAccessPointDetailsArgs
{
Name = "string",
Regions = new[]
{
new Aws.S3Control.Inputs.MultiRegionAccessPointDetailsRegionArgs
{
Bucket = "string",
BucketAccountId = "string",
Region = "string",
},
},
PublicAccessBlock = new Aws.S3Control.Inputs.MultiRegionAccessPointDetailsPublicAccessBlockArgs
{
BlockPublicAcls = false,
BlockPublicPolicy = false,
IgnorePublicAcls = false,
RestrictPublicBuckets = false,
},
},
AccountId = "string",
Region = "string",
});
example, err := s3control.NewMultiRegionAccessPoint(ctx, "multiRegionAccessPointResource", &s3control.MultiRegionAccessPointArgs{
Details: &s3control.MultiRegionAccessPointDetailsArgs{
Name: pulumi.String("string"),
Regions: s3control.MultiRegionAccessPointDetailsRegionArray{
&s3control.MultiRegionAccessPointDetailsRegionArgs{
Bucket: pulumi.String("string"),
BucketAccountId: pulumi.String("string"),
Region: pulumi.String("string"),
},
},
PublicAccessBlock: &s3control.MultiRegionAccessPointDetailsPublicAccessBlockArgs{
BlockPublicAcls: pulumi.Bool(false),
BlockPublicPolicy: pulumi.Bool(false),
IgnorePublicAcls: pulumi.Bool(false),
RestrictPublicBuckets: pulumi.Bool(false),
},
},
AccountId: pulumi.String("string"),
Region: pulumi.String("string"),
})
resource "aws_s3control_multi_region_access_point" "multiRegionAccessPointResource" {
lifecycle {
create_before_destroy = true
}
details = {
name = "string"
regions = [{
bucket = "string"
bucket_account_id = "string"
region = "string"
}]
public_access_block = {
block_public_acls = false
block_public_policy = false
ignore_public_acls = false
restrict_public_buckets = false
}
}
account_id = "string"
region = "string"
}
var multiRegionAccessPointResource = new MultiRegionAccessPoint("multiRegionAccessPointResource", MultiRegionAccessPointArgs.builder()
.details(MultiRegionAccessPointDetailsArgs.builder()
.name("string")
.regions(MultiRegionAccessPointDetailsRegionArgs.builder()
.bucket("string")
.bucketAccountId("string")
.region("string")
.build())
.publicAccessBlock(MultiRegionAccessPointDetailsPublicAccessBlockArgs.builder()
.blockPublicAcls(false)
.blockPublicPolicy(false)
.ignorePublicAcls(false)
.restrictPublicBuckets(false)
.build())
.build())
.accountId("string")
.region("string")
.build());
multi_region_access_point_resource = aws.s3control.MultiRegionAccessPoint("multiRegionAccessPointResource",
details={
"name": "string",
"regions": [{
"bucket": "string",
"bucket_account_id": "string",
"region": "string",
}],
"public_access_block": {
"block_public_acls": False,
"block_public_policy": False,
"ignore_public_acls": False,
"restrict_public_buckets": False,
},
},
account_id="string",
region="string")
const multiRegionAccessPointResource = new aws.s3control.MultiRegionAccessPoint("multiRegionAccessPointResource", {
details: {
name: "string",
regions: [{
bucket: "string",
bucketAccountId: "string",
region: "string",
}],
publicAccessBlock: {
blockPublicAcls: false,
blockPublicPolicy: false,
ignorePublicAcls: false,
restrictPublicBuckets: false,
},
},
accountId: "string",
region: "string",
});
type: aws:s3control:MultiRegionAccessPoint
properties:
accountId: string
details:
name: string
publicAccessBlock:
blockPublicAcls: false
blockPublicPolicy: false
ignorePublicAcls: false
restrictPublicBuckets: false
regions:
- bucket: string
bucketAccountId: string
region: string
region: string
MultiRegionAccessPoint Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The MultiRegionAccessPoint resource accepts the following input properties:
- Details
Multi
Region Access Point Details - Configuration block containing details about the Multi-Region Access Point. See
detailsBlock below. - Account
Id string - AWS account ID for the owner of the buckets for which you want to create a Multi-Region Access Point. Defaults to automatically determined account ID of the AWS provider.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Details
Multi
Region Access Point Details Args - Configuration block containing details about the Multi-Region Access Point. See
detailsBlock below. - Account
Id string - AWS account ID for the owner of the buckets for which you want to create a Multi-Region Access Point. Defaults to automatically determined account ID of the AWS provider.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- details object
- Configuration block containing details about the Multi-Region Access Point. See
detailsBlock below. - account_
id string - AWS account ID for the owner of the buckets for which you want to create a Multi-Region Access Point. Defaults to automatically determined account ID of the AWS provider.
- region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- details
Multi
Region Access Point Details - Configuration block containing details about the Multi-Region Access Point. See
detailsBlock below. - account
Id String - AWS account ID for the owner of the buckets for which you want to create a Multi-Region Access Point. Defaults to automatically determined account ID of the AWS provider.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- details
Multi
Region Access Point Details - Configuration block containing details about the Multi-Region Access Point. See
detailsBlock below. - account
Id string - AWS account ID for the owner of the buckets for which you want to create a Multi-Region Access Point. Defaults to automatically determined account ID of the AWS provider.
- region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- details
Multi
Region Access Point Details Args - Configuration block containing details about the Multi-Region Access Point. See
detailsBlock below. - account_
id str - AWS account ID for the owner of the buckets for which you want to create a Multi-Region Access Point. Defaults to automatically determined account ID of the AWS provider.
- region str
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- details Property Map
- Configuration block containing details about the Multi-Region Access Point. See
detailsBlock below. - account
Id String - AWS account ID for the owner of the buckets for which you want to create a Multi-Region Access Point. Defaults to automatically determined account ID of the AWS provider.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
Outputs
All input properties are implicitly available as output properties. Additionally, the MultiRegionAccessPoint resource produces the following output properties:
- Alias string
- Alias for the Multi-Region Access Point.
- Arn string
- ARN of the Multi-Region Access Point.
- Domain
Name string - DNS domain name of the S3 Multi-Region Access Point in the format
alias.accesspoint.s3-global.amazonaws.com. For more information, see the documentation on Multi-Region Access Point Requests. - Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Name of the Multi-Region Access Point.
- Status string
- Status of the Multi-Region Access Point. One of:
READY,INCONSISTENT_ACROSS_REGIONS,CREATING,PARTIALLY_CREATED,PARTIALLY_DELETED,DELETING.
- Alias string
- Alias for the Multi-Region Access Point.
- Arn string
- ARN of the Multi-Region Access Point.
- Domain
Name string - DNS domain name of the S3 Multi-Region Access Point in the format
alias.accesspoint.s3-global.amazonaws.com. For more information, see the documentation on Multi-Region Access Point Requests. - Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Name of the Multi-Region Access Point.
- Status string
- Status of the Multi-Region Access Point. One of:
READY,INCONSISTENT_ACROSS_REGIONS,CREATING,PARTIALLY_CREATED,PARTIALLY_DELETED,DELETING.
- alias string
- Alias for the Multi-Region Access Point.
- arn string
- ARN of the Multi-Region Access Point.
- domain_
name string - DNS domain name of the S3 Multi-Region Access Point in the format
alias.accesspoint.s3-global.amazonaws.com. For more information, see the documentation on Multi-Region Access Point Requests. - id string
- The provider-assigned unique ID for this managed resource.
- name string
- Name of the Multi-Region Access Point.
- status string
- Status of the Multi-Region Access Point. One of:
READY,INCONSISTENT_ACROSS_REGIONS,CREATING,PARTIALLY_CREATED,PARTIALLY_DELETED,DELETING.
- alias String
- Alias for the Multi-Region Access Point.
- arn String
- ARN of the Multi-Region Access Point.
- domain
Name String - DNS domain name of the S3 Multi-Region Access Point in the format
alias.accesspoint.s3-global.amazonaws.com. For more information, see the documentation on Multi-Region Access Point Requests. - id String
- The provider-assigned unique ID for this managed resource.
- name String
- Name of the Multi-Region Access Point.
- status String
- Status of the Multi-Region Access Point. One of:
READY,INCONSISTENT_ACROSS_REGIONS,CREATING,PARTIALLY_CREATED,PARTIALLY_DELETED,DELETING.
- alias string
- Alias for the Multi-Region Access Point.
- arn string
- ARN of the Multi-Region Access Point.
- domain
Name string - DNS domain name of the S3 Multi-Region Access Point in the format
alias.accesspoint.s3-global.amazonaws.com. For more information, see the documentation on Multi-Region Access Point Requests. - id string
- The provider-assigned unique ID for this managed resource.
- name string
- Name of the Multi-Region Access Point.
- status string
- Status of the Multi-Region Access Point. One of:
READY,INCONSISTENT_ACROSS_REGIONS,CREATING,PARTIALLY_CREATED,PARTIALLY_DELETED,DELETING.
- alias str
- Alias for the Multi-Region Access Point.
- arn str
- ARN of the Multi-Region Access Point.
- domain_
name str - DNS domain name of the S3 Multi-Region Access Point in the format
alias.accesspoint.s3-global.amazonaws.com. For more information, see the documentation on Multi-Region Access Point Requests. - id str
- The provider-assigned unique ID for this managed resource.
- name str
- Name of the Multi-Region Access Point.
- status str
- Status of the Multi-Region Access Point. One of:
READY,INCONSISTENT_ACROSS_REGIONS,CREATING,PARTIALLY_CREATED,PARTIALLY_DELETED,DELETING.
- alias String
- Alias for the Multi-Region Access Point.
- arn String
- ARN of the Multi-Region Access Point.
- domain
Name String - DNS domain name of the S3 Multi-Region Access Point in the format
alias.accesspoint.s3-global.amazonaws.com. For more information, see the documentation on Multi-Region Access Point Requests. - id String
- The provider-assigned unique ID for this managed resource.
- name String
- Name of the Multi-Region Access Point.
- status String
- Status of the Multi-Region Access Point. One of:
READY,INCONSISTENT_ACROSS_REGIONS,CREATING,PARTIALLY_CREATED,PARTIALLY_DELETED,DELETING.
Look up Existing MultiRegionAccessPoint Resource
Get an existing MultiRegionAccessPoint resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: MultiRegionAccessPointState, opts?: CustomResourceOptions): MultiRegionAccessPoint@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_id: Optional[str] = None,
alias: Optional[str] = None,
arn: Optional[str] = None,
details: Optional[MultiRegionAccessPointDetailsArgs] = None,
domain_name: Optional[str] = None,
name: Optional[str] = None,
region: Optional[str] = None,
status: Optional[str] = None) -> MultiRegionAccessPointfunc GetMultiRegionAccessPoint(ctx *Context, name string, id IDInput, state *MultiRegionAccessPointState, opts ...ResourceOption) (*MultiRegionAccessPoint, error)public static MultiRegionAccessPoint Get(string name, Input<string> id, MultiRegionAccessPointState? state, CustomResourceOptions? opts = null)public static MultiRegionAccessPoint get(String name, Output<String> id, MultiRegionAccessPointState state, CustomResourceOptions options)resources: _: type: aws:s3control:MultiRegionAccessPoint get: id: ${id}import {
to = aws_s3control_multi_region_access_point.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Account
Id string - AWS account ID for the owner of the buckets for which you want to create a Multi-Region Access Point. Defaults to automatically determined account ID of the AWS provider.
- Alias string
- Alias for the Multi-Region Access Point.
- Arn string
- ARN of the Multi-Region Access Point.
- Details
Multi
Region Access Point Details - Configuration block containing details about the Multi-Region Access Point. See
detailsBlock below. - Domain
Name string - DNS domain name of the S3 Multi-Region Access Point in the format
alias.accesspoint.s3-global.amazonaws.com. For more information, see the documentation on Multi-Region Access Point Requests. - Name string
- Name of the Multi-Region Access Point.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Status string
- Status of the Multi-Region Access Point. One of:
READY,INCONSISTENT_ACROSS_REGIONS,CREATING,PARTIALLY_CREATED,PARTIALLY_DELETED,DELETING.
- Account
Id string - AWS account ID for the owner of the buckets for which you want to create a Multi-Region Access Point. Defaults to automatically determined account ID of the AWS provider.
- Alias string
- Alias for the Multi-Region Access Point.
- Arn string
- ARN of the Multi-Region Access Point.
- Details
Multi
Region Access Point Details Args - Configuration block containing details about the Multi-Region Access Point. See
detailsBlock below. - Domain
Name string - DNS domain name of the S3 Multi-Region Access Point in the format
alias.accesspoint.s3-global.amazonaws.com. For more information, see the documentation on Multi-Region Access Point Requests. - Name string
- Name of the Multi-Region Access Point.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Status string
- Status of the Multi-Region Access Point. One of:
READY,INCONSISTENT_ACROSS_REGIONS,CREATING,PARTIALLY_CREATED,PARTIALLY_DELETED,DELETING.
- account_
id string - AWS account ID for the owner of the buckets for which you want to create a Multi-Region Access Point. Defaults to automatically determined account ID of the AWS provider.
- alias string
- Alias for the Multi-Region Access Point.
- arn string
- ARN of the Multi-Region Access Point.
- details object
- Configuration block containing details about the Multi-Region Access Point. See
detailsBlock below. - domain_
name string - DNS domain name of the S3 Multi-Region Access Point in the format
alias.accesspoint.s3-global.amazonaws.com. For more information, see the documentation on Multi-Region Access Point Requests. - name string
- Name of the Multi-Region Access Point.
- region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- status string
- Status of the Multi-Region Access Point. One of:
READY,INCONSISTENT_ACROSS_REGIONS,CREATING,PARTIALLY_CREATED,PARTIALLY_DELETED,DELETING.
- account
Id String - AWS account ID for the owner of the buckets for which you want to create a Multi-Region Access Point. Defaults to automatically determined account ID of the AWS provider.
- alias String
- Alias for the Multi-Region Access Point.
- arn String
- ARN of the Multi-Region Access Point.
- details
Multi
Region Access Point Details - Configuration block containing details about the Multi-Region Access Point. See
detailsBlock below. - domain
Name String - DNS domain name of the S3 Multi-Region Access Point in the format
alias.accesspoint.s3-global.amazonaws.com. For more information, see the documentation on Multi-Region Access Point Requests. - name String
- Name of the Multi-Region Access Point.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- status String
- Status of the Multi-Region Access Point. One of:
READY,INCONSISTENT_ACROSS_REGIONS,CREATING,PARTIALLY_CREATED,PARTIALLY_DELETED,DELETING.
- account
Id string - AWS account ID for the owner of the buckets for which you want to create a Multi-Region Access Point. Defaults to automatically determined account ID of the AWS provider.
- alias string
- Alias for the Multi-Region Access Point.
- arn string
- ARN of the Multi-Region Access Point.
- details
Multi
Region Access Point Details - Configuration block containing details about the Multi-Region Access Point. See
detailsBlock below. - domain
Name string - DNS domain name of the S3 Multi-Region Access Point in the format
alias.accesspoint.s3-global.amazonaws.com. For more information, see the documentation on Multi-Region Access Point Requests. - name string
- Name of the Multi-Region Access Point.
- region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- status string
- Status of the Multi-Region Access Point. One of:
READY,INCONSISTENT_ACROSS_REGIONS,CREATING,PARTIALLY_CREATED,PARTIALLY_DELETED,DELETING.
- account_
id str - AWS account ID for the owner of the buckets for which you want to create a Multi-Region Access Point. Defaults to automatically determined account ID of the AWS provider.
- alias str
- Alias for the Multi-Region Access Point.
- arn str
- ARN of the Multi-Region Access Point.
- details
Multi
Region Access Point Details Args - Configuration block containing details about the Multi-Region Access Point. See
detailsBlock below. - domain_
name str - DNS domain name of the S3 Multi-Region Access Point in the format
alias.accesspoint.s3-global.amazonaws.com. For more information, see the documentation on Multi-Region Access Point Requests. - name str
- Name of the Multi-Region Access Point.
- region str
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- status str
- Status of the Multi-Region Access Point. One of:
READY,INCONSISTENT_ACROSS_REGIONS,CREATING,PARTIALLY_CREATED,PARTIALLY_DELETED,DELETING.
- account
Id String - AWS account ID for the owner of the buckets for which you want to create a Multi-Region Access Point. Defaults to automatically determined account ID of the AWS provider.
- alias String
- Alias for the Multi-Region Access Point.
- arn String
- ARN of the Multi-Region Access Point.
- details Property Map
- Configuration block containing details about the Multi-Region Access Point. See
detailsBlock below. - domain
Name String - DNS domain name of the S3 Multi-Region Access Point in the format
alias.accesspoint.s3-global.amazonaws.com. For more information, see the documentation on Multi-Region Access Point Requests. - name String
- Name of the Multi-Region Access Point.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- status String
- Status of the Multi-Region Access Point. One of:
READY,INCONSISTENT_ACROSS_REGIONS,CREATING,PARTIALLY_CREATED,PARTIALLY_DELETED,DELETING.
Supporting Types
MultiRegionAccessPointDetails, MultiRegionAccessPointDetailsArgs
- Name string
- Name of the Multi-Region Access Point.
- Regions
List<Multi
Region Access Point Details Region> - Region configuration block to specify the bucket associated with the Multi-Region Access Point. See
regionBlock below. - Public
Access MultiBlock Region Access Point Details Public Access Block - Configuration block to manage the
PublicAccessBlockconfiguration that you want to apply to this Multi-Region Access Point. You can enable the configuration options in any combination. SeepublicAccessBlockBlock below.
- Name string
- Name of the Multi-Region Access Point.
- Regions
[]Multi
Region Access Point Details Region - Region configuration block to specify the bucket associated with the Multi-Region Access Point. See
regionBlock below. - Public
Access MultiBlock Region Access Point Details Public Access Block - Configuration block to manage the
PublicAccessBlockconfiguration that you want to apply to this Multi-Region Access Point. You can enable the configuration options in any combination. SeepublicAccessBlockBlock below.
- name string
- Name of the Multi-Region Access Point.
- regions list(object)
- Region configuration block to specify the bucket associated with the Multi-Region Access Point. See
regionBlock below. - public_
access_ objectblock - Configuration block to manage the
PublicAccessBlockconfiguration that you want to apply to this Multi-Region Access Point. You can enable the configuration options in any combination. SeepublicAccessBlockBlock below.
- name String
- Name of the Multi-Region Access Point.
- regions
List<Multi
Region Access Point Details Region> - Region configuration block to specify the bucket associated with the Multi-Region Access Point. See
regionBlock below. - public
Access MultiBlock Region Access Point Details Public Access Block - Configuration block to manage the
PublicAccessBlockconfiguration that you want to apply to this Multi-Region Access Point. You can enable the configuration options in any combination. SeepublicAccessBlockBlock below.
- name string
- Name of the Multi-Region Access Point.
- regions
Multi
Region Access Point Details Region[] - Region configuration block to specify the bucket associated with the Multi-Region Access Point. See
regionBlock below. - public
Access MultiBlock Region Access Point Details Public Access Block - Configuration block to manage the
PublicAccessBlockconfiguration that you want to apply to this Multi-Region Access Point. You can enable the configuration options in any combination. SeepublicAccessBlockBlock below.
- name str
- Name of the Multi-Region Access Point.
- regions
Sequence[Multi
Region Access Point Details Region] - Region configuration block to specify the bucket associated with the Multi-Region Access Point. See
regionBlock below. - public_
access_ Multiblock Region Access Point Details Public Access Block - Configuration block to manage the
PublicAccessBlockconfiguration that you want to apply to this Multi-Region Access Point. You can enable the configuration options in any combination. SeepublicAccessBlockBlock below.
- name String
- Name of the Multi-Region Access Point.
- regions List<Property Map>
- Region configuration block to specify the bucket associated with the Multi-Region Access Point. See
regionBlock below. - public
Access Property MapBlock - Configuration block to manage the
PublicAccessBlockconfiguration that you want to apply to this Multi-Region Access Point. You can enable the configuration options in any combination. SeepublicAccessBlockBlock below.
MultiRegionAccessPointDetailsPublicAccessBlock, MultiRegionAccessPointDetailsPublicAccessBlockArgs
- Block
Public boolAcls - Whether Amazon S3 should block public ACLs for buckets in this account. Defaults to
true. Enabling this setting does not affect existing policies or ACLs. When set totrue, PUT Bucket acl and PUT Object acl calls fail if the specified ACL is public, PUT Object calls fail if the request includes a public ACL, and PUT Bucket calls fail if the request includes a public ACL. - Block
Public boolPolicy - Whether Amazon S3 should block public bucket policies for buckets in this account. Defaults to
true. Enabling this setting does not affect existing bucket policies. When set totrue, Amazon S3 rejects calls to PUT Bucket policy if the specified bucket policy allows public access. - Ignore
Public boolAcls - Whether Amazon S3 should ignore public ACLs for buckets in this account. Defaults to
true. Enabling this setting does not affect the persistence of any existing ACLs and doesn't prevent new public ACLs from being set. When set totrue, Amazon S3 ignores all public ACLs on buckets in this account and any objects that they contain. - Restrict
Public boolBuckets - Whether Amazon S3 should restrict public bucket policies for buckets in this account. Defaults to
true. Enabling this setting does not affect previously stored bucket policies, except that public and cross-account access within any public bucket policy, including non-public delegation to specific accounts, is blocked. When set totrue, only the bucket owner and AWS Services can access buckets with public policies.
- Block
Public boolAcls - Whether Amazon S3 should block public ACLs for buckets in this account. Defaults to
true. Enabling this setting does not affect existing policies or ACLs. When set totrue, PUT Bucket acl and PUT Object acl calls fail if the specified ACL is public, PUT Object calls fail if the request includes a public ACL, and PUT Bucket calls fail if the request includes a public ACL. - Block
Public boolPolicy - Whether Amazon S3 should block public bucket policies for buckets in this account. Defaults to
true. Enabling this setting does not affect existing bucket policies. When set totrue, Amazon S3 rejects calls to PUT Bucket policy if the specified bucket policy allows public access. - Ignore
Public boolAcls - Whether Amazon S3 should ignore public ACLs for buckets in this account. Defaults to
true. Enabling this setting does not affect the persistence of any existing ACLs and doesn't prevent new public ACLs from being set. When set totrue, Amazon S3 ignores all public ACLs on buckets in this account and any objects that they contain. - Restrict
Public boolBuckets - Whether Amazon S3 should restrict public bucket policies for buckets in this account. Defaults to
true. Enabling this setting does not affect previously stored bucket policies, except that public and cross-account access within any public bucket policy, including non-public delegation to specific accounts, is blocked. When set totrue, only the bucket owner and AWS Services can access buckets with public policies.
- block_
public_ boolacls - Whether Amazon S3 should block public ACLs for buckets in this account. Defaults to
true. Enabling this setting does not affect existing policies or ACLs. When set totrue, PUT Bucket acl and PUT Object acl calls fail if the specified ACL is public, PUT Object calls fail if the request includes a public ACL, and PUT Bucket calls fail if the request includes a public ACL. - block_
public_ boolpolicy - Whether Amazon S3 should block public bucket policies for buckets in this account. Defaults to
true. Enabling this setting does not affect existing bucket policies. When set totrue, Amazon S3 rejects calls to PUT Bucket policy if the specified bucket policy allows public access. - ignore_
public_ boolacls - Whether Amazon S3 should ignore public ACLs for buckets in this account. Defaults to
true. Enabling this setting does not affect the persistence of any existing ACLs and doesn't prevent new public ACLs from being set. When set totrue, Amazon S3 ignores all public ACLs on buckets in this account and any objects that they contain. - restrict_
public_ boolbuckets - Whether Amazon S3 should restrict public bucket policies for buckets in this account. Defaults to
true. Enabling this setting does not affect previously stored bucket policies, except that public and cross-account access within any public bucket policy, including non-public delegation to specific accounts, is blocked. When set totrue, only the bucket owner and AWS Services can access buckets with public policies.
- block
Public BooleanAcls - Whether Amazon S3 should block public ACLs for buckets in this account. Defaults to
true. Enabling this setting does not affect existing policies or ACLs. When set totrue, PUT Bucket acl and PUT Object acl calls fail if the specified ACL is public, PUT Object calls fail if the request includes a public ACL, and PUT Bucket calls fail if the request includes a public ACL. - block
Public BooleanPolicy - Whether Amazon S3 should block public bucket policies for buckets in this account. Defaults to
true. Enabling this setting does not affect existing bucket policies. When set totrue, Amazon S3 rejects calls to PUT Bucket policy if the specified bucket policy allows public access. - ignore
Public BooleanAcls - Whether Amazon S3 should ignore public ACLs for buckets in this account. Defaults to
true. Enabling this setting does not affect the persistence of any existing ACLs and doesn't prevent new public ACLs from being set. When set totrue, Amazon S3 ignores all public ACLs on buckets in this account and any objects that they contain. - restrict
Public BooleanBuckets - Whether Amazon S3 should restrict public bucket policies for buckets in this account. Defaults to
true. Enabling this setting does not affect previously stored bucket policies, except that public and cross-account access within any public bucket policy, including non-public delegation to specific accounts, is blocked. When set totrue, only the bucket owner and AWS Services can access buckets with public policies.
- block
Public booleanAcls - Whether Amazon S3 should block public ACLs for buckets in this account. Defaults to
true. Enabling this setting does not affect existing policies or ACLs. When set totrue, PUT Bucket acl and PUT Object acl calls fail if the specified ACL is public, PUT Object calls fail if the request includes a public ACL, and PUT Bucket calls fail if the request includes a public ACL. - block
Public booleanPolicy - Whether Amazon S3 should block public bucket policies for buckets in this account. Defaults to
true. Enabling this setting does not affect existing bucket policies. When set totrue, Amazon S3 rejects calls to PUT Bucket policy if the specified bucket policy allows public access. - ignore
Public booleanAcls - Whether Amazon S3 should ignore public ACLs for buckets in this account. Defaults to
true. Enabling this setting does not affect the persistence of any existing ACLs and doesn't prevent new public ACLs from being set. When set totrue, Amazon S3 ignores all public ACLs on buckets in this account and any objects that they contain. - restrict
Public booleanBuckets - Whether Amazon S3 should restrict public bucket policies for buckets in this account. Defaults to
true. Enabling this setting does not affect previously stored bucket policies, except that public and cross-account access within any public bucket policy, including non-public delegation to specific accounts, is blocked. When set totrue, only the bucket owner and AWS Services can access buckets with public policies.
- block_
public_ boolacls - Whether Amazon S3 should block public ACLs for buckets in this account. Defaults to
true. Enabling this setting does not affect existing policies or ACLs. When set totrue, PUT Bucket acl and PUT Object acl calls fail if the specified ACL is public, PUT Object calls fail if the request includes a public ACL, and PUT Bucket calls fail if the request includes a public ACL. - block_
public_ boolpolicy - Whether Amazon S3 should block public bucket policies for buckets in this account. Defaults to
true. Enabling this setting does not affect existing bucket policies. When set totrue, Amazon S3 rejects calls to PUT Bucket policy if the specified bucket policy allows public access. - ignore_
public_ boolacls - Whether Amazon S3 should ignore public ACLs for buckets in this account. Defaults to
true. Enabling this setting does not affect the persistence of any existing ACLs and doesn't prevent new public ACLs from being set. When set totrue, Amazon S3 ignores all public ACLs on buckets in this account and any objects that they contain. - restrict_
public_ boolbuckets - Whether Amazon S3 should restrict public bucket policies for buckets in this account. Defaults to
true. Enabling this setting does not affect previously stored bucket policies, except that public and cross-account access within any public bucket policy, including non-public delegation to specific accounts, is blocked. When set totrue, only the bucket owner and AWS Services can access buckets with public policies.
- block
Public BooleanAcls - Whether Amazon S3 should block public ACLs for buckets in this account. Defaults to
true. Enabling this setting does not affect existing policies or ACLs. When set totrue, PUT Bucket acl and PUT Object acl calls fail if the specified ACL is public, PUT Object calls fail if the request includes a public ACL, and PUT Bucket calls fail if the request includes a public ACL. - block
Public BooleanPolicy - Whether Amazon S3 should block public bucket policies for buckets in this account. Defaults to
true. Enabling this setting does not affect existing bucket policies. When set totrue, Amazon S3 rejects calls to PUT Bucket policy if the specified bucket policy allows public access. - ignore
Public BooleanAcls - Whether Amazon S3 should ignore public ACLs for buckets in this account. Defaults to
true. Enabling this setting does not affect the persistence of any existing ACLs and doesn't prevent new public ACLs from being set. When set totrue, Amazon S3 ignores all public ACLs on buckets in this account and any objects that they contain. - restrict
Public BooleanBuckets - Whether Amazon S3 should restrict public bucket policies for buckets in this account. Defaults to
true. Enabling this setting does not affect previously stored bucket policies, except that public and cross-account access within any public bucket policy, including non-public delegation to specific accounts, is blocked. When set totrue, only the bucket owner and AWS Services can access buckets with public policies.
MultiRegionAccessPointDetailsRegion, MultiRegionAccessPointDetailsRegionArgs
- Bucket string
- Name of the associated bucket for the Region.
- Bucket
Account stringId - AWS account ID that owns the Amazon S3 bucket that's associated with this Multi-Region Access Point.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Bucket string
- Name of the associated bucket for the Region.
- Bucket
Account stringId - AWS account ID that owns the Amazon S3 bucket that's associated with this Multi-Region Access Point.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- bucket string
- Name of the associated bucket for the Region.
- bucket_
account_ stringid - AWS account ID that owns the Amazon S3 bucket that's associated with this Multi-Region Access Point.
- region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- bucket String
- Name of the associated bucket for the Region.
- bucket
Account StringId - AWS account ID that owns the Amazon S3 bucket that's associated with this Multi-Region Access Point.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- bucket string
- Name of the associated bucket for the Region.
- bucket
Account stringId - AWS account ID that owns the Amazon S3 bucket that's associated with this Multi-Region Access Point.
- region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- bucket str
- Name of the associated bucket for the Region.
- bucket_
account_ strid - AWS account ID that owns the Amazon S3 bucket that's associated with this Multi-Region Access Point.
- region str
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- bucket String
- Name of the associated bucket for the Region.
- bucket
Account StringId - AWS account ID that owns the Amazon S3 bucket that's associated with this Multi-Region Access Point.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
Import
Identity Schema
Required
name(String) Name of the Multi-Region Access Point.
Optional
accountId(String) AWS Account where this resource is managed.region(String) Region where this resource is managed.
Using pulumi import, import Multi-Region Access Points using the accountId and name of the Multi-Region Access Point separated by a colon (:). For example:
$ pulumi import aws:s3control/multiRegionAccessPoint:MultiRegionAccessPoint example 123456789012:example
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
awsTerraform Provider.
published on Thursday, Sep 10, 2026 by Pulumi