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

LaunchTemplateSpotMarketOptionsRequest

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

The options for Spot Instances.

interface LaunchTemplateSpotMarketOptionsRequest {
BlockDurationMinutes?: number | null;
InstanceInterruptionBehavior?: InstanceInterruptionBehavior | null;
MaxPrice?: string | null;
SpotInstanceType?: SpotInstanceType | null;
ValidUntil?: Date | number | null;
}

§Properties

§
BlockDurationMinutes?: number | null
[src]

The required duration for the Spot Instances (also known as Spot blocks), in minutes. This value must be a multiple of 60 (60, 120, 180, 240, 300, or 360).

§
InstanceInterruptionBehavior?: InstanceInterruptionBehavior | null
[src]

The behavior when a Spot Instance is interrupted. The default is terminate.

§
MaxPrice?: string | null
[src]

The maximum hourly price you're willing to pay for the Spot Instances.

§
SpotInstanceType?: SpotInstanceType | null
[src]

The Spot Instance request type.

§
ValidUntil?: Date | number | null
[src]

The end date of the request. For a one-time request, the request remains active until all instances launch, the request is canceled, or this date is reached. If the request is persistent, it remains active until it is canceled or this date and time is reached. The default end date is 7 days from the current date.