Module Values.ScanResultSource

Contains the results of a security scan, including scanner information, scan state, and any findings discovered.

Sourcetype nonrec t = {
  1. malwareScanner : MalwareScanner.t option;
    (*

    The malware scanner used to perform the scan. Currently only GUARDDUTY is supported.

    *)
  2. scanJobState : ScanJobState.t option;
    (*

    The final state of the scan job. Valid values: COMPLETED | FAILED | CANCELED.

    *)
  3. lastScanTimestamp : string option;
    (*

    The timestamp of when the last scan was performed, in Unix format and Coordinated Universal Time (UTC).

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

    An array of findings discovered during the scan.

    *)
}
Sourceval make : ?malwareScanner:??? -> ?scanJobState:??? -> ?lastScanTimestamp:??? -> ?findings:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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