Module Values.BotReplicaSummarySource

Contains summary information about all the replication statuses applicable for global resiliency.

Sourcetype nonrec t = {
  1. replicaRegion : ReplicaRegion.t option;
    (*

    The replica region used in the replication statuses summary.

    *)
  2. creationDateTime : Timestamp.t option;
    (*

    The creation time and date for the replicated bots.

    *)
  3. botReplicaStatus : BotReplicaStatus.t option;
    (*

    The operation status for the replicated bot applicable.

    *)
  4. failureReasons : FailureReasons.t option;
    (*

    The reasons for the failure for the replicated bot.

    *)
}
Sourceval make : ?replicaRegion:??? -> ?creationDateTime:??? -> ?botReplicaStatus:??? -> ?failureReasons:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of FailureReason.t ] list | `String of ReplicaRegion.t | `Timestamp of Timestamp.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