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

EventDetails

import type { EventDetails } from "https://aws-api.deno.dev/v0.4/services/health.ts?docs=full";

Detailed information about an event. A combination of an Event object, an EventDescription object, and additional metadata about the event. Returned by the DescribeEventDetails operation.

interface EventDetails {
event?: Event | null;
eventDescription?: EventDescription | null;
eventMetadata?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
event?: Event | null
[src]

Summary information about the event.

§
eventDescription?: EventDescription | null
[src]

The most recent description of the event.

§
eventMetadata?: {
[key: string]: string | null | undefined;
}
| null
[src]

Additional metadata about the event.