Amazon EC2 Image Builder · JSON Structure

Ec2 Image Builder Image Package Structure

Represents a package installed on an Image Builder image.

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

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

Properties

packageName packageVersion

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-package-structure.json",
  "name": "ImagePackage",
  "description": "Represents a package installed on an Image Builder image.",
  "type": "object",
  "properties": {
    "packageName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": "The name of the package as reported to the operating system package manager."
        }
      ]
    },
    "packageVersion": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": "The version of the package as reported to the operating system package manager."
        }
      ]
    }
  }
}