Module Values.ServiceQuotaExceededExceptionSource

You've reached the limit of resources you can create, or exceeded the size of an individual resource.

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

    The ID of the resource.

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

    The type of Amazon Web Services resource.

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

    The container for the serviceCode.

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

    The container for the quotaCode.

    *)
}
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