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

SnapshotRecycleBinInfo

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

Information about a snapshot that is currently in the Recycle Bin.

interface SnapshotRecycleBinInfo {
Description?: string | null;
RecycleBinEnterTime?: Date | number | null;
RecycleBinExitTime?: Date | number | null;
SnapshotId?: string | null;
VolumeId?: string | null;
}

§Properties

§
Description?: string | null
[src]

The description for the snapshot.

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

The date and time when the snaphsot entered the Recycle Bin.

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

The date and time when the snapshot is to be permanently deleted from the Recycle Bin.

§
SnapshotId?: string | null
[src]

The ID of the snapshot.

§
VolumeId?: string | null
[src]

The ID of the volume from which the snapshot was created.