Values_2.UpdateCsvClassifierRequestSourceSpecifies a custom CSV classifier to be updated.
type nonrec t = {name : Values_0.NameString.t;The name of the classifier.
*)delimiter : Values_1.CsvColumnDelimiter.t option;A custom symbol to denote what separates each column entry in the row.
*)quoteSymbol : Values_1.CsvQuoteSymbol.t option;A custom symbol to denote what combines content into a single column value. It must be different from the column delimiter.
*)containsHeader : Values_1.CsvHeaderOption.t option;Indicates whether the CSV file contains a header.
*)header : Values_1.CsvHeader.t option;A list of strings representing column names.
*)disableValueTrimming : Values_0.NullableBoolean.t option;Specifies not to trim values before identifying the type of column values. The default value is true.
*)allowSingleColumn : Values_0.NullableBoolean.t option;Enables the processing of files that contain only one column.
*)customDatatypeConfigured : Values_0.NullableBoolean.t option;Specifies the configuration of custom datatypes.
*)customDatatypes : Values_1.CustomDatatypes.t option;Specifies a list of supported custom datatypes.
*)serde : Values_1.CsvSerdeOption.t option;Sets the SerDe for processing CSV in the classifier, which will be applied in the Data Catalog. Valid values are OpenCSVSerDe, LazySimpleSerDe, and None. You can specify the None value when you want the crawler to do the detection.
*)}val make :
?delimiter:??? ->
?quoteSymbol:??? ->
?containsHeader:??? ->
?header:??? ->
?disableValueTrimming:??? ->
?allowSingleColumn:??? ->
?customDatatypeConfigured:??? ->
?customDatatypes:??? ->
?serde:??? ->
name:Values_0.NameString.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Values_0.NullableBoolean.t
| `Enum of string
| `List of [> `String of Values_0.NameString.t ] list
| `String of Values_0.NameString.t ])
list ]