Module Values.BotAliasReplicaSummarySource

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

Sourcetype nonrec t = {
  1. botAliasId : BotAliasId.t option;
    (*

    The bot alias ID for all the alias bot replications.

    *)
  2. botAliasReplicationStatus : BotAliasReplicationStatus.t option;
    (*

    The replication statuses for all the alias bot replications.

    *)
  3. botVersion : BotVersion.t option;
    (*

    The bot version for all the alias bot replications.

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

    The creation time and date for all the alias bot replications.

    *)
  5. lastUpdatedDateTime : Timestamp.t option;
    (*

    The last time and date updated for all the alias bot replications.

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

    The reasons for failure for the aliases bot replications.

    *)
}
Sourceval make : ?botAliasId:??? -> ?botAliasReplicationStatus:??? -> ?botVersion:??? -> ?creationDateTime:??? -> ?lastUpdatedDateTime:??? -> ?failureReasons:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of FailureReason.t ] list | `String of BotAliasId.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