Amazon EC2 Image Builder · JSON Structure

Ec2 Image Builder Container Structure

A container encapsulates the runtime environment for an application.

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

Container 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

region imageUris

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-structure.json",
  "name": "Container",
  "description": "A container encapsulates the runtime environment for an application.",
  "type": "object",
  "properties": {
    "region": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": "Containers and container images are Region-specific. This is the Region context for the container."
        }
      ]
    },
    "imageUris": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StringList"
        },
        {
          "description": "A list of URIs for containers created in the context Region."
        }
      ]
    }
  }
}