Module Values.ServiceQuotaExceededExceptionSource

Request denied because service quota has been exceeded.

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

    The name of the quota.

    *)
  3. quotaValue : Double.t option;
    (*

    The value of the quota.

    *)
}
Sourceval make : ?message:??? -> ?quotaName:??? -> ?quotaValue:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.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