aws.s3control.MultiRegionAccessPoint
Explore with Pulumi AI
Provides a resource to manage an S3 Multi-Region Access Point associated with specified buckets.
This resource cannot be used with S3 directory buckets.
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.BucketV2("foo_bucket", {bucket: "example-bucket-foo"});
const barBucket = new aws.s3.BucketV2("bar_bucket", {bucket: "example-bucket-bar"});
const example = new aws.s3control.MultiRegionAccessPoint("example", {details: {
    name: "example",
    regions: [
        {
            bucket: fooBucket.id,
        },
        {
            bucket: barBucket.id,
        },
    ],
}});
import pulumi
import pulumi_aws as aws
foo_bucket = aws.s3.BucketV2("foo_bucket", bucket="example-bucket-foo")
bar_bucket = aws.s3.BucketV2("bar_bucket", bucket="example-bucket-bar")
example = aws.s3control.MultiRegionAccessPoint("example", details={
    "name": "example",
    "regions": [
        {
            "bucket": foo_bucket.id,
        },
        {
            "bucket": bar_bucket.id,
        },
    ],
})
package main
import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/s3"
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/s3control"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		fooBucket, err := s3.NewBucketV2(ctx, "foo_bucket", &s3.BucketV2Args{
			Bucket: pulumi.String("example-bucket-foo"),
		})
		if err != nil {
			return err
		}
		barBucket, err := s3.NewBucketV2(ctx, "bar_bucket", &s3.BucketV2Args{
			Bucket: pulumi.String("example-bucket-bar"),
		})
		if err != nil {
			return err
		}
		_, err = s3control.NewMultiRegionAccessPoint(ctx, "example", &s3control.MultiRegionAccessPointArgs{
			Details: &s3control.MultiRegionAccessPointDetailsArgs{
				Name: pulumi.String("example"),
				Regions: s3control.MultiRegionAccessPointDetailsRegionArray{
					&s3control.MultiRegionAccessPointDetailsRegionArgs{
						Bucket: fooBucket.ID(),
					},
					&s3control.MultiRegionAccessPointDetailsRegionArgs{
						Bucket: barBucket.ID(),
					},
				},
			},
		})
		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.BucketV2("foo_bucket", new()
    {
        Bucket = "example-bucket-foo",
    });
    var barBucket = new Aws.S3.BucketV2("bar_bucket", new()
    {
        Bucket = "example-bucket-bar",
    });
    var example = new Aws.S3Control.MultiRegionAccessPoint("example", new()
    {
        Details = new Aws.S3Control.Inputs.MultiRegionAccessPointDetailsArgs
        {
            Name = "example",
            Regions = new[]
            {
                new Aws.S3Control.Inputs.MultiRegionAccessPointDetailsRegionArgs
                {
                    Bucket = fooBucket.Id,
                },
                new Aws.S3Control.Inputs.MultiRegionAccessPointDetailsRegionArgs
                {
                    Bucket = barBucket.Id,
                },
            },
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.s3.BucketV2;
import com.pulumi.aws.s3.BucketV2Args;
import com.pulumi.aws.s3control.MultiRegionAccessPoint;
import com.pulumi.aws.s3control.MultiRegionAccessPointArgs;
import com.pulumi.aws.s3control.inputs.MultiRegionAccessPointDetailsArgs;
import java.util.List;
import java.util.ArrayList;
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 BucketV2("fooBucket", BucketV2Args.builder()
            .bucket("example-bucket-foo")
            .build());
        var barBucket = new BucketV2("barBucket", BucketV2Args.builder()
            .bucket("example-bucket-bar")
            .build());
        var example = new MultiRegionAccessPoint("example", MultiRegionAccessPointArgs.builder()
            .details(MultiRegionAccessPointDetailsArgs.builder()
                .name("example")
                .regions(                
                    MultiRegionAccessPointDetailsRegionArgs.builder()
                        .bucket(fooBucket.id())
                        .build(),
                    MultiRegionAccessPointDetailsRegionArgs.builder()
                        .bucket(barBucket.id())
                        .build())
                .build())
            .build());
    }
}
resources:
  fooBucket:
    type: aws:s3:BucketV2
    name: foo_bucket
    properties:
      bucket: example-bucket-foo
  barBucket:
    type: aws:s3:BucketV2
    name: bar_bucket
    properties:
      bucket: example-bucket-bar
  example:
    type: aws:s3control:MultiRegionAccessPoint
    properties:
      details:
        name: example
        regions:
          - bucket: ${fooBucket.id}
          - bucket: ${barBucket.id}
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)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.
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",
});
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"),
})
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")
    .build());
multi_region_access_point_resource = aws.s3control.MultiRegionAccessPoint("multiRegionAccessPointResource",
    details={
        "name": "string",
        "regions": [{
            "bucket": "string",
            "bucketAccountId": "string",
            "region": "string",
        }],
        "publicAccessBlock": {
            "blockPublicAcls": False,
            "blockPublicPolicy": False,
            "ignorePublicAcls": False,
            "restrictPublicBuckets": False,
        },
    },
    account_id="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",
});
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
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
The MultiRegionAccessPoint resource accepts the following input properties:
- Details
MultiRegion Access Point Details 
- A configuration block containing details about the Multi-Region Access Point. See Details Configuration Block below for more details
- AccountId string
- The 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.
- Details
MultiRegion Access Point Details Args 
- A configuration block containing details about the Multi-Region Access Point. See Details Configuration Block below for more details
- AccountId string
- The 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.
- details
MultiRegion Access Point Details 
- A configuration block containing details about the Multi-Region Access Point. See Details Configuration Block below for more details
- accountId String
- The 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.
- details
MultiRegion Access Point Details 
- A configuration block containing details about the Multi-Region Access Point. See Details Configuration Block below for more details
- accountId string
- The 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.
- details
MultiRegion Access Point Details Args 
- A configuration block containing details about the Multi-Region Access Point. See Details Configuration Block below for more details
- account_id str
- The 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.
- details Property Map
- A configuration block containing details about the Multi-Region Access Point. See Details Configuration Block below for more details
- accountId String
- The 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.
Outputs
All input properties are implicitly available as output properties. Additionally, the MultiRegionAccessPoint resource produces the following output properties:
- Alias string
- The alias for the Multi-Region Access Point.
- Arn string
- Amazon Resource Name (ARN) of the Multi-Region Access Point.
- DomainName string
- The 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.
- Status string
- The current status of the Multi-Region Access Point. One of: READY,INCONSISTENT_ACROSS_REGIONS,CREATING,PARTIALLY_CREATED,PARTIALLY_DELETED,DELETING.
- Alias string
- The alias for the Multi-Region Access Point.
- Arn string
- Amazon Resource Name (ARN) of the Multi-Region Access Point.
- DomainName string
- The 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.
- Status string
- The current status of the Multi-Region Access Point. One of: READY,INCONSISTENT_ACROSS_REGIONS,CREATING,PARTIALLY_CREATED,PARTIALLY_DELETED,DELETING.
- alias String
- The alias for the Multi-Region Access Point.
- arn String
- Amazon Resource Name (ARN) of the Multi-Region Access Point.
- domainName String
- The 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.
- status String
- The current status of the Multi-Region Access Point. One of: READY,INCONSISTENT_ACROSS_REGIONS,CREATING,PARTIALLY_CREATED,PARTIALLY_DELETED,DELETING.
- alias string
- The alias for the Multi-Region Access Point.
- arn string
- Amazon Resource Name (ARN) of the Multi-Region Access Point.
- domainName string
- The 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.
- status string
- The current status of the Multi-Region Access Point. One of: READY,INCONSISTENT_ACROSS_REGIONS,CREATING,PARTIALLY_CREATED,PARTIALLY_DELETED,DELETING.
- alias str
- The alias for the Multi-Region Access Point.
- arn str
- Amazon Resource Name (ARN) of the Multi-Region Access Point.
- domain_name str
- The 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.
- status str
- The current status of the Multi-Region Access Point. One of: READY,INCONSISTENT_ACROSS_REGIONS,CREATING,PARTIALLY_CREATED,PARTIALLY_DELETED,DELETING.
- alias String
- The alias for the Multi-Region Access Point.
- arn String
- Amazon Resource Name (ARN) of the Multi-Region Access Point.
- domainName String
- The 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.
- status String
- The current 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,
        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)Resource lookup is not supported in YAML- 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.
- AccountId string
- The 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
- The alias for the Multi-Region Access Point.
- Arn string
- Amazon Resource Name (ARN) of the Multi-Region Access Point.
- Details
MultiRegion Access Point Details 
- A configuration block containing details about the Multi-Region Access Point. See Details Configuration Block below for more details
- DomainName string
- The 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.
- Status string
- The current status of the Multi-Region Access Point. One of: READY,INCONSISTENT_ACROSS_REGIONS,CREATING,PARTIALLY_CREATED,PARTIALLY_DELETED,DELETING.
- AccountId string
- The 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
- The alias for the Multi-Region Access Point.
- Arn string
- Amazon Resource Name (ARN) of the Multi-Region Access Point.
- Details
MultiRegion Access Point Details Args 
- A configuration block containing details about the Multi-Region Access Point. See Details Configuration Block below for more details
- DomainName string
- The 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.
- Status string
- The current status of the Multi-Region Access Point. One of: READY,INCONSISTENT_ACROSS_REGIONS,CREATING,PARTIALLY_CREATED,PARTIALLY_DELETED,DELETING.
- accountId String
- The 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
- The alias for the Multi-Region Access Point.
- arn String
- Amazon Resource Name (ARN) of the Multi-Region Access Point.
- details
MultiRegion Access Point Details 
- A configuration block containing details about the Multi-Region Access Point. See Details Configuration Block below for more details
- domainName String
- The 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.
- status String
- The current status of the Multi-Region Access Point. One of: READY,INCONSISTENT_ACROSS_REGIONS,CREATING,PARTIALLY_CREATED,PARTIALLY_DELETED,DELETING.
- accountId string
- The 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
- The alias for the Multi-Region Access Point.
- arn string
- Amazon Resource Name (ARN) of the Multi-Region Access Point.
- details
MultiRegion Access Point Details 
- A configuration block containing details about the Multi-Region Access Point. See Details Configuration Block below for more details
- domainName string
- The 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.
- status string
- The current status of the Multi-Region Access Point. One of: READY,INCONSISTENT_ACROSS_REGIONS,CREATING,PARTIALLY_CREATED,PARTIALLY_DELETED,DELETING.
- account_id str
- The 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
- The alias for the Multi-Region Access Point.
- arn str
- Amazon Resource Name (ARN) of the Multi-Region Access Point.
- details
MultiRegion Access Point Details Args 
- A configuration block containing details about the Multi-Region Access Point. See Details Configuration Block below for more details
- domain_name str
- The 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.
- status str
- The current status of the Multi-Region Access Point. One of: READY,INCONSISTENT_ACROSS_REGIONS,CREATING,PARTIALLY_CREATED,PARTIALLY_DELETED,DELETING.
- accountId String
- The 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
- The alias for the Multi-Region Access Point.
- arn String
- Amazon Resource Name (ARN) of the Multi-Region Access Point.
- details Property Map
- A configuration block containing details about the Multi-Region Access Point. See Details Configuration Block below for more details
- domainName String
- The 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.
- status String
- The current status of the Multi-Region Access Point. One of: READY,INCONSISTENT_ACROSS_REGIONS,CREATING,PARTIALLY_CREATED,PARTIALLY_DELETED,DELETING.
Supporting Types
MultiRegionAccessPointDetails, MultiRegionAccessPointDetailsArgs          
MultiRegionAccessPointDetailsPublicAccessBlock, MultiRegionAccessPointDetailsPublicAccessBlockArgs                
- BlockPublic boolAcls 
- BlockPublic boolPolicy 
- IgnorePublic boolAcls 
- RestrictPublic boolBuckets 
- BlockPublic boolAcls 
- BlockPublic boolPolicy 
- IgnorePublic boolAcls 
- RestrictPublic boolBuckets 
- blockPublic BooleanAcls 
- blockPublic BooleanPolicy 
- ignorePublic BooleanAcls 
- restrictPublic BooleanBuckets 
- blockPublic booleanAcls 
- blockPublic booleanPolicy 
- ignorePublic booleanAcls 
- restrictPublic booleanBuckets 
- block_public_ boolacls 
- block_public_ boolpolicy 
- ignore_public_ boolacls 
- restrict_public_ boolbuckets 
- blockPublic BooleanAcls 
- blockPublic BooleanPolicy 
- ignorePublic BooleanAcls 
- restrictPublic BooleanBuckets 
MultiRegionAccessPointDetailsRegion, MultiRegionAccessPointDetailsRegionArgs            
- Bucket string
- BucketAccount stringId 
- Region string
- Bucket string
- BucketAccount stringId 
- Region string
- bucket String
- bucketAccount StringId 
- region String
- bucket string
- bucketAccount stringId 
- region string
- bucket str
- bucket_account_ strid 
- region str
- bucket String
- bucketAccount StringId 
- region String
Import
Using pulumi import, import Multi-Region Access Points using the account_id 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.