Module Values.ThrottlingExceptionSource

The request or operation couldn't be performed because a service is throttling requests. The most common source of throttling errors is when you create resources that exceed your service limit for this resource type. Request a limit increase or delete unused resources, if possible.

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

    The container for the exception message.

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

    The container for the serviceCode.

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

    The container for the quotaCode.

    *)
  4. retryAfterSeconds : Integer.t option;
    (*

    The container of the retryAfterSeconds value.

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