CfnAccessPointMixinProps
- class aws_cdk.mixins_preview.aws_s3outposts.mixins.CfnAccessPointMixinProps(*, bucket=None, name=None, policy=None, vpc_configuration=None)
Bases:
objectProperties for CfnAccessPointPropsMixin.
- Parameters:
bucket (
Optional[str]) – The Amazon Resource Name (ARN) of the S3 on Outposts bucket that is associated with this access point.name (
Optional[str]) – The name of this access point.policy (
Any) – The access point policy associated with this access point.vpc_configuration (
Union[IResolvable,VpcConfigurationProperty,Dict[str,Any],None]) – The virtual private cloud (VPC) configuration for this access point, if one exists.
- 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_s3outposts import mixins as s3outposts_mixins # policy: Any cfn_access_point_mixin_props = s3outposts_mixins.CfnAccessPointMixinProps( bucket="bucket", name="name", policy=policy, vpc_configuration=s3outposts_mixins.CfnAccessPointPropsMixin.VpcConfigurationProperty( vpc_id="vpcId" ) )
Attributes
- bucket
The Amazon Resource Name (ARN) of the S3 on Outposts bucket that is associated with this access point.
- name
The name of this access point.
- policy
The access point policy associated with this access point.
- vpc_configuration
The virtual private cloud (VPC) configuration for this access point, if one exists.