Module Values.FailoverConfigSource

The failover configuration for an endpoint. This includes what triggers failover and what happens when it's triggered.

Sourcetype nonrec t = {
  1. primary : Primary.t;
    (*

    The main Region of the endpoint.

    *)
  2. secondary : Secondary.t;
    (*

    The Region that events are routed to when failover is triggered or event replication is enabled.

    *)
}
Sourceval context_ : string
Sourceval make : primary:Primary.t -> secondary:Secondary.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `String of HealthCheck.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