Amazon CodeBuild · Schema

BuildNotDeleted

Information about a build that could not be successfully deleted.

AmazonCI/CDBuildContinuous IntegrationDevOpsTesting

Properties

Name Type Description
id object
statusCode object
View JSON Schema on GitHub

JSON Schema

amazon-codebuild-build-not-deleted-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-build-not-deleted-schema.json",
  "title": "BuildNotDeleted",
  "description": "Information about a build that could not be successfully deleted.",
  "type": "object",
  "properties": {
    "id": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": "The ID of the build that could not be successfully deleted."
        }
      ]
    },
    "statusCode": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "Additional information about the build that could not be successfully deleted."
        }
      ]
    }
  }
}