Module Values.ThreatIntelligenceDetailSource

An instance of a threat intelligence detail that constitutes evidence for the finding.

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

    The name of the threat intelligence list that triggered the finding.

    *)
  2. threatNames : ThreatNames.t option;
    (*

    A list of names of the threats in the threat intelligence list that triggered the finding.

    *)
  3. threatFileSha256 : String_.t option;
    (*

    SHA256 of the file that generated the finding.

    *)
}
Sourceval make : ?threatListName:??? -> ?threatNames:??? -> ?threatFileSha256:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] list | `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