interface S3SourceConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.LookoutMetrics.Mixins.CfnAnomalyDetectorPropsMixin.S3SourceConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslookoutmetrics/mixins#CfnAnomalyDetectorPropsMixin_S3SourceConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.lookoutmetrics.mixins.CfnAnomalyDetectorPropsMixin.S3SourceConfigProperty |
Python | aws_cdk.mixins_preview.aws_lookoutmetrics.mixins.CfnAnomalyDetectorPropsMixin.S3SourceConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lookoutmetrics » mixins » CfnAnomalyDetectorPropsMixin » S3SourceConfigProperty |
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 { mixins as lookoutmetrics_mixins } from '@aws-cdk/mixins-preview/aws-lookoutmetrics';
const s3SourceConfigProperty: lookoutmetrics_mixins.CfnAnomalyDetectorPropsMixin.S3SourceConfigProperty = {
fileFormatDescriptor: {
csvFormatDescriptor: {
charset: 'charset',
containsHeader: false,
delimiter: 'delimiter',
fileCompression: 'fileCompression',
headerList: ['headerList'],
quoteSymbol: 'quoteSymbol',
},
jsonFormatDescriptor: {
charset: 'charset',
fileCompression: 'fileCompression',
},
},
historicalDataPathList: ['historicalDataPathList'],
roleArn: 'roleArn',
templatedPathList: ['templatedPathList'],
};
Properties
| Name | Type | Description |
|---|---|---|
| file | IResolvable | File | Contains information about a source file's formatting. |
| historical | string[] | A list of paths to the historical data files. |
| role | string | The ARN of an IAM role that has read and write access permissions to the source S3 bucket. |
| templated | string[] | A list of templated paths to the source files. |
fileFormatDescriptor?
Type:
IResolvable | File
(optional)
Contains information about a source file's formatting.
historicalDataPathList?
Type:
string[]
(optional)
A list of paths to the historical data files.
roleArn?
Type:
string
(optional)
The ARN of an IAM role that has read and write access permissions to the source S3 bucket.
templatedPathList?
Type:
string[]
(optional)
A list of templated paths to the source files.

.NET
Go
Java
Python
TypeScript