CfnAccessPointProps

class aws_cdk.aws_s3outposts.CfnAccessPointProps(*, bucket, name, vpc_configuration, policy=None)

Bases: object

Properties for defining a CfnAccessPoint.

Parameters:
  • bucket (str) – The Amazon Resource Name (ARN) of the S3 on Outposts bucket that is associated with this access point.

  • name (str) – The name of this access point.

  • vpc_configuration (Union[IResolvable, VpcConfigurationProperty, Dict[str, Any]]) – The virtual private cloud (VPC) configuration for this access point, if one exists.

  • policy (Optional[Any]) – The access point policy associated with this access point.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3outposts-accesspoint.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_s3outposts as s3outposts

# policy: Any

cfn_access_point_props = s3outposts.CfnAccessPointProps(
    bucket="bucket",
    name="name",
    vpc_configuration=s3outposts.CfnAccessPoint.VpcConfigurationProperty(
        vpc_id="vpcId"
    ),

    # the properties below are optional
    policy=policy
)

Attributes

bucket

The Amazon Resource Name (ARN) of the S3 on Outposts bucket that is associated with this access point.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3outposts-accesspoint.html#cfn-s3outposts-accesspoint-bucket

name

The name of this access point.

See:

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

policy

The access point policy associated with this access point.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3outposts-accesspoint.html#cfn-s3outposts-accesspoint-policy

vpc_configuration

The virtual private cloud (VPC) configuration for this access point, if one exists.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3outposts-accesspoint.html#cfn-s3outposts-accesspoint-vpcconfiguration