Module Values.InternalServerExceptionSource

An internal server error occurred. Please try again later.

Sourcetype nonrec t = {
  1. message : NonBlankString.t option;
    (*

    The service encountered an internal error. Try again later.

    *)
  2. retryAfterSeconds : Integer.t option;
    (*

    The number of seconds to wait before retrying the request.

    *)
  3. reason : InternalServerExceptionReason.t option;
    (*

    The reason for the internal server error.

    *)
}
Sourceval make : ?message:??? -> ?retryAfterSeconds:??? -> ?reason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.t | `String of NonBlankString.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