public static interface CfnAnomalyDetector.CsvFormatDescriptorProperty
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.lookoutmetrics.*; CsvFormatDescriptorProperty csvFormatDescriptorProperty = CsvFormatDescriptorProperty.builder() .charset("charset") .containsHeader(false) .delimiter("delimiter") .fileCompression("fileCompression") .headerList(List.of("headerList")) .quoteSymbol("quoteSymbol") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnAnomalyDetector.CsvFormatDescriptorProperty.Builder
A builder for
CfnAnomalyDetector.CsvFormatDescriptorProperty |
static class |
CfnAnomalyDetector.CsvFormatDescriptorProperty.Jsii$Proxy
An implementation for
CfnAnomalyDetector.CsvFormatDescriptorProperty |
Modifier and Type | Method and Description |
---|---|
static CfnAnomalyDetector.CsvFormatDescriptorProperty.Builder |
builder() |
default java.lang.String |
getCharset()
The character set in which the source CSV file is written.
|
default java.lang.Object |
getContainsHeader()
Whether or not the source CSV file contains a header.
|
default java.lang.String |
getDelimiter()
The character used to delimit the source CSV file.
|
default java.lang.String |
getFileCompression()
The level of compression of the source CSV file.
|
default java.util.List<java.lang.String> |
getHeaderList()
A list of the source CSV file's headers, if any.
|
default java.lang.String |
getQuoteSymbol()
The character used as a quote character.
|
default java.lang.String getCharset()
default java.lang.Object getContainsHeader()
default java.lang.String getDelimiter()
default java.lang.String getFileCompression()
default java.util.List<java.lang.String> getHeaderList()
default java.lang.String getQuoteSymbol()
static CfnAnomalyDetector.CsvFormatDescriptorProperty.Builder builder()