Module Values.ThrottlingReasonSource

Provides information about a specific throttling reason.

Sourcetype nonrec t = {
  1. reason : CoralAvailabilityThrottlingReason.t option;
    (*

    The reason code explaining why the request was throttled.

    *)
  2. resource : CoralAvailabilityThrottledResource.t option;
    (*

    The resource that caused the throttling.

    *)
}
Sourceval make : ?reason:??? -> ?resource:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of CoralAvailabilityThrottlingReason.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