View source: R/efs_operations.R
efs_create_access_point | R Documentation |
Creates an EFS access point. An access point is an application-specific view into an EFS file system that applies an operating system user and group, and a file system path, to any file system request made through the access point. The operating system user and group override any identity information provided by the NFS client. The file system path is exposed as the access point's root directory. Applications using the access point can only access data in the application's own directory and any subdirectories. To learn more, see Mounting a file system using EFS access points.
See https://www.paws-r-sdk.com/docs/efs_create_access_point/ for full documentation.
efs_create_access_point(
ClientToken,
Tags = NULL,
FileSystemId,
PosixUser = NULL,
RootDirectory = NULL
)
ClientToken |
[required] A string of up to 64 ASCII characters that Amazon EFS uses to ensure idempotent creation. |
Tags |
Creates tags associated with the access point. Each tag is a key-value pair, each key must be unique. For more information, see Tagging Amazon Web Services resources in the Amazon Web Services General Reference Guide. |
FileSystemId |
[required] The ID of the EFS file system that the access point provides access to. |
PosixUser |
The operating system user and group applied to all file system requests made using the access point. |
RootDirectory |
Specifies the directory on the EFS file system that the access point
exposes as the root directory of your file system to NFS clients using
the access point. The clients using the access point can only access the
root directory and below. If the Amazon EFS creates a root directory only if you have provided the CreationInfo: OwnUid, OwnGID, and permissions for the directory. If you do not provide this information, Amazon EFS does not create the root directory. If the root directory does not exist, attempts to mount using the access point will fail. |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.