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

FleetLaunchTemplateSpecificationRequest

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

Describes the Amazon EC2 launch template and the launch template version that can be used by an EC2 Fleet to configure Amazon EC2 instances. For information about launch templates, see Launching an instance from a launch template in the Amazon EC2 User Guide.

interface FleetLaunchTemplateSpecificationRequest {
LaunchTemplateId?: string | null;
LaunchTemplateName?: string | null;
Version?: string | null;
}

§Properties

§
LaunchTemplateId?: string | null
[src]

The ID of the launch template. If you specify the template ID, you can't specify the template name.

§
LaunchTemplateName?: string | null
[src]

The name of the launch template. If you specify the template name, you can't specify the template ID.

§
Version?: string | null
[src]

The launch template version number, $Latest, or $Default. You must specify a value, otherwise the request fails.

If the value is $Latest, Amazon EC2 uses the latest version of the launch template.

If the value is $Default, Amazon EC2 uses the default version of the launch template.