AnomalyDetectorCsvFormatDescriptor

data class AnomalyDetectorCsvFormatDescriptor(val charset: String? = null, val containsHeader: Boolean? = null, val delimiter: String? = null, val fileCompression: AnomalyDetectorCsvFormatDescriptorFileCompression? = null, val headerList: List<String>? = null, val quoteSymbol: String? = null)

Constructors

Link copied to clipboard
constructor(charset: String? = null, containsHeader: Boolean? = null, delimiter: String? = null, fileCompression: AnomalyDetectorCsvFormatDescriptorFileCompression? = null, headerList: List<String>? = null, quoteSymbol: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val charset: String? = null

The character set in which the source CSV file is written.

Link copied to clipboard
val containsHeader: Boolean? = null

Whether or not the source CSV file contains a header.

Link copied to clipboard
val delimiter: String? = null

The character used to delimit the source CSV file.

Link copied to clipboard

The level of compression of the source CSV file.

Link copied to clipboard
val headerList: List<String>? = null

A list of the source CSV file's headers, if any.

Link copied to clipboard
val quoteSymbol: String? = null

The character used as a quote character.