Interface CfnAnomalyDetector.CsvFormatDescriptorProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAnomalyDetector.CsvFormatDescriptorProperty.Jsii$Proxy
Enclosing class:
CfnAnomalyDetector

@Stability(Stable) public static interface CfnAnomalyDetector.CsvFormatDescriptorProperty extends software.amazon.jsii.JsiiSerializable
Contains information about how a source CSV data file should be analyzed.

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();
 
  • Method Details

    • getCharset

      @Stability(Stable) @Nullable default String getCharset()
      The character set in which the source CSV file is written.
    • getContainsHeader

      @Stability(Stable) @Nullable default Object getContainsHeader()
      Whether or not the source CSV file contains a header.
    • getDelimiter

      @Stability(Stable) @Nullable default String getDelimiter()
      The character used to delimit the source CSV file.
    • getFileCompression

      @Stability(Stable) @Nullable default String getFileCompression()
      The level of compression of the source CSV file.
    • getHeaderList

      @Stability(Stable) @Nullable default List<String> getHeaderList()
      A list of the source CSV file's headers, if any.
    • getQuoteSymbol

      @Stability(Stable) @Nullable default String getQuoteSymbol()
      The character used as a quote character.
    • builder

      @Stability(Stable) static CfnAnomalyDetector.CsvFormatDescriptorProperty.Builder builder()
      Returns:
      a CfnAnomalyDetector.CsvFormatDescriptorProperty.Builder of CfnAnomalyDetector.CsvFormatDescriptorProperty