Amazon CodeBuild · JSON Structure

Amazon Codebuild Environment Image Structure

Information about a Docker image that is managed by CodeBuild.

Type: object Properties: 3
AmazonCI/CDBuildContinuous IntegrationDevOpsTesting

EnvironmentImage is a JSON Structure definition published by Amazon CodeBuild, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name description versions

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codebuild/refs/heads/main/json-structure/amazon-codebuild-environment-image-structure.json",
  "name": "EnvironmentImage",
  "description": "Information about a Docker image that is managed by CodeBuild.",
  "type": "object",
  "properties": {
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The name of the Docker image."
        }
      ]
    },
    "description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The description of the Docker image."
        }
      ]
    },
    "versions": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ImageVersions"
        },
        {
          "description": "A list of environment image versions."
        }
      ]
    }
  }
}