interface FileFormatDescriptorProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.LookoutMetrics.CfnAnomalyDetector.FileFormatDescriptorProperty |
Java | software.amazon.awscdk.services.lookoutmetrics.CfnAnomalyDetector.FileFormatDescriptorProperty |
Python | aws_cdk.aws_lookoutmetrics.CfnAnomalyDetector.FileFormatDescriptorProperty |
TypeScript | @aws-cdk/aws-lookoutmetrics » CfnAnomalyDetector » 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 * as lookoutmetrics from '@aws-cdk/aws-lookoutmetrics';
const fileFormatDescriptorProperty: lookoutmetrics.CfnAnomalyDetector.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.