Interface CfnAnomalyDetectorPropsMixin.FileFormatDescriptorProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnomalyDetectorPropsMixin.FileFormatDescriptorProperty.Jsii$Proxy
- Enclosing class:
CfnAnomalyDetectorPropsMixin
@Stability(Stable)
public static interface CfnAnomalyDetectorPropsMixin.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.cfnpropertymixins.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 classstatic final classAn implementation forCfnAnomalyDetectorPropsMixin.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
IResolvableorCfnAnomalyDetectorPropsMixin.CsvFormatDescriptorProperty- See Also:
-
getJsonFormatDescriptor
Contains information about how a source JSON data file should be analyzed.Returns union: either
IResolvableorCfnAnomalyDetectorPropsMixin.JsonFormatDescriptorProperty- See Also:
-
builder
@Stability(Stable) static CfnAnomalyDetectorPropsMixin.FileFormatDescriptorProperty.Builder builder()
-