efs_create_access_point: Creates an EFS access point

View source: R/efs_operations.R

efs_create_access_pointR Documentation

Creates an EFS access point

Description

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.

Usage

efs_create_access_point(
  ClientToken,
  Tags = NULL,
  FileSystemId,
  PosixUser = NULL,
  RootDirectory = NULL
)

Arguments

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 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 must provide the Path, and the CreationInfo.

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.


paws.storage documentation built on Sept. 12, 2023, 1:23 a.m.