Module Values.ThrottlingExceptionSource

The request was denied due to a request throttling.

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

    The code of the quota that was exceeded, causing the throttling exception.

    *)
  3. serviceCode : ErrorServiceCodeString.t option;
    (*

    The code of the service that caused the throttling exception.

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

    The number of seconds after which the action that caused the throttling exception can be retried.

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