{ "$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-distribution-configuration-structure.json", "name": "ContainerDistributionConfiguration", "description": "Container distribution settings for encryption, licensing, and sharing in a specific Region.", "type": "object", "properties": { "description": { "allOf": [ { "$ref": "#/components/schemas/NonEmptyString" }, { "description": "The description of the container distribution configuration." } ] }, "containerTags": { "allOf": [ { "$ref": "#/components/schemas/StringList" }, { "description": "Tags that are attached to the container distribution configuration." } ] }, "targetRepository": { "allOf": [ { "$ref": "#/components/schemas/TargetContainerRepository" }, { "description": "The destination repository for the container distribution configuration." } ] } }, "required": [ "targetRepository" ] }