CfnS3AccessPointAttachmentProps

class aws_cdk.aws_fsx.CfnS3AccessPointAttachmentProps(*, name, open_zfs_configuration, type, s3_access_point=None)

Bases: object

Properties for defining a CfnS3AccessPointAttachment.

Parameters:
See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-s3accesspointattachment.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_fsx as fsx

# policy: Any

cfn_s3_access_point_attachment_props = fsx.CfnS3AccessPointAttachmentProps(
    name="name",
    open_zfs_configuration=fsx.CfnS3AccessPointAttachment.S3AccessPointOpenZFSConfigurationProperty(
        file_system_identity=fsx.CfnS3AccessPointAttachment.OpenZFSFileSystemIdentityProperty(
            posix_user=fsx.CfnS3AccessPointAttachment.OpenZFSPosixFileSystemUserProperty(
                gid=123,
                uid=123,

                # the properties below are optional
                secondary_gids=[fsx.CfnS3AccessPointAttachment.FileSystemGIDProperty(
                    gid=123
                )]
            ),
            type="type"
        ),
        volume_id="volumeId"
    ),
    type="type",

    # the properties below are optional
    s3_access_point=fsx.CfnS3AccessPointAttachment.S3AccessPointProperty(
        alias="alias",
        policy=policy,
        resource_arn="resourceArn",
        vpc_configuration=fsx.CfnS3AccessPointAttachment.S3AccessPointVpcConfigurationProperty(
            vpc_id="vpcId"
        )
    )
)

Attributes

name

The Name of the S3AccessPointAttachment.

See:

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

open_zfs_configuration

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-s3accesspointattachment.html#cfn-fsx-s3accesspointattachment-openzfsconfiguration

Type:

see

s3_access_point

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-s3accesspointattachment.html#cfn-fsx-s3accesspointattachment-s3accesspoint

Type:

see

type

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-s3accesspointattachment.html#cfn-fsx-s3accesspointattachment-type

Type:

see