Amazon EC2 Image Builder · JSON Structure

Ec2 Image Builder Component Parameter Structure

Contains a key/value pair that sets the named component parameter.

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

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

Properties

name value

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-parameter-structure.json",
  "name": "ComponentParameter",
  "description": "Contains a key/value pair that sets the named component parameter.",
  "type": "object",
  "properties": {
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ComponentParameterName"
        },
        {
          "description": "The name of the component parameter to set."
        }
      ]
    },
    "value": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ComponentParameterValueList"
        },
        {
          "description": "Sets the value for the named component parameter."
        }
      ]
    }
  },
  "required": [
    "name",
    "value"
  ]
}