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

InstanceEventWindowTimeRange

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

The start day and time and the end day and time of the time range, in UTC.

interface InstanceEventWindowTimeRange {
EndHour?: number | null;
EndWeekDay?: WeekDay | null;
StartHour?: number | null;
StartWeekDay?: WeekDay | null;
}

§Properties

§
EndHour?: number | null
[src]

The hour when the time range ends.

§
EndWeekDay?: WeekDay | null
[src]

The day on which the time range ends.

§
StartHour?: number | null
[src]

The hour when the time range begins.

§
StartWeekDay?: WeekDay | null
[src]

The day on which the time range begins.