public static interface CfnAnomalyDetector.S3SourceConfigProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnAnomalyDetector.S3SourceConfigProperty.Builder
A builder for
CfnAnomalyDetector.S3SourceConfigProperty |
static class |
CfnAnomalyDetector.S3SourceConfigProperty.Jsii$Proxy
An implementation for
CfnAnomalyDetector.S3SourceConfigProperty |
Modifier and Type | Method and Description |
---|---|
static CfnAnomalyDetector.S3SourceConfigProperty.Builder |
builder() |
java.lang.Object |
getFileFormatDescriptor()
Contains information about a source file's formatting.
|
default java.util.List<java.lang.String> |
getHistoricalDataPathList()
A list of paths to the historical data files.
|
java.lang.String |
getRoleArn()
The ARN of an IAM role that has read and write access permissions to the source S3 bucket.
|
default java.util.List<java.lang.String> |
getTemplatedPathList()
A list of templated paths to the source files.
|
java.lang.Object getFileFormatDescriptor()
java.lang.String getRoleArn()
default java.util.List<java.lang.String> getHistoricalDataPathList()
default java.util.List<java.lang.String> getTemplatedPathList()
static CfnAnomalyDetector.S3SourceConfigProperty.Builder builder()