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();
 

See Also: