Module Values.ServiceQuotaExceededExceptionSource

The service quota has been exceeded for this resource.

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

    The container for the exception message.

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

    The resourceId of the resource that caused the exception.

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

    The resourceType of the resource that caused the exception.

    *)
  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 * [> `Enum of string | `String of ExceptionMessage.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