Module Values.ErrorStatisticsSource

Information about requests that failed with a 4xx Client Error status code.

Sourcetype nonrec t = {
  1. throttleCount : NullableLong.t option;
    (*

    The number of requests that failed with a 429 throttling status code.

    *)
  2. otherCount : NullableLong.t option;
    (*

    The number of requests that failed with untracked 4xx Client Error status codes.

    *)
  3. totalCount : NullableLong.t option;
    (*

    The total number of requests that failed with a 4xx Client Error status code.

    *)
}
Sourceval make : ?throttleCount:??? -> ?otherCount:??? -> ?totalCount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of NullableLong.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