Module Values.CsvConfigurationSource

A delimited data format where the column separator can be a comma and the record separator is a newline character.

Sourcetype nonrec t = {
  1. columnSeparator : StringValue1.t option;
    (*

    Column separator can be one of comma (','), pipe ('|), semicolon (';'), tab('/t'), or blank space (' ').

    *)
  2. escapeChar : StringValue1.t option;
    (*

    Escape character can be one of

    *)
  3. quoteChar : StringValue1.t option;
    (*

    Can be single quote (') or double quote (").

    *)
  4. nullValue : StringValue256.t option;
    (*

    Can be blank space (' ').

    *)
  5. trimWhiteSpace : Boolean.t option;
    (*

    Specifies to trim leading and trailing white space.

    *)
}
Sourceval make : ?columnSeparator:??? -> ?escapeChar:??? -> ?quoteChar:??? -> ?nullValue:??? -> ?trimWhiteSpace:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of StringValue1.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