Module Values.SeverityCountsSource

Includes counts by severity level for medium severity and higher level findings, plus a total for all of the findings for the specified filter.

Sourcetype nonrec t = {
  1. all : SeverityCountNumber.t option;
    (*

    The total number of findings across all severity levels for the specified filter.

    *)
  2. critical : SeverityCountNumber.t option;
    (*

    The number of critical severity findings for the specified filter.

    *)
  3. high : SeverityCountNumber.t option;
    (*

    The number of high severity findings for the specified filter.

    *)
  4. medium : SeverityCountNumber.t option;
    (*

    The number of medium severity findings for the specified filter.

    *)
}
Sourceval make : ?all:??? -> ?critical:??? -> ?high:??? -> ?medium:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of SeverityCountNumber.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