List File System Associations
storagegateway_list_file_system_associations | R Documentation |
Gets a list of FileSystemAssociationSummary objects¶
Description¶
Gets a list of FileSystemAssociationSummary
objects. Each object
contains a summary of a file system association. This operation is only
supported for FSx File Gateways.
Usage¶
storagegateway_list_file_system_associations(GatewayARN, Limit, Marker)
Arguments¶
GatewayARN |
|
Limit |
The maximum number of file system associations to return in the
response. If present, |
Marker |
Opaque pagination token returned from a previous
|
Value¶
A list with the following syntax:
list(
Marker = "string",
NextMarker = "string",
FileSystemAssociationSummaryList = list(
list(
FileSystemAssociationId = "string",
FileSystemAssociationARN = "string",
FileSystemAssociationStatus = "string",
GatewayARN = "string"
)
)
)
Request syntax¶
svc$list_file_system_associations(
GatewayARN = "string",
Limit = 123,
Marker = "string"
)