Module Values.ServiceQuotaExceededExceptionSource

The request would exceed a service quota limit.

Sourcetype nonrec t = {
  1. message : NonBlankString.t option;
    (*

    The request would exceed one or more service quotas for your account.

    *)
  2. resourceId : NonBlankString.t option;
    (*

    The identifier of the resource that exceeded the quota.

    *)
  3. resourceType : NonBlankString.t option;
    (*

    The type of resource that exceeded the quota.

    *)
  4. serviceCode : NonBlankString.t option;
    (*

    The service code for the quota that was exceeded.

    *)
  5. quotaCode : NonBlankString.t option;
    (*

    The code for the specific quota that was exceeded.

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