{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-snow-family/refs/heads/main/json-schema/amazon-snow-family-list-cluster-jobs-request-schema.json",
"title": "ListClusterJobsRequest",
"description": "ListClusterJobsRequest schema from Amazon Snow Family API",
"type": "object",
"properties": {
"ClusterId": {
"allOf": [
{
"$ref": "#/components/schemas/ClusterId"
},
{
"description": "The 39-character ID for the cluster that you want to list, for example <code>CID123e4567-e89b-12d3-a456-426655440000</code>."
}
]
},
"MaxResults": {
"allOf": [
{
"$ref": "#/components/schemas/ListLimit"
},
{
"description": "The number of <code>JobListEntry</code> objects to return."
}
]
},
"NextToken": {
"allOf": [
{
"$ref": "#/components/schemas/String"
},
{
"description": "HTTP requests are stateless. To identify what object comes \"next\" in the list of <code>JobListEntry</code> objects, you have the option of specifying <code>NextToken</code> as the starting point for your returned list."
}
]
}
},
"required": [
"ClusterId"
]
}