Module Values.ItemDetailsSource

Contains detailed information about where a threat was detected.

Sourcetype nonrec t = {
  1. resourceArn : NonEmptyString.t option;
    (*

    Amazon Resource Name (ARN) of the resource where the threat was detected.

    *)
  2. itemPath : NonEmptyString.t option;
    (*

    The path where the threat was detected.

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

    The hash value of the infected item.

    *)
  4. additionalInfo : AdditionalInfo.t option;
    (*

    Additional information about the detected threat item.

    *)
}
Sourceval make : ?resourceArn:??? -> ?itemPath:??? -> ?hash:??? -> ?additionalInfo:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.t | `Structure of (string * [> `String of NonEmptyString.t ]) 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