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

Replay

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

A Replay object that contains details about a replay.

interface Replay {
EventEndTime?: Date | number | null;
EventLastReplayedTime?: Date | number | null;
EventSourceArn?: string | null;
EventStartTime?: Date | number | null;
ReplayEndTime?: Date | number | null;
ReplayName?: string | null;
ReplayStartTime?: Date | number | null;
State?: ReplayState | null;
StateReason?: string | null;
}

§Properties

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

A time stamp for the time to start replaying events. Any event with a creation time prior to the EventEndTime specified is replayed.

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

A time stamp for the time that the last event was replayed.

§
EventSourceArn?: string | null
[src]

The ARN of the archive to replay event from.

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

A time stamp for the time to start replaying events. This is determined by the time in the event as described in Time.

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

A time stamp for the time that the replay completed.

§
ReplayName?: string | null
[src]

The name of the replay.

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

A time stamp for the time that the replay started.

§
State?: ReplayState | null
[src]

The current state of the replay.

§
StateReason?: string | null
[src]

A description of why the replay is in the current state.