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

Snapshot

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

Represents a copy of an entire cluster as of the time when the snapshot was taken.

interface Snapshot {
ARN?: string | null;
ClusterConfiguration?: ClusterConfiguration | null;
KmsKeyId?: string | null;
Name?: string | null;
Source?: string | null;
Status?: string | null;
}

§Properties

§
ARN?: string | null
[src]

The ARN (Amazon Resource Name) of the snapshot.

§
ClusterConfiguration?: ClusterConfiguration | null
[src]

The configuration of the cluster from which the snapshot was taken

§
KmsKeyId?: string | null
[src]

The ID of the KMS key used to encrypt the snapshot.

§
Name?: string | null
[src]

The name of the snapshot

§
Source?: string | null
[src]

Indicates whether the snapshot is from an automatic backup (automated) or was created manually (manual).

§
Status?: string | null
[src]

The status of the snapshot. Valid values: creating | available | restoring | copying | deleting.