Module Values.AggregatedScanResultSource

Contains aggregated scan results across multiple scan operations, providing a summary of scan status and findings.

Sourcetype nonrec t = {
  1. failedScan : Boolean.t option;
    (*

    A Boolean value indicating whether any of the aggregated scans failed.

    *)
  2. findings : ScanFindings.t option;
    (*

    An array of findings discovered across all aggregated scans.

    *)
  3. lastComputed : string option;
    (*

    The timestamp when the aggregated scan result was last computed, in Unix format and Coordinated Universal Time (UTC).

    *)
}
Sourceval make : ?failedScan:??? -> ?findings:??? -> ?lastComputed:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Enum of string ] list | `Timestamp of string ]) 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