{
"$schema": "https://json-structure.org/meta/core/v0/#",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codebuild/refs/heads/main/json-structure/amazon-codebuild-list-build-batches-for-project-input-structure.json",
"name": "ListBuildBatchesForProjectInput",
"description": "ListBuildBatchesForProjectInput schema from Amazon CodeBuild",
"type": "object",
"properties": {
"projectName": {
"allOf": [
{
"$ref": "#/components/schemas/NonEmptyString"
},
{
"description": "The name of the project."
}
]
},
"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 ListBuildBatchesForProject. This specifies the next item to return. To return the beginning of the list, exclude this parameter."
}
]
}
}
}