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

RecoverySnapshot

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

A snapshot of a Source Server used during recovery.

interface RecoverySnapshot {
ebsSnapshots?: string[] | null;
expectedTimestamp: string;
snapshotID: string;
sourceServerID: string;
timestamp?: string | null;
}

§Properties

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

A list of EBS snapshots.

§
expectedTimestamp: string
[src]

The timestamp of when we expect the snapshot to be taken.

§
snapshotID: string
[src]

The ID of the Recovery Snapshot.

§
sourceServerID: string
[src]

The ID of the Source Server that the snapshot was taken for.

§
timestamp?: string | null
[src]

The actual timestamp that the snapshot was taken.