Module Values.EbsVolumeScanDetailsSource

Contains details from the malware scan that created a finding.

Sourcetype nonrec t = {
  1. scanId : String_.t option;
    (*

    Unique Id of the malware scan that generated the finding.

    *)
  2. scanStartedAt : Timestamp.t option;
    (*

    Returns the start date and time of the malware scan.

    *)
  3. scanCompletedAt : Timestamp.t option;
    (*

    Returns the completion date and time of the malware scan.

    *)
  4. triggerFindingId : String_.t option;
    (*

    GuardDuty finding ID that triggered a malware scan.

    *)
  5. sources : Sources.t option;
    (*

    Contains list of threat intelligence sources used to detect threats.

    *)
  6. scanDetections : ScanDetections.t option;
    (*

    Contains a complete view providing malware scan result details.

    *)
  7. scanType : ScanType.t option;
    (*

    Specifies the scan type that invoked the malware scan.

    *)
}
Sourceval make : ?scanId:??? -> ?scanStartedAt:??? -> ?scanCompletedAt:??? -> ?triggerFindingId:??? -> ?sources:??? -> ?scanDetections:??? -> ?scanType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list | `String of String_.t | `Structure of (string * [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t | `List of [> `Structure of (string * [> `Integer of Integer.t | `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.t ]) list ] list | `String of String_.t ]) list ]) list | `Timestamp of Timestamp.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