Amazon EC2 Image Builder · JSON Structure

Ec2 Image Builder Create Distribution Configuration Request Structure

CreateDistributionConfigurationRequest schema from EC2 Image Builder

Type: object Properties: 5 Required: 3
Amazon Web ServicesAutomationContainer ImagesEC2Image BuildingVirtual Machine Images

CreateDistributionConfigurationRequest is a JSON Structure definition published by Amazon EC2 Image Builder, describing 5 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name description distributions tags clientToken

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-create-distribution-configuration-request-structure.json",
  "name": "CreateDistributionConfigurationRequest",
  "description": "CreateDistributionConfigurationRequest schema from EC2 Image Builder",
  "type": "object",
  "properties": {
    "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."
        }
      ]
    },
    "distributions": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DistributionList"
        },
        {
          "description": "The distributions of the distribution configuration."
        }
      ]
    },
    "tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagMap"
        },
        {
          "description": "The tags of the distribution configuration."
        }
      ]
    },
    "clientToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ClientToken"
        },
        {
          "description": "The idempotency token of the distribution configuration."
        }
      ]
    }
  },
  "required": [
    "name",
    "distributions",
    "clientToken"
  ]
}