Module Values.RangeSource

Specifies the location of an occurrence of sensitive data in an email message or a non-binary text file such as an HTML, TXT, or XML file.

Sourcetype nonrec t = {
  1. end_ : Awso.Import.Int64.t option;
    (*

    The number of lines from the beginning of the file to the end of the sensitive data.

    *)
  2. start : Awso.Import.Int64.t option;
    (*

    The number of lines from the beginning of the file to the beginning of the sensitive data.

    *)
  3. startColumn : Awso.Import.Int64.t option;
    (*

    The number of characters, with spaces and starting from 1, from the beginning of the first line that contains the sensitive data (start) to the beginning of the sensitive data.

    *)
}
Sourceval make : ?end_:??? -> ?start:??? -> ?startColumn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Awso.Import.Int64.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