Module Values.InputFormatOptionsSource

The format options for the data that was imported into the target table. There is one value, CsvOption.

Sourcetype nonrec t = {
  1. csv : CsvOptions.t option;
    (*

    The options for imported source files in CSV format. The values are Delimiter and HeaderList.

    *)
}
Sourceval make : ?csv:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `List of [> `String of CsvHeader.t ] list | `String of CsvDelimiter.t ]) list ]) 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