aws-cdk-lib.aws_s3.CfnMultiRegionAccessPointProps

interface CfnMultiRegionAccessPointProps

LanguageType name
.NETAmazon.CDK.AWS.S3.CfnMultiRegionAccessPointProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awss3#CfnMultiRegionAccessPointProps
Javasoftware.amazon.awscdk.services.s3.CfnMultiRegionAccessPointProps
Pythonaws_cdk.aws_s3.CfnMultiRegionAccessPointProps
TypeScript aws-cdk-lib » aws_s3 » CfnMultiRegionAccessPointProps

Properties for defining a CfnMultiRegionAccessPoint.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_s3 as s3 } from 'aws-cdk-lib';
const cfnMultiRegionAccessPointProps: s3.CfnMultiRegionAccessPointProps = {
  regions: [{
    bucket: 'bucket',

    // the properties below are optional
    bucketAccountId: 'bucketAccountId',
  }],

  // the properties below are optional
  name: 'name',
  publicAccessBlockConfiguration: {
    blockPublicAcls: false,
    blockPublicPolicy: false,
    ignorePublicAcls: false,
    restrictPublicBuckets: false,
  },
};

Properties

NameTypeDescription
regionsIResolvable | IResolvable | RegionProperty[]A collection of the Regions and buckets associated with the Multi-Region Access Point.
name?stringThe name of the Multi-Region Access Point.
publicAccessBlockConfiguration?IResolvable | PublicAccessBlockConfigurationPropertyThe PublicAccessBlock configuration that you want to apply to this Multi-Region Access Point.

regions

Type: IResolvable | IResolvable | RegionProperty[]

A collection of the Regions and buckets associated with the Multi-Region Access Point.


name?

Type: string (optional)

The name of the Multi-Region Access Point.


publicAccessBlockConfiguration?

Type: IResolvable | PublicAccessBlockConfigurationProperty (optional)

The 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 an object public, see The Meaning of "Public" in the Amazon S3 User Guide .