Values.CsvOptionsSourceRepresents a set of options that define how DataBrew will read a comma-separated value (CSV) file when creating a dataset from that file.
type nonrec t = {delimiter : Delimiter.t option;A single character that specifies the delimiter being used in the CSV file.
*)headerRow : HeaderRow.t option;A variable that specifies whether the first row in the file is parsed as the header. If this value is false, column names are auto-generated.
*)}val to_value :
t ->
[> `Structure of
(string * [> `Boolean of HeaderRow.t | `String of Delimiter.t ]) list ]