Module Values.ThrottlingExceptionSource

The request was throttled due to too many requests. Wait a moment and try again.

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

    The code for the Amazon Web Services service that owns the quota.

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

    The quota code recognized by the Amazon Web Services Service Quotas service.

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

    Number of seconds in which the caller can retry the request.

    *)
}
Sourceval make : ?message:??? -> ?serviceCode:??? -> ?quotaCode:??? -> ?retryAfterSeconds:??? -> 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