Module Values.ThrottlingExceptionSource

The request couldn't be completed due to throttling.

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

    The quota identifier of the applied throttling rules for this request.

    *)
  3. serviceCode : string option;
    (*

    The code for the service that couldn't be completed due to throttling.

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

    The number of seconds to wait before retrying the command.

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