Amazon CodeBuild · Schema

ListBuildBatchesInput

ListBuildBatchesInput schema from Amazon CodeBuild

AmazonCI/CDBuildContinuous IntegrationDevOpsTesting

Properties

Name Type Description
filter object
maxResults object
sortOrder object
nextToken object
View JSON Schema on GitHub

JSON Schema

amazon-codebuild-list-build-batches-input-schema.json Raw ↑
{
  "$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 <code>BuildBatchFilter</code> 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": "<p>Specifies the sort order of the returned items. Valid values include:</p> <ul> <li> <p> <code>ASCENDING</code>: List the batch build identifiers in ascending order by identifier.</p> </li> <li> <p> <code>DESCENDING</code>: List the batch build identifiers in descending order by identifier.</p> </li> </ul>"
        }
      ]
    },
    "nextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The <code>nextToken</code> value returned from a previous call to <code>ListBuildBatches</code>. This specifies the next item to return. To return the beginning of the list, exclude this parameter."
        }
      ]
    }
  }
}