Amazon EC2 Image Builder · JSON Structure

Ec2 Image Builder Distribution Configuration Summary Structure

A high-level overview of a distribution configuration.

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

DistributionConfigurationSummary 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 description dateCreated dateUpdated tags regions

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-distribution-configuration-summary-structure.json",
  "name": "DistributionConfigurationSummary",
  "description": "A high-level overview of a distribution configuration.",
  "type": "object",
  "properties": {
    "arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ImageBuilderArn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the distribution configuration."
        }
      ]
    },
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceName"
        },
        {
          "description": "The name of the distribution configuration."
        }
      ]
    },
    "description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": "The description of the distribution configuration."
        }
      ]
    },
    "dateCreated": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DateTime"
        },
        {
          "description": "The date on which the distribution configuration was created."
        }
      ]
    },
    "dateUpdated": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DateTime"
        },
        {
          "description": "The date on which the distribution configuration was updated."
        }
      ]
    },
    "tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagMap"
        },
        {
          "description": "The tags associated with the distribution configuration."
        }
      ]
    },
    "regions": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RegionList"
        },
        {
          "description": "A list of Regions where the container image is distributed to."
        }
      ]
    }
  }
}