Amazon CodeBuild · Schema

DeleteBuildBatchOutput

DeleteBuildBatchOutput schema from Amazon CodeBuild

AmazonCI/CDBuildContinuous IntegrationDevOpsTesting

Properties

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

JSON Schema

amazon-codebuild-delete-build-batch-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-delete-build-batch-output-schema.json",
  "title": "DeleteBuildBatchOutput",
  "description": "DeleteBuildBatchOutput schema from Amazon CodeBuild",
  "type": "object",
  "properties": {
    "statusCode": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The status code."
        }
      ]
    },
    "buildsDeleted": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BuildIds"
        },
        {
          "description": "An array of strings that contain the identifiers of the builds that were deleted."
        }
      ]
    },
    "buildsNotDeleted": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BuildsNotDeleted"
        },
        {
          "description": "An array of <code>BuildNotDeleted</code> objects that specify the builds that could not be deleted."
        }
      ]
    }
  }
}