Module Values.CsvOptionsSource

Represents a set of options that define how DataBrew will read a comma-separated value (CSV) file when creating a dataset from that file.

Sourcetype nonrec t = {
  1. delimiter : Delimiter.t option;
    (*

    A single character that specifies the delimiter being used in the CSV file.

    *)
  2. 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.

    *)
}
Sourceval make : ?delimiter:??? -> ?headerRow:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of HeaderRow.t | `String of Delimiter.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