Interface CfnAnomalyDetector.S3SourceConfigProperty

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

@Stability(Stable) public static interface CfnAnomalyDetector.S3SourceConfigProperty extends software.amazon.jsii.JsiiSerializable
Contains information about the configuration of the S3 bucket that contains source files.

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.*;
 S3SourceConfigProperty s3SourceConfigProperty = S3SourceConfigProperty.builder()
         .fileFormatDescriptor(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())
         .roleArn("roleArn")
         // the properties below are optional
         .historicalDataPathList(List.of("historicalDataPathList"))
         .templatedPathList(List.of("templatedPathList"))
         .build();