interface RegionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.S3.CfnMultiRegionAccessPointPropsMixin.RegionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awss3#CfnMultiRegionAccessPointPropsMixin_RegionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.s3.CfnMultiRegionAccessPointPropsMixin.RegionProperty |
Python | aws_cdk.cfn_property_mixins.aws_s3.CfnMultiRegionAccessPointPropsMixin.RegionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_s3 » 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 { aws_s3 as s3 } from '@aws-cdk/cfn-property-mixins';
const regionProperty: s3.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