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 its own directory and below. To learn more, see Mounting a File System Using EFS Access Points.
efs_create_access_point(ClientToken, Tags, FileSystemId, PosixUser,
RootDirectory)
[required] A string of up to 64 ASCII characters that Amazon EFS uses to ensure idempotent creation.
Creates tags associated with the access point. Each tag is a key-value pair.
[required] The ID of the EFS file system that the access point provides access to.
The operating system user and group applied to all file system requests made using the access point.
Specifies the directory on the Amazon 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 RootDirectory
\> Path
specified does not exist, EFS creates it and applies the CreationInfo
settings when a client connects to an access point. When specifying a
RootDirectory
, you need to provide the Path
, and the CreationInfo
is optional.
svc$create_access_point( ClientToken = "string", Tags = list( list( Key = "string", Value = "string" ) ), FileSystemId = "string", PosixUser = list( Uid = 123, Gid = 123, SecondaryGids = list( 123 ) ), RootDirectory = list( Path = "string", CreationInfo = list( OwnerUid = 123, OwnerGid = 123, Permissions = "string" ) ) )
This operation requires permissions for the
elasticfilesystem:CreateAccessPoint
action.