CfnMultiRegionAccessPointMixinProps
- class aws_cdk.mixins_preview.aws_s3.mixins.CfnMultiRegionAccessPointMixinProps(*, name=None, public_access_block_configuration=None, regions=None)
Bases:
objectProperties for CfnMultiRegionAccessPointPropsMixin.
- Parameters:
name (
Optional[str]) – The name of the Multi-Region Access Point.public_access_block_configuration (
Union[IResolvable,PublicAccessBlockConfigurationProperty,Dict[str,Any],None]) – 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 (
Union[IResolvable,Sequence[Union[IResolvable,RegionProperty,Dict[str,Any]]],None]) – A collection of the Regions and buckets associated with the Multi-Region Access Point.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_s3 import mixins as s3_mixins cfn_multi_region_access_point_mixin_props = s3_mixins.CfnMultiRegionAccessPointMixinProps( name="name", public_access_block_configuration=s3_mixins.CfnMultiRegionAccessPointPropsMixin.PublicAccessBlockConfigurationProperty( block_public_acls=False, block_public_policy=False, ignore_public_acls=False, restrict_public_buckets=False ), regions=[s3_mixins.CfnMultiRegionAccessPointPropsMixin.RegionProperty( bucket="bucket", bucket_account_id="bucketAccountId" )] )
Attributes
- name
The name of the Multi-Region Access Point.
- public_access_block_configuration
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
A collection of the Regions and buckets associated with the Multi-Region Access Point.