Amazon EC2 Image Builder · JSON Structure

Ec2 Image Builder Component Configuration Structure

Configuration details of the component.

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

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

Properties

componentArn parameters

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-component-configuration-structure.json",
  "name": "ComponentConfiguration",
  "description": "Configuration details of the component.",
  "type": "object",
  "properties": {
    "componentArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ComponentVersionArnOrBuildVersionArn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the component."
        }
      ]
    },
    "parameters": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ComponentParameterList"
        },
        {
          "description": "A group of parameter settings that Image Builder uses to configure the component for a specific recipe."
        }
      ]
    }
  },
  "required": [
    "componentArn"
  ]
}