@Stability(value=Stable)
public static interface CfnAnomalyDetector.FileFormatDescriptorProperty
extends software.amazon.jsii.JsiiSerializable
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 Object |
getCsvFormatDescriptor()
Contains information about how a source CSV data file should be analyzed.
|
default Object |
getJsonFormatDescriptor()
Contains information about how a source JSON data file should be analyzed.
|
@Stability(value=Stable) @Nullable default Object getCsvFormatDescriptor()
@Stability(value=Stable) @Nullable default Object getJsonFormatDescriptor()
@Stability(value=Stable) static CfnAnomalyDetector.FileFormatDescriptorProperty.Builder builder()
Copyright © 2022. All rights reserved.