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

Event

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

Describes an identifiable significant activity that affects a replication instance or task. This object can provide the message, the available event categories, the date and source of the event, and the DMS resource type.

interface Event {
Date?: Date | number | null;
EventCategories?: string[] | null;
Message?: string | null;
SourceIdentifier?: string | null;
SourceType?: SourceType | null;
}

§Properties

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

The date of the event.

§
EventCategories?: string[] | null
[src]

The event categories available for the specified source type.

§
Message?: string | null
[src]

The event message.

§
SourceIdentifier?: string | null
[src]

The identifier of an event source.

§
SourceType?: SourceType | null
[src]

The type of DMS resource that generates events.

Valid values: replication-instance | endpoint | replication-task