Module Values.ThrottlingExceptionSource

The request was denied due to request throttling.

Sourcetype nonrec t = {
  1. message : LargeBoundedString.t option;
  2. serviceCode : LargeBoundedString.t option;
    (*

    Service code.

    *)
  3. quotaCode : LargeBoundedString.t option;
    (*

    Quota code.

    *)
  4. retryAfterSeconds : LargeBoundedString.t option;
    (*

    The number of seconds after which the request should be safe to retry.

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