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

ScheduledInstanceAvailability

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

Describes a schedule that is available for your Scheduled Instances.

interface ScheduledInstanceAvailability {
AvailabilityZone?: string | null;
AvailableInstanceCount?: number | null;
FirstSlotStartTime?: Date | number | null;
HourlyPrice?: string | null;
InstanceType?: string | null;
MaxTermDurationInDays?: number | null;
MinTermDurationInDays?: number | null;
NetworkPlatform?: string | null;
Platform?: string | null;
PurchaseToken?: string | null;
Recurrence?: ScheduledInstanceRecurrence | null;
SlotDurationInHours?: number | null;
TotalScheduledInstanceHours?: number | null;
}

§Properties

§
AvailabilityZone?: string | null
[src]

The Availability Zone.

§
AvailableInstanceCount?: number | null
[src]

The number of available instances.

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

The time period for the first schedule to start.

§
HourlyPrice?: string | null
[src]

The hourly price for a single instance.

§
InstanceType?: string | null
[src]

The instance type. You can specify one of the C3, C4, M4, or R3 instance types.

§
MaxTermDurationInDays?: number | null
[src]

The maximum term. The only possible value is 365 days.

§
MinTermDurationInDays?: number | null
[src]

The minimum term. The only possible value is 365 days.

§
NetworkPlatform?: string | null
[src]

The network platform (EC2-Classic or EC2-VPC).

§
Platform?: string | null
[src]

The platform (Linux/UNIX or Windows).

§
PurchaseToken?: string | null
[src]

The purchase token. This token expires in two hours.

§

The schedule recurrence.

§
SlotDurationInHours?: number | null
[src]

The number of hours in the schedule.

§
TotalScheduledInstanceHours?: number | null
[src]

The total number of hours for a single instance for the entire term.