Amazon CodeBuild · Schema

BatchDeleteBuildsOutput

BatchDeleteBuildsOutput schema from Amazon CodeBuild

AmazonCI/CDBuildContinuous IntegrationDevOpsTesting

Properties

Name Type Description
buildsDeleted object
buildsNotDeleted object
View JSON Schema on GitHub

JSON Schema

amazon-codebuild-batch-delete-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-batch-delete-builds-output-schema.json",
  "title": "BatchDeleteBuildsOutput",
  "description": "BatchDeleteBuildsOutput schema from Amazon CodeBuild",
  "type": "object",
  "properties": {
    "buildsDeleted": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BuildIds"
        },
        {
          "description": "The IDs of the builds that were successfully deleted."
        }
      ]
    },
    "buildsNotDeleted": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BuildsNotDeleted"
        },
        {
          "description": "Information about any builds that could not be successfully deleted."
        }
      ]
    }
  }
}