Amazon EC2 Image Builder · JSON Structure

Ec2 Image Builder Container Recipe Summary Structure

A summary of a container recipe

Type: object Properties: 8
Amazon Web ServicesAutomationContainer ImagesEC2Image BuildingVirtual Machine Images

ContainerRecipeSummary is a JSON Structure definition published by Amazon EC2 Image Builder, describing 8 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

arn containerType name platform owner parentImage dateCreated tags

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-ec2-image-builder/refs/heads/main/json-structure/ec2-image-builder-container-recipe-summary-structure.json",
  "name": "ContainerRecipeSummary",
  "description": "A summary of a container recipe",
  "type": "object",
  "properties": {
    "arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ImageBuilderArn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the container recipe."
        }
      ]
    },
    "containerType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ContainerType"
        },
        {
          "description": "Specifies the type of container, such as \"Docker\"."
        }
      ]
    },
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceName"
        },
        {
          "description": "The name of the container recipe."
        }
      ]
    },
    "platform": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Platform"
        },
        {
          "description": "The system platform for the container, such as Windows or Linux."
        }
      ]
    },
    "owner": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": "The owner of the container recipe."
        }
      ]
    },
    "parentImage": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": "The base image for the container recipe."
        }
      ]
    },
    "dateCreated": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DateTime"
        },
        {
          "description": "The date when this container recipe was created."
        }
      ]
    },
    "tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagMap"
        },
        {
          "description": "Tags that are attached to the container recipe."
        }
      ]
    }
  }
}