Module Values.ServiceQuotaExceededExceptionSource

You have exceeded your service quota.

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

    The name of the service quota limit that was exceeded

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

    The current limit on the service quota that was exceeded

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