Interface CfnAnomalyDetector.FileFormatDescriptorProperty

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

@Stability(Stable) public static interface CfnAnomalyDetector.FileFormatDescriptorProperty extends software.amazon.jsii.JsiiSerializable
Contains information about a source file's formatting.

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.*;
 FileFormatDescriptorProperty fileFormatDescriptorProperty = FileFormatDescriptorProperty.builder()
         .csvFormatDescriptor(CsvFormatDescriptorProperty.builder()
                 .charset("charset")
                 .containsHeader(false)
                 .delimiter("delimiter")
                 .fileCompression("fileCompression")
                 .headerList(List.of("headerList"))
                 .quoteSymbol("quoteSymbol")
                 .build())
         .jsonFormatDescriptor(JsonFormatDescriptorProperty.builder()
                 .charset("charset")
                 .fileCompression("fileCompression")
                 .build())
         .build();