Describe Access Points
efs_describe_access_points | R Documentation |
Returns the description of a specific Amazon EFS access point if the AccessPointId is provided¶
Description¶
Returns the description of a specific Amazon EFS access point if the
AccessPointId
is provided. If you provide an EFS FileSystemId
, it
returns descriptions of all access points for that file system. You can
provide either an AccessPointId
or a FileSystemId
in the request,
but not both.
This operation requires permissions for the
elasticfilesystem:DescribeAccessPoints
action.
Usage¶
efs_describe_access_points(MaxResults, NextToken, AccessPointId,
FileSystemId)
Arguments¶
MaxResults |
(Optional) When retrieving all access points for a file system,
you can optionally specify the |
NextToken |
|
AccessPointId |
(Optional) Specifies an EFS access point to describe in the
response; mutually exclusive with |
FileSystemId |
(Optional) If you provide a |
Value¶
A list with the following syntax:
list(
AccessPoints = list(
list(
ClientToken = "string",
Name = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
),
AccessPointId = "string",
AccessPointArn = "string",
FileSystemId = "string",
PosixUser = list(
Uid = 123,
Gid = 123,
SecondaryGids = list(
123
)
),
RootDirectory = list(
Path = "string",
CreationInfo = list(
OwnerUid = 123,
OwnerGid = 123,
Permissions = "string"
)
),
OwnerId = "string",
LifeCycleState = "creating"|"available"|"updating"|"deleting"|"deleted"|"error"
)
),
NextToken = "string"
)
Request syntax¶
svc$describe_access_points(
MaxResults = 123,
NextToken = "string",
AccessPointId = "string",
FileSystemId = "string"
)