Module Values.ServiceQuotaExceededExceptionSource

You exceeded your service quota. Service quotas, also referred to as limits, are the maximum number of service resources or operations for your Amazon Web Services account.

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

    A string that describes the reason the quota was exceeded.

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

    The type of the affected resource

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

    Identifies the service that exceeded the quota.

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

    Identifies the quota that has been exceeded.

    *)
  6. resourceId : String_.t option;
    (*

    The identifier of the affected resource.

    *)
  7. context : ExceptionContext.t option;
    (*

    Information about the resources in use when the exception was thrown.

    *)
}
Sourceval make : ?message:??? -> ?reason:??? -> ?resourceType:??? -> ?serviceCode:??? -> ?quotaCode:??? -> ?resourceId:??? -> ?context:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `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