Amazon CodeBuild · Schema

ListBuildsOutput

ListBuildsOutput schema from Amazon CodeBuild

AmazonCI/CDBuildContinuous IntegrationDevOpsTesting

Properties

Name Type Description
ids object
nextToken object
View JSON Schema on GitHub

JSON Schema

amazon-codebuild-list-builds-output-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-builds-output-schema.json",
  "title": "ListBuildsOutput",
  "description": "ListBuildsOutput schema from Amazon CodeBuild",
  "type": "object",
  "properties": {
    "ids": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BuildIds"
        },
        {
          "description": "A list of build IDs, with each build ID representing a single build."
        }
      ]
    },
    "nextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "If there are more than 100 items in the list, only the first 100 items are returned, along with a unique string called a <i>nextToken</i>. To get the next batch of items in the list, call this operation again, adding the next token to the call."
        }
      ]
    }
  }
}