Module Values.ThrottlingExceptionSource

Your request exceeded a request rate quota. For example, you might have exceeded the amount of times that you can retrieve device or deployment status per second.

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

    The code for the quota in Service Quotas.

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

    The code for the service in Service Quotas.

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

    The amount of time to wait before you retry the request.

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