ComponentParameter

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

Amazon Web ServicesAutomationContainer ImagesEC2Image BuildingVirtual Machine Images

Properties

Name Type Description
name object
value object
View JSON Schema on GitHub

JSON Schema

ec2-image-builder-component-parameter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-ec2-image-builder/refs/heads/main/json-schema/ec2-image-builder-component-parameter-schema.json",
  "title": "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"
  ]
}