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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAnomalyDetector.FileFormatDescriptorPropertystatic final classAn 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.Returns union: either
IResolvableorCfnAnomalyDetector.CsvFormatDescriptorProperty- See Also:
-
getJsonFormatDescriptor
Contains information about how a source JSON data file should be analyzed.Returns union: either
IResolvableorCfnAnomalyDetector.JsonFormatDescriptorProperty- See Also:
-
builder
-