Module Values.ThrottlingExceptionSource

Your request exceeded a request rate quota.

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

    Identifies the service that is being throttled.

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

    Identifies the quota that is being throttled.

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

    The number of seconds a client should wait before retrying the request.

    *)
  5. context : ExceptionContext.t option;
    (*

    Information about the resources in use when the exception was thrown.

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