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

ScheduledInstance

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

Describes a Scheduled Instance.

interface ScheduledInstance {
AvailabilityZone?: string | null;
CreateDate?: Date | number | null;
HourlyPrice?: string | null;
InstanceCount?: number | null;
InstanceType?: string | null;
NetworkPlatform?: string | null;
NextSlotStartTime?: Date | number | null;
Platform?: string | null;
PreviousSlotEndTime?: Date | number | null;
Recurrence?: ScheduledInstanceRecurrence | null;
ScheduledInstanceId?: string | null;
SlotDurationInHours?: number | null;
TermEndDate?: Date | number | null;
TermStartDate?: Date | number | null;
TotalScheduledInstanceHours?: number | null;
}

§Properties

§
AvailabilityZone?: string | null
[src]

The Availability Zone.

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

The date when the Scheduled Instance was purchased.

§
HourlyPrice?: string | null
[src]

The hourly price for a single instance.

§
InstanceCount?: number | null
[src]

The number of instances.

§
InstanceType?: string | null
[src]

The instance type.

§
NetworkPlatform?: string | null
[src]

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

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

The time for the next schedule to start.

§
Platform?: string | null
[src]

The platform (Linux/UNIX or Windows).

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

The time that the previous schedule ended or will end.

§

The schedule recurrence.

§
ScheduledInstanceId?: string | null
[src]

The Scheduled Instance ID.

§
SlotDurationInHours?: number | null
[src]

The number of hours in the schedule.

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

The end date for the Scheduled Instance.

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

The start date for the Scheduled Instance.

§
TotalScheduledInstanceHours?: number | null
[src]

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