public static interface CfnAnomalyDetector.FileFormatDescriptorProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnAnomalyDetector.FileFormatDescriptorProperty.Builder
A builder for
CfnAnomalyDetector.FileFormatDescriptorProperty |
static class |
CfnAnomalyDetector.FileFormatDescriptorProperty.Jsii$Proxy
An implementation for
CfnAnomalyDetector.FileFormatDescriptorProperty |
Modifier and Type | Method and Description |
---|---|
static CfnAnomalyDetector.FileFormatDescriptorProperty.Builder |
builder() |
default java.lang.Object |
getCsvFormatDescriptor()
Contains information about how a source CSV data file should be analyzed.
|
default java.lang.Object |
getJsonFormatDescriptor()
Contains information about how a source JSON data file should be analyzed.
|
default java.lang.Object getCsvFormatDescriptor()
default java.lang.Object getJsonFormatDescriptor()
static CfnAnomalyDetector.FileFormatDescriptorProperty.Builder builder()