{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-storage-gateway/refs/heads/main/json-schema/amazon-storage-gateway-list-file-system-associations-input-schema.json",
"title": "ListFileSystemAssociationsInput",
"description": "ListFileSystemAssociationsInput schema from Amazon Storage Gateway API",
"type": "object",
"properties": {
"GatewayARN": {
"$ref": "#/components/schemas/GatewayARN"
},
"Limit": {
"allOf": [
{
"$ref": "#/components/schemas/PositiveIntObject"
},
{
"description": "The maximum number of file system associations to return in the response. If present, Limit must be an integer with a value greater than zero. Optional."
}
]
},
"Marker": {
"allOf": [
{
"$ref": "#/components/schemas/Marker"
},
{
"description": "Opaque pagination token returned from a previous ListFileSystemAssociations operation. If present, Marker specifies where to continue the list from after a previous call to ListFileSystemAssociations. Optional."
}
]
}
}
}