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

InstanceStatusEvent

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

Describes a scheduled event for an instance.

interface InstanceStatusEvent {
Code?: EventCode | null;
Description?: string | null;
InstanceEventId?: string | null;
NotAfter?: Date | number | null;
NotBefore?: Date | number | null;
NotBeforeDeadline?: Date | number | null;
}

§Properties

§
Code?: EventCode | null
[src]

The event code.

§
Description?: string | null
[src]

A description of the event.

After a scheduled event is completed, it can still be described for up to a week. If the event has been completed, this description starts with the following text: [Completed].

§
InstanceEventId?: string | null
[src]

The ID of the event.

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

The latest scheduled end time for the event.

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

The earliest scheduled start time for the event.

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

The deadline for starting the event.