Module Values.FilePathsSource

Provides information about the file paths that were affected by the threat.

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

    Path to the infected or suspicious file on the resource it was detected on. Length Constraints: Minimum of 1 length. Maximum of 128 length.

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

    The name of the infected or suspicious file corresponding to the hash. Length Constraints: Minimum of 1 length. Maximum of 128 length.

    *)
  3. resourceId : NonEmptyString.t option;
    (*

    The Amazon Resource Name (ARN) of the resource on which the threat was detected. Length Constraints: Minimum of 1 length. Maximum of 128 length.

    *)
  4. hash : NonEmptyString.t option;
    (*

    The hash value for the infected or suspicious file. Length Constraints: Minimum of 1 length. Maximum of 128 length.

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