Module Values.ThrottlingExceptionSource

The number of requests made exceeds the limit.

Sourcetype nonrec t = {
  1. message : String_.t option;
  2. quotaCode : String_.t option;
    (*

    The identifier of the throttled request.

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

    The number of seconds to wait before retrying the request.

    *)
  4. serviceCode : String_.t option;
    (*

    The identifier of the service that the throttled request was made to.

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