Module Values.DescribeBotReplicaResponseSource

Monitors the bot replication status through the UI console.

Sourcetype nonrec t = {
  1. botId : Id.t option;
    (*

    The unique bot ID of the replicated bot being monitored.

    *)
  2. replicaRegion : ReplicaRegion.t option;
    (*

    The region of the replicated bot being monitored.

    *)
  3. sourceRegion : ReplicaRegion.t option;
    (*

    The source region of the replicated bot being monitored.

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

    The creation date and time of the replicated bot being monitored.

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

    The operational status of the replicated bot being monitored.

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

    The failure reasons the bot being monitored failed to replicate.

    *)
}
Sourcetype nonrec error = [
  1. | `InternalServerException of InternalServerException.t
  2. | `ResourceNotFoundException of ResourceNotFoundException.t
  3. | `ServiceQuotaExceededException of ServiceQuotaExceededException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?botId:??? -> ?replicaRegion:??? -> ?sourceRegion:??? -> ?creationDateTime:??? -> ?botReplicaStatus:??? -> ?failureReasons:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of FailureReason.t ] list | `String of Id.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