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

SnapshotInfo

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

Information about a snapshot.

interface SnapshotInfo {
Description?: string | null;
Encrypted?: boolean | null;
OutpostArn?: string | null;
OwnerId?: string | null;
Progress?: string | null;
SnapshotId?: string | null;
StartTime?: Date | number | null;
State?: SnapshotState | null;
Tags: Tag[];
VolumeId?: string | null;
VolumeSize?: number | null;
}

§Properties

§
Description?: string | null
[src]

Description specified by the CreateSnapshotRequest that has been applied to all snapshots.

§
Encrypted?: boolean | null
[src]

Indicates whether the snapshot is encrypted.

§
OutpostArn?: string | null
[src]

The ARN of the Outpost on which the snapshot is stored. For more information, see Amazon EBS local snapshots on Outposts in the Amazon Elastic Compute Cloud User Guide.

§
OwnerId?: string | null
[src]

Account id used when creating this snapshot.

§
Progress?: string | null
[src]

Progress this snapshot has made towards completing.

§
SnapshotId?: string | null
[src]

Snapshot id that can be used to describe this snapshot.

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

Time this snapshot was started. This is the same for all snapshots initiated by the same request.

§
State?: SnapshotState | null
[src]

Current state of the snapshot.

§
Tags: Tag[]
[src]

Tags associated with this snapshot.

§
VolumeId?: string | null
[src]

Source volume from which this snapshot was created.

§
VolumeSize?: number | null
[src]

Size of the volume from which this snapshot was created.