interface RegionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.S3.Mixins.CfnMultiRegionAccessPointPropsMixin.RegionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awss3/mixins#CfnMultiRegionAccessPointPropsMixin_RegionProperty |
Java | software.amazon.awscdk.mixins.preview.services.s3.mixins.CfnMultiRegionAccessPointPropsMixin.RegionProperty |
Python | aws_cdk.mixins_preview.aws_s3.mixins.CfnMultiRegionAccessPointPropsMixin.RegionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_s3 » mixins » CfnMultiRegionAccessPointPropsMixin » RegionProperty |
A bucket associated with a specific Region when creating Multi-Region Access Points.
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 regionProperty: s3_mixins.CfnMultiRegionAccessPointPropsMixin.RegionProperty = {
bucket: 'bucket',
bucketAccountId: 'bucketAccountId',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket? | string | The name of the associated bucket for the Region. |
| bucket | string | The AWS account ID that owns the Amazon S3 bucket that's associated with this Multi-Region Access Point. |
bucket?
Type:
string
(optional)
The name of the associated bucket for the Region.
bucketAccountId?
Type:
string
(optional)
The AWS account ID that owns the Amazon S3 bucket that's associated with this Multi-Region Access Point.

.NET
Go
Java
Python
TypeScript