Interface CfnAnomalyDetectorPropsMixin.CsvFormatDescriptorProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAnomalyDetectorPropsMixin.CsvFormatDescriptorProperty.Jsii$Proxy
Enclosing class:
CfnAnomalyDetectorPropsMixin

@Stability(Stable) public static interface CfnAnomalyDetectorPropsMixin.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.cfnpropertymixins.services.lookoutmetrics.*;
 CsvFormatDescriptorProperty csvFormatDescriptorProperty = CsvFormatDescriptorProperty.builder()
         .charset("charset")
         .containsHeader(false)
         .delimiter("delimiter")
         .fileCompression("fileCompression")
         .headerList(List.of("headerList"))
         .quoteSymbol("quoteSymbol")
         .build();
 

See Also: