@Stability(value=Stable)
public static interface CfnAnomalyDetector.CsvFormatDescriptorProperty
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.*;
CsvFormatDescriptorProperty csvFormatDescriptorProperty = CsvFormatDescriptorProperty.builder()
.charset("charset")
.containsHeader(false)
.delimiter("delimiter")
.fileCompression("fileCompression")
.headerList(List.of("headerList"))
.quoteSymbol("quoteSymbol")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnAnomalyDetector.CsvFormatDescriptorProperty.Builder
A builder for
CfnAnomalyDetector.CsvFormatDescriptorProperty |
static class |
CfnAnomalyDetector.CsvFormatDescriptorProperty.Jsii$Proxy
An implementation for
CfnAnomalyDetector.CsvFormatDescriptorProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnAnomalyDetector.CsvFormatDescriptorProperty.Builder |
builder() |
default String |
getCharset()
The character set in which the source CSV file is written.
|
default Object |
getContainsHeader()
Whether or not the source CSV file contains a header.
|
default String |
getDelimiter()
The character used to delimit the source CSV file.
|
default String |
getFileCompression()
The level of compression of the source CSV file.
|
default List<String> |
getHeaderList()
A list of the source CSV file's headers, if any.
|
default String |
getQuoteSymbol()
The character used as a quote character.
|
@Stability(value=Stable) @Nullable default String getCharset()
@Stability(value=Stable) @Nullable default Object getContainsHeader()
@Stability(value=Stable) @Nullable default String getDelimiter()
@Stability(value=Stable) @Nullable default String getFileCompression()
@Stability(value=Stable) @Nullable default List<String> getHeaderList()
@Stability(value=Stable) @Nullable default String getQuoteSymbol()
@Stability(value=Stable) static CfnAnomalyDetector.CsvFormatDescriptorProperty.Builder builder()
Copyright © 2022. All rights reserved.