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/memorydb.ts?docs=full";

Represents a single occurrence of something interesting within the system. Some examples of events are creating a cluster or adding or removing a node.

interface Event {
Date?: Date | number | null;
Message?: string | null;
SourceName?: string | null;
SourceType?: SourceType | null;
}

§Properties

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

The date and time when the event occurred.

§
Message?: string | null
[src]

The text of the event.

§
SourceName?: string | null
[src]

The name for the source of the event. For example, if the event occurred at the cluster level, the identifier would be the name of the cluster.

§
SourceType?: SourceType | null
[src]

Specifies the origin of this event - a cluster, a parameter group, a security group, etc.