Module Values.OpenZFSOriginSnapshotConfigurationSource

The snapshot configuration used when creating an Amazon FSx for OpenZFS volume from a snapshot.

Sourcetype nonrec t = {
  1. snapshotARN : ResourceARN.t option;
  2. copyStrategy : OpenZFSCopyStrategy.t option;
    (*

    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. The INCREMENTAL_COPY option is only for updating an existing volume by using a snapshot from another FSx for OpenZFS file system. For more information, see CopySnapshotAndUpdateVolume.

    *)
}
Sourceval make : ?snapshotARN:??? -> ?copyStrategy:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ResourceARN.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t