Module Values.ResourceSeverityBreakdownSource

A comprehensive distribution of security findings by severity level for Amazon Web Services resources.

Sourcetype nonrec t = {
  1. other : Integer.t option;
    (*

    The number of findings not in any of the severity categories.

    *)
  2. fatal : Integer.t option;
    (*

    The number of findings with a severity level of fatal.

    *)
  3. critical : Integer.t option;
    (*

    The number of findings with a severity level of critical.

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

    The number of findings with a severity level of high.

    *)
  5. medium : Integer.t option;
    (*

    The number of findings with a severity level of medium.

    *)
  6. low : Integer.t option;
    (*

    The number of findings with a severity level of low.

    *)
  7. informational : Integer.t option;
    (*

    The number of findings that provide security-related information.

    *)
  8. unknown : Integer.t option;
    (*

    The number of findings with a severity level cannot be determined.

    *)
}
Sourceval make : ?other:??? -> ?fatal:??? -> ?critical:??? -> ?high:??? -> ?medium:??? -> ?low:??? -> ?informational:??? -> ?unknown:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.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