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

OpenZFSOriginSnapshotConfiguration

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

The snapshot configuration to use when creating an OpenZFS volume from a snapshot.

interface OpenZFSOriginSnapshotConfiguration {
CopyStrategy?: OpenZFSCopyStrategy | null;
SnapshotARN?: string | null;
}

§Properties

§
CopyStrategy?: OpenZFSCopyStrategy | null
[src]

The strategy used when copying data from the snapshot to the new volume.

  • CLONE - The new volume references the data in the origin snapshot. Cloning a snapshot is faster than copying the data from a snapshot to a new volume and doesn't consume disk throughput. However, the origin snapshot can't be deleted if there is a volume using its copied data.
  • FULL_COPY - Copies all data from the snapshot to the new volume.
§
SnapshotARN?: string | null
[src]