LinuxMountPointProps

class aws_rfdk.LinuxMountPointProps(*, location, permissions=None)

Bases: object

Properties for the mount point of a filesystem on a Linux system.

Parameters
  • location (str) – Directory for the mount point.

  • permissions (Optional[MountPermissions]) – File permissions for the mounted filesystem. Default: MountPermissions.READWRITE

Attributes

location

Directory for the mount point.

Return type

str

permissions

File permissions for the mounted filesystem.

Default

MountPermissions.READWRITE

Return type

Optional[MountPermissions]