interface CfnMultiRegionAccessPointMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.S3.Mixins.CfnMultiRegionAccessPointMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awss3/mixins#CfnMultiRegionAccessPointMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.s3.mixins.CfnMultiRegionAccessPointMixinProps |
Python | aws_cdk.mixins_preview.aws_s3.mixins.CfnMultiRegionAccessPointMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_s3 » mixins » CfnMultiRegionAccessPointMixinProps |
Properties for CfnMultiRegionAccessPointPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as s3_mixins } from '@aws-cdk/mixins-preview/aws-s3';
const cfnMultiRegionAccessPointMixinProps: s3_mixins.CfnMultiRegionAccessPointMixinProps = {
name: 'name',
publicAccessBlockConfiguration: {
blockPublicAcls: false,
blockPublicPolicy: false,
ignorePublicAcls: false,
restrictPublicBuckets: false,
},
regions: [{
bucket: 'bucket',
bucketAccountId: 'bucketAccountId',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name of the Multi-Region Access Point. |
| public | IResolvable | Public | The PublicAccessBlock configuration that you want to apply to this Multi-Region Access Point. |
| regions? | IResolvable | (IResolvable | Region)[] | 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 | Public
(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 .
regions?
Type:
IResolvable | (IResolvable | Region)[]
(optional)
A collection of the Regions and buckets associated with the Multi-Region Access Point.

.NET
Go
Java
Python
TypeScript