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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAnomalyDetector.FileFormatDescriptorProperty
static final class
An implementation forCfnAnomalyDetector.FileFormatDescriptorProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCsvFormatDescriptor
Contains information about how a source CSV data file should be analyzed.- See Also:
-
getJsonFormatDescriptor
Contains information about how a source JSON data file should be analyzed.- See Also:
-
builder
-