Interface CfnAnomalyDetector.CsvFormatDescriptorProperty
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnAnomalyDetector.CsvFormatDescriptorProperty.Jsii$Proxy
- Enclosing class:
- CfnAnomalyDetector
@Stability(Stable)
public static interface CfnAnomalyDetector.CsvFormatDescriptorProperty
extends software.amazon.jsii.JsiiSerializable
Contains information about how a source CSV data file should be analyzed.
 
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();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAnomalyDetector.CsvFormatDescriptorPropertystatic final classAn implementation forCfnAnomalyDetector.CsvFormatDescriptorProperty
- 
Method SummaryModifier and TypeMethodDescriptionbuilder()default StringThe character set in which the source CSV file is written.default ObjectWhether or not the source CSV file contains a header.default StringThe character used to delimit the source CSV file.default StringThe level of compression of the source CSV file.A list of the source CSV file's headers, if any.default StringThe character used as a quote character.Methods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getCharsetThe character set in which the source CSV file is written.
- 
getContainsHeaderWhether or not the source CSV file contains a header.
- 
getDelimiterThe character used to delimit the source CSV file.
- 
getFileCompressionThe level of compression of the source CSV file.
- 
getHeaderListA list of the source CSV file's headers, if any.
- 
getQuoteSymbolThe character used as a quote character.
- 
builder
 
-