Classifier Csv Classifier Args
data class ClassifierCsvClassifierArgs(val allowSingleColumn: Output<Boolean>? = null, val containsHeader: Output<String>? = null, val customDatatypeConfigured: Output<Boolean>? = null, val customDatatypes: Output<List<String>>? = null, val delimiter: Output<String>? = null, val disableValueTrimming: Output<Boolean>? = null, val headers: Output<List<String>>? = null, val quoteSymbol: Output<String>? = null) : ConvertibleToJava<ClassifierCsvClassifierArgs>
Constructors
Link copied to clipboard
constructor(allowSingleColumn: Output<Boolean>? = null, containsHeader: Output<String>? = null, customDatatypeConfigured: Output<Boolean>? = null, customDatatypes: Output<List<String>>? = null, delimiter: Output<String>? = null, disableValueTrimming: Output<Boolean>? = null, headers: Output<List<String>>? = null, quoteSymbol: Output<String>? = null)
Properties
Link copied to clipboard
Enables the processing of files that contain only one column.
Link copied to clipboard
Indicates whether the CSV file contains a header. This can be one of "ABSENT", "PRESENT", or "UNKNOWN".
Link copied to clipboard
A custom symbol to denote what combines content into a single column value. It must be different from the column delimiter.
Link copied to clipboard
A list of supported custom datatypes. Valid values are BINARY
, BOOLEAN
, DATE
, DECIMAL
, DOUBLE
, FLOAT
, INT
, LONG
, SHORT
, STRING
, TIMESTAMP
.
Link copied to clipboard
Specifies whether to trim column values.
Link copied to clipboard
A custom symbol to denote what combines content into a single column value. It must be different from the column delimiter.