Module Values.ServiceQuotaExceededExceptionSource

Request would cause a service quota to be exceeded.

Sourcetype nonrec t = {
  1. message : ErrorMessage.t option;
  2. resourceId : ResourceId.t option;
    (*

    The ID of the resource that exceeds the service quota.

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

    The type of the resource that exceeds the service quota.

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

    The code for the service quota exceeded in Service Quotas.

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

    The code for the service quota in Service Quotas.

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