Module Values.TooManyRequestsExceptionSource

Raised when the number of requests being processed exceeds the limit.

Sourcetype nonrec t = {
  1. detailedMessage : String_.t option;
    (*

    A detailed message describing the problem.

    *)
  2. requestId : String_.t option;
    (*

    The ID of the request that could not be processed for this reason.

    *)
  3. code : String_.t option;
    (*

    The HTTP status code returned with the exception.

    *)
}
Sourceval make : ?detailedMessage:??? -> ?requestId:??? -> ?code:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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