Module Values.MalwareScanDetailsSource

Information about the malware scan that generated a GuardDuty finding.

Sourcetype nonrec t = {
  1. threats : Threats.t option;
    (*

    Information about the detected threats associated with the generated GuardDuty finding.

    *)
  2. scanId : String_.t option;
    (*

    The unique identifier for the malware scan.

    *)
  3. scanType : MalwareProtectionScanType.t option;
    (*

    The type of malware scan performed.

    *)
  4. scanCategory : ScanCategory.t option;
    (*

    The category of the malware scan.

    *)
  5. scanConfiguration : MalwareProtectionFindingsScanConfiguration.t option;
    (*

    The configuration settings used for the malware scan.

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

    The number of unique malware threats detected during the scan.

    *)
}
Sourceval make : ?threats:??? -> ?scanId:??? -> ?scanType:??? -> ?scanCategory:??? -> ?scanConfiguration:??? -> ?uniqueThreatCount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.t | `List of [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `String of NonEmptyString.t ]) list ]) list ] list | `Long of Long.t | `String of String_.t ]) list ] list | `String of String_.t | `Structure of (string * [> `Enum of string | `Structure of (string * [> `String of NonEmptyString.t ]) list ]) 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