Module Values.CSVInputSource

Contains information about the comma-separated value (CSV) file to select from.

Sourcetype nonrec t = {
  1. fileHeaderInfo : FileHeaderInfo.t option;
    (*

    Describes the first line of input. Valid values are None, Ignore, and Use.

    *)
  2. comments : String_.t option;
    (*

    A single character used to indicate that a row should be ignored when the character is present at the start of that row.

    *)
  3. quoteEscapeCharacter : String_.t option;
    (*

    A single character used for escaping the quotation-mark character inside an already escaped value.

    *)
  4. recordDelimiter : String_.t option;
    (*

    A value used to separate individual records from each other.

    *)
  5. fieldDelimiter : String_.t option;
    (*

    A value used to separate individual fields from each other within a record.

    *)
  6. quoteCharacter : String_.t option;
    (*

    A value used as an escape character where the field delimiter is part of the value.

    *)
}
Sourceval make : ?fileHeaderInfo:??? -> ?comments:??? -> ?quoteEscapeCharacter:??? -> ?recordDelimiter:??? -> ?fieldDelimiter:??? -> ?quoteCharacter:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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