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

StartReplayRequest

import type { StartReplayRequest } from "https://aws-api.deno.dev/v0.4/services/cloudwatchevents.ts?docs=full";
interface StartReplayRequest {
Description?: string | null;
Destination: ReplayDestination;
EventEndTime: Date | number;
EventSourceArn: string;
EventStartTime: Date | number;
ReplayName: string;
}

§Properties

§
Description?: string | null
[src]

A description for the replay to start.

§

A ReplayDestination object that includes details about the destination for the replay.

§
EventEndTime: Date | number
[src]

A time stamp for the time to stop replaying events. Only events that occurred between the EventStartTime and EventEndTime are replayed.

§
EventSourceArn: string
[src]

The ARN of the archive to replay events from.

§
EventStartTime: Date | number
[src]

A time stamp for the time to start replaying events. Only events that occurred between the EventStartTime and EventEndTime are replayed.

§
ReplayName: string
[src]

The name of the replay to start.