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

LaunchTemplateOverrides

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

Describes overrides for a launch template.

interface LaunchTemplateOverrides {
AvailabilityZone?: string | null;
InstanceRequirements?: InstanceRequirements | null;
InstanceType?: InstanceType | null;
Priority?: number | null;
SpotPrice?: string | null;
SubnetId?: string | null;
WeightedCapacity?: number | null;
}

§Properties

§
AvailabilityZone?: string | null
[src]

The Availability Zone in which to launch the instances.

§
InstanceRequirements?: InstanceRequirements | null
[src]

The instance requirements. When you specify instance requirements, Amazon EC2 will identify instance types with the provided requirements, and then use your On-Demand and Spot allocation strategies to launch instances from these instance types, in the same way as when you specify a list of instance types.

Note: If you specify InstanceRequirements, you can't specify InstanceTypes.

§
InstanceType?: InstanceType | null
[src]

The instance type.

§
Priority?: number | null
[src]

The priority for the launch template override. The highest priority is launched first.

If OnDemandAllocationStrategy is set to prioritized, Spot Fleet uses priority to determine which launch template override to use first in fulfilling On-Demand capacity.

If the Spot AllocationStrategy is set to capacityOptimizedPrioritized, Spot Fleet uses priority on a best-effort basis to determine which launch template override to use in fulfilling Spot capacity, but optimizes for capacity first.

Valid values are whole numbers starting at 0. The lower the number, the higher the priority. If no number is set, the launch template override has the lowest priority. You can set the same priority for different launch template overrides.

§
SpotPrice?: string | null
[src]

The maximum price per unit hour that you are willing to pay for a Spot Instance.

§
SubnetId?: string | null
[src]

The ID of the subnet in which to launch the instances.

§
WeightedCapacity?: number | null
[src]

The number of units provided by the specified instance type.