Module Values.CellSource

An occurrence of sensitive data detected in a Microsoft Excel workbook, comma-separated value (CSV) file, or tab-separated value (TSV) file.

Sourcetype nonrec t = {
  1. column : Long.t option;
    (*

    The column number of the column that contains the data. For a Microsoft Excel workbook, the column number corresponds to the alphabetical column identifiers. For example, a value of 1 for Column corresponds to the A column in the workbook.

    *)
  2. row : Long.t option;
    (*

    The row number of the row that contains the data.

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

    The name of the column that contains the data.

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

    For a Microsoft Excel workbook, provides the location of the cell, as an absolute cell reference, that contains the data. For example, Sheet2!C5 for cell C5 on Sheet2.

    *)
}
Sourceval make : ?column:??? -> ?row:??? -> ?columnName:??? -> ?cellReference:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Long.t | `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