Amazon EC2 Image Builder · JSON Structure

Ec2 Image Builder Image Recipe Summary Structure

A summary of an image recipe.

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

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

Properties

arn 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-image-recipe-summary-structure.json",
  "name": "ImageRecipeSummary",
  "description": "A summary of an image recipe.",
  "type": "object",
  "properties": {
    "arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ImageBuilderArn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the image recipe."
        }
      ]
    },
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceName"
        },
        {
          "description": "The name of the image recipe."
        }
      ]
    },
    "platform": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Platform"
        },
        {
          "description": "The platform of the image recipe."
        }
      ]
    },
    "owner": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": "The owner of the image recipe."
        }
      ]
    },
    "parentImage": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": "The base image of the image recipe."
        }
      ]
    },
    "dateCreated": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DateTime"
        },
        {
          "description": "The date on which this image recipe was created."
        }
      ]
    },
    "tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagMap"
        },
        {
          "description": "The tags of the image recipe."
        }
      ]
    }
  }
}