Module Values.ThreatSource

Information about the detected threats associated with the generated finding.

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

    Name of the detected threat that caused GuardDuty to generate this finding.

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

    Source of the threat that generated this finding.

    *)
  3. itemPaths : ItemPaths.t option;
    (*

    Information about the nested item path and hash of the protected resource.

    *)
  4. count : Long.t option;
    (*

    The number of occurrences of this specific threat detected during the scan.

    *)
  5. hash : String_.t option;
    (*

    The hash identifier of the detected malware threat.

    *)
  6. itemDetails : ItemDetailsList.t option;
    (*

    Detailed information about the detected malware threat.

    *)
}
Sourceval make : ?name:??? -> ?source:??? -> ?itemPaths:??? -> ?count:??? -> ?hash:??? -> ?itemDetails:??? -> unit -> t
Sourceval to_value : t -> [> `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 ]
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