Module Values.ThrottlingExceptionSource

Your request rate is too high. Reduce the frequency of requests.

Sourcetype nonrec t = {
  1. retryAfterSeconds : RetryAfterSeconds.t option;
    (*

    The number of seconds after which the user can invoke the API again.

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