CfnAccessPointMixinProps

class aws_cdk.cfn_property_mixins.aws_s3files.CfnAccessPointMixinProps(*, client_token=None, file_system_id=None, posix_user=None, root_directory=None, tags=None)

Bases: object

Properties for CfnAccessPointPropsMixin.

Parameters:
  • client_token (Optional[str]) – (optional) A string of up to 64 ASCII characters that Amazon EFS uses to ensure idempotent creation.

  • file_system_id (Optional[str]) – The ID of the S3 Files file system that the access point provides access to.

  • posix_user (Union[IResolvable, PosixUserProperty, Dict[str, Any], None])

  • root_directory (Union[IResolvable, RootDirectoryProperty, Dict[str, Any], None])

  • tags (Optional[Sequence[Union[AccessPointTagProperty, Dict[str, Any]]]])

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3files-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.cfn_property_mixins import aws_s3files as s3files

cfn_access_point_mixin_props = s3files.CfnAccessPointMixinProps(
    client_token="clientToken",
    file_system_id="fileSystemId",
    posix_user=s3files.CfnAccessPointPropsMixin.PosixUserProperty(
        gid="gid",
        secondary_gids=["secondaryGids"],
        uid="uid"
    ),
    root_directory=s3files.CfnAccessPointPropsMixin.RootDirectoryProperty(
        creation_permissions=s3files.CfnAccessPointPropsMixin.CreationPermissionsProperty(
            owner_gid="ownerGid",
            owner_uid="ownerUid",
            permissions="permissions"
        ),
        path="path"
    ),
    tags=[s3files.CfnAccessPointPropsMixin.AccessPointTagProperty(
        key="key",
        value="value"
    )]
)

Attributes

client_token

(optional) A string of up to 64 ASCII characters that Amazon EFS uses to ensure idempotent creation.

See:

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

file_system_id

The ID of the S3 Files file system that the access point provides access to.

See:

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

posix_user

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

Type:

see

root_directory

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

Type:

see

tags

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

Type:

see