Module Values.RestoreVolumeFromSnapshotRequestSource

Returns an Amazon FSx for OpenZFS volume to the state saved by the specified snapshot.

Sourcetype nonrec t = {
  1. clientRequestToken : ClientRequestToken.t option;
  2. volumeId : VolumeId.t;
    (*

    The ID of the volume that you are restoring.

    *)
  3. snapshotId : SnapshotId.t;
    (*

    The ID of the source snapshot. Specifies the snapshot that you are restoring from.

    *)
  4. options : RestoreOpenZFSVolumeOptions.t option;
    (*

    The settings used when restoring the specified volume from snapshot. DELETE_INTERMEDIATE_SNAPSHOTS - Deletes snapshots between the current state and the specified snapshot. If there are intermediate snapshots and this option isn't used, RestoreVolumeFromSnapshot fails. DELETE_CLONED_VOLUMES - Deletes any dependent clone volumes created from intermediate snapshots. If there are any dependent clone volumes and this option isn't used, RestoreVolumeFromSnapshot fails.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientRequestToken:??? -> ?options:??? -> volumeId:VolumeId.t -> snapshotId:SnapshotId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Enum of string ] list | `String of ClientRequestToken.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