{
"$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-tapes-input-schema.json",
"title": "ListTapesInput",
"description": "<p>A JSON object that contains one or more of the following fields:</p> <ul> <li> <p> <a>ListTapesInput$Limit</a> </p> </li> <li> <p> <a>ListTapesInput$Marker</a> </p> </li> <li> <p> <a>ListTapesInput$TapeARNs</a> </p> </li> </ul>",
"type": "object",
"properties": {
"TapeARNs": {
"$ref": "#/components/schemas/TapeARNs"
},
"Marker": {
"allOf": [
{
"$ref": "#/components/schemas/Marker"
},
{
"description": "A string that indicates the position at which to begin the returned list of tapes."
}
]
},
"Limit": {
"allOf": [
{
"$ref": "#/components/schemas/PositiveIntObject"
},
{
"description": "An optional number limit for the tapes in the list returned by this call."
}
]
}
}
}