LaunchTemplateConfiguration

Identifies an Amazon EC2 launch template to use for a specific account.

Amazon Web ServicesAutomationContainer ImagesEC2Image BuildingVirtual Machine Images

Properties

Name Type Description
launchTemplateId object
accountId object
setDefaultVersion object
View JSON Schema on GitHub

JSON Schema

ec2-image-builder-launch-template-configuration-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-launch-template-configuration-schema.json",
  "title": "LaunchTemplateConfiguration",
  "description": "Identifies an Amazon EC2 launch template to use for a specific account.",
  "type": "object",
  "properties": {
    "launchTemplateId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/LaunchTemplateId"
        },
        {
          "description": "Identifies the Amazon EC2 launch template to use."
        }
      ]
    },
    "accountId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AccountId"
        },
        {
          "description": "The account ID that this configuration applies to."
        }
      ]
    },
    "setDefaultVersion": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Boolean"
        },
        {
          "description": "Set the specified Amazon EC2 launch template as the default launch template for the specified account."
        }
      ]
    }
  },
  "required": [
    "launchTemplateId"
  ]
}