Describe S3 Access Point Attachments
| fsx_describe_s3_access_point_attachments | R Documentation |
Describes one or more S3 access points attached to Amazon FSx volumes¶
Description¶
Describes one or more S3 access points attached to Amazon FSx volumes.
The requester requires the following permission to perform this action:
fsx:DescribeS3AccessPointAttachments
Usage¶
fsx_describe_s3_access_point_attachments(Names, Filters, MaxResults,
NextToken)
Arguments¶
Names |
The names of the S3 access point attachments whose descriptions you want to retrieve. |
Filters |
Enter a filter Name and Values pair to view a select set of S3 access point attachments. |
MaxResults |
The maximum number of resources to return in the response. This value must be an integer greater than zero. |
NextToken |
(Optional) Opaque pagination token returned from a previous
operation (String). If present, this token indicates from what point you
can continue processing the request, where the previous
|
Value¶
A list with the following syntax:
list(
S3AccessPointAttachments = list(
list(
Lifecycle = "AVAILABLE"|"CREATING"|"DELETING"|"UPDATING"|"FAILED"|"MISCONFIGURED",
LifecycleTransitionReason = list(
Message = "string"
),
CreationTime = as.POSIXct(
"2015-01-01"
),
Name = "string",
Type = "OPENZFS"|"ONTAP",
OpenZFSConfiguration = list(
VolumeId = "string",
FileSystemIdentity = list(
Type = "POSIX",
PosixUser = list(
Uid = 123,
Gid = 123,
SecondaryGids = list(
123
)
)
)
),
OntapConfiguration = list(
VolumeId = "string",
FileSystemIdentity = list(
Type = "UNIX"|"WINDOWS",
UnixUser = list(
Name = "string"
),
WindowsUser = list(
Name = "string"
)
)
),
S3AccessPoint = list(
ResourceARN = "string",
Alias = "string",
VpcConfiguration = list(
VpcId = "string"
)
)
)
),
NextToken = "string"
)
Request syntax¶
svc$describe_s3_access_point_attachments(
Names = list(
"string"
),
Filters = list(
list(
Name = "file-system-id"|"volume-id"|"type",
Values = list(
"string"
)
)
),
MaxResults = 123,
NextToken = "string"
)