{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codebuild/refs/heads/main/json-schema/amazon-codebuild-list-build-batches-input-schema.json",
"title": "ListBuildBatchesInput",
"description": "ListBuildBatchesInput schema from Amazon CodeBuild",
"type": "object",
"properties": {
"filter": {
"allOf": [
{
"$ref": "#/components/schemas/BuildBatchFilter"
},
{
"description": "A BuildBatchFilter object that specifies the filters for the search."
}
]
},
"maxResults": {
"allOf": [
{
"$ref": "#/components/schemas/PageSize"
},
{
"description": "The maximum number of results to return."
}
]
},
"sortOrder": {
"allOf": [
{
"$ref": "#/components/schemas/SortOrderType"
},
{
"description": "
Specifies the sort order of the returned items. Valid values include:
ASCENDING: List the batch build identifiers in ascending order by identifier.
DESCENDING: List the batch build identifiers in descending order by identifier.
nextToken value returned from a previous call to ListBuildBatches. This specifies the next item to return. To return the beginning of the list, exclude this parameter."
}
]
}
}
}