{ "$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-component-summary-structure.json", "name": "ComponentSummary", "description": "A high-level summary of a component.", "type": "object", "properties": { "arn": { "allOf": [ { "$ref": "#/components/schemas/ImageBuilderArn" }, { "description": "The Amazon Resource Name (ARN) of the component." } ] }, "name": { "allOf": [ { "$ref": "#/components/schemas/ResourceName" }, { "description": "The name of the component." } ] }, "version": { "allOf": [ { "$ref": "#/components/schemas/VersionNumber" }, { "description": "The version of the component." } ] }, "platform": { "allOf": [ { "$ref": "#/components/schemas/Platform" }, { "description": "The operating system platform of the component." } ] }, "supportedOsVersions": { "allOf": [ { "$ref": "#/components/schemas/OsVersionList" }, { "description": "The operating system (OS) version that the component supports. If the OS information is available, Image Builder performs a prefix match against the base image OS version during image recipe creation." } ] }, "state": { "allOf": [ { "$ref": "#/components/schemas/ComponentState" }, { "description": "Describes the current status of the component." } ] }, "type": { "allOf": [ { "$ref": "#/components/schemas/ComponentType" }, { "description": "The component type specifies whether Image Builder uses the component to build the image or only to test it." } ] }, "owner": { "allOf": [ { "$ref": "#/components/schemas/NonEmptyString" }, { "description": "The owner of the component." } ] }, "description": { "allOf": [ { "$ref": "#/components/schemas/NonEmptyString" }, { "description": "The description of the component." } ] }, "changeDescription": { "allOf": [ { "$ref": "#/components/schemas/NonEmptyString" }, { "description": "The change description for the current version of the component." } ] }, "dateCreated": { "allOf": [ { "$ref": "#/components/schemas/DateTime" }, { "description": "The original creation date of the component." } ] }, "tags": { "allOf": [ { "$ref": "#/components/schemas/TagMap" }, { "description": "The tags that apply to the component." } ] }, "publisher": { "allOf": [ { "$ref": "#/components/schemas/NonEmptyString" }, { "description": "Contains the name of the publisher if this is a third-party component. Otherwise, this property is empty." } ] }, "obfuscate": { "allOf": [ { "$ref": "#/components/schemas/Boolean" }, { "description": "Indicates whether component source is hidden from view in the console, and from component detail results for API, CLI, or SDK operations." } ] } } }