Module Values.ThrottlingExceptionSource

Reached throttling quota exception.

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

    Reached throttling quota exception service code.

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

    Reached throttling quota exception.

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

    Reached throttling quota exception will retry after x seconds.

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