Module Values.ResourceFindingsSummarySource

A list of summaries for all finding types on a resource.

Sourcetype nonrec t = {
  1. findingType : NonEmptyString.t option;
    (*

    The category or classification of the security finding.

    *)
  2. productName : NonEmptyString.t option;
    (*

    The name of the product associated with the security finding.

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

    The total count of security findings.

    *)
  4. severities : ResourceSeverityBreakdown.t option;
    (*

    A breakdown of security findings by their severity levels.

    *)
}
Sourceval make : ?findingType:??? -> ?productName:??? -> ?totalFindings:??? -> ?severities:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of NonEmptyString.t | `Structure of (string * [> `Integer of Integer.t ]) list ]) 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