interface FileFormatDescriptorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.LookoutMetrics.Mixins.CfnAnomalyDetectorPropsMixin.FileFormatDescriptorProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslookoutmetrics/mixins#CfnAnomalyDetectorPropsMixin_FileFormatDescriptorProperty |
Java | software.amazon.awscdk.mixins.preview.services.lookoutmetrics.mixins.CfnAnomalyDetectorPropsMixin.FileFormatDescriptorProperty |
Python | aws_cdk.mixins_preview.aws_lookoutmetrics.mixins.CfnAnomalyDetectorPropsMixin.FileFormatDescriptorProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lookoutmetrics » mixins » CfnAnomalyDetectorPropsMixin » FileFormatDescriptorProperty |
Contains information about a source file's formatting.
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 fileFormatDescriptorProperty: lookoutmetrics_mixins.CfnAnomalyDetectorPropsMixin.FileFormatDescriptorProperty = {
csvFormatDescriptor: {
charset: 'charset',
containsHeader: false,
delimiter: 'delimiter',
fileCompression: 'fileCompression',
headerList: ['headerList'],
quoteSymbol: 'quoteSymbol',
},
jsonFormatDescriptor: {
charset: 'charset',
fileCompression: 'fileCompression',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| csv | IResolvable | Csv | Contains information about how a source CSV data file should be analyzed. |
| json | IResolvable | Json | Contains information about how a source JSON data file should be analyzed. |
csvFormatDescriptor?
Type:
IResolvable | Csv
(optional)
Contains information about how a source CSV data file should be analyzed.
jsonFormatDescriptor?
Type:
IResolvable | Json
(optional)
Contains information about how a source JSON data file should be analyzed.

.NET
Go
Java
Python
TypeScript