Module Values.StartRecoveryRequestSource

Launches Recovery Instances for the specified Source Servers. For each Source Server you may choose a point in time snapshot to launch from, or use an on demand snapshot.

Sourcetype nonrec t = {
  1. sourceServers : StartRecoveryRequestSourceServers.t;
    (*

    The Source Servers that we want to start a Recovery Job for.

    *)
  2. isDrill : Boolean.t option;
    (*

    Whether this Source Server Recovery operation is a drill or not.

    *)
  3. tags : TagsMap.t option;
    (*

    The tags to be associated with the Recovery Job.

    *)
}
Sourceval context_ : string
Sourceval make : ?isDrill:??? -> ?tags:??? -> sourceServers:StartRecoveryRequestSourceServers.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Structure of (string * [> `String of SourceServerID.t ]) list ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list ]) 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