{
"$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-gateways-input-schema.json",
"title": "ListGatewaysInput",
"description": "<p>A JSON object containing zero or more of the following fields:</p> <ul> <li> <p> <a>ListGatewaysInput$Limit</a> </p> </li> <li> <p> <a>ListGatewaysInput$Marker</a> </p> </li> </ul>",
"type": "object",
"properties": {
"Marker": {
"allOf": [
{
"$ref": "#/components/schemas/Marker"
},
{
"description": "An opaque string that indicates the position at which to begin the returned list of gateways."
}
]
},
"Limit": {
"allOf": [
{
"$ref": "#/components/schemas/PositiveIntObject"
},
{
"description": "Specifies that the list of gateways returned be limited to the specified number of items."
}
]
}
}
}