CfnMultiRegionAccessPointProps

class aws_cdk.aws_s3.CfnMultiRegionAccessPointProps(*, regions, name=None, public_access_block_configuration=None)

Bases: object

Properties for defining a CfnMultiRegionAccessPoint.

Parameters:
  • regions (Union[IResolvable, Sequence[Union[IResolvable, RegionProperty, Dict[str, Any]]]]) – A collection of the Regions and buckets associated with the Multi-Region Access Point.

  • 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 .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-multiregionaccesspoint.html

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 import aws_s3 as s3

cfn_multi_region_access_point_props = s3.CfnMultiRegionAccessPointProps(
    regions=[s3.CfnMultiRegionAccessPoint.RegionProperty(
        bucket="bucket",

        # the properties below are optional
        bucket_account_id="bucketAccountId"
    )],

    # the properties below are optional
    name="name",
    public_access_block_configuration=s3.CfnMultiRegionAccessPoint.PublicAccessBlockConfigurationProperty(
        block_public_acls=False,
        block_public_policy=False,
        ignore_public_acls=False,
        restrict_public_buckets=False
    )
)

Attributes

name

The name of the Multi-Region Access Point.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-multiregionaccesspoint.html#cfn-s3-multiregionaccesspoint-name

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 .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-multiregionaccesspoint.html#cfn-s3-multiregionaccesspoint-publicaccessblockconfiguration

regions

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

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-multiregionaccesspoint.html#cfn-s3-multiregionaccesspoint-regions