AccessPointProps¶
-
class
aws_cdk.aws_efs.
AccessPointProps
(*, create_acl=None, path=None, posix_user=None, file_system)¶ Bases:
aws_cdk.aws_efs.AccessPointOptions
(experimental) Properties for the AccessPoint.
- Parameters
create_acl (
Optional
[Acl
]) – (experimental) Specifies the POSIX IDs and permissions to apply when creating the access point’s root directory. If the root directory specified bypath
does not exist, EFS creates the root directory and applies the permissions specified here. If the specifiedpath
does not exist, you must specifycreateAcl
. Default: - None. The directory specified bypath
must exist.path (
Optional
[str
]) – (experimental) Specifies the path on the EFS file system to expose as the root directory to NFS clients using the access point to access the EFS file system. Default: ‘/’posix_user (
Optional
[PosixUser
]) – (experimental) The full POSIX identity, including the user ID, group ID, and any secondary group IDs, on the access point that is used for all file system operations performed by NFS clients using the access point. Specify this to enforce a user identity using an access point. Default: - user identity not enforcedfile_system (
IFileSystem
) – (experimental) The efs filesystem.
- Stability
experimental
Attributes
-
create_acl
¶ (experimental) Specifies the POSIX IDs and permissions to apply when creating the access point’s root directory.
If the root directory specified by
path
does not exist, EFS creates the root directory and applies the permissions specified here. If the specifiedpath
does not exist, you must specifycreateAcl
.- Default
None. The directory specified by
path
must exist.
- Stability
experimental
- Return type
Optional
[Acl
]
-
file_system
¶ (experimental) The efs filesystem.
- Stability
experimental
- Return type
-
path
¶ (experimental) Specifies the path on the EFS file system to expose as the root directory to NFS clients using the access point to access the EFS file system.
- Default
‘/’
- Stability
experimental
- Return type
Optional
[str
]
-
posix_user
¶ (experimental) The full POSIX identity, including the user ID, group ID, and any secondary group IDs, on the access point that is used for all file system operations performed by NFS clients using the access point.
Specify this to enforce a user identity using an access point.
- Default
user identity not enforced
- See
- Stability
experimental
- Return type
Optional
[PosixUser
]