Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

LaunchTemplateSpecification

import type { LaunchTemplateSpecification } from "https://aws-api.deno.dev/v0.3/services/eks.ts?docs=full";

An object representing a node group launch template specification. The launch template cannot include SubnetId, IamInstanceProfile, RequestSpotInstances, HibernationOptions, or TerminateInstances, or the node group deployment or update will fail. For more information about launch templates, see CreateLaunchTemplate in the Amazon EC2 API Reference. For more information about using launch templates with Amazon EKS, see Launch template support in the Amazon EKS User Guide.

Specify either name or id, but not both.

interface LaunchTemplateSpecification {
id?: string | null;
name?: string | null;
version?: string | null;
}

§Properties

§
id?: string | null
[src]

The ID of the launch template.

§
name?: string | null
[src]

The name of the launch template.

§
version?: string | null
[src]

The version of the launch template to use. If no version is specified, then the template's default version is used.