interface CsvFormatDescriptorProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.LookoutMetrics.CfnAnomalyDetector.CsvFormatDescriptorProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awslookoutmetrics#CfnAnomalyDetector_CsvFormatDescriptorProperty |
![]() | software.amazon.awscdk.services.lookoutmetrics.CfnAnomalyDetector.CsvFormatDescriptorProperty |
![]() | aws_cdk.aws_lookoutmetrics.CfnAnomalyDetector.CsvFormatDescriptorProperty |
![]() | aws-cdk-lib » aws_lookoutmetrics » CfnAnomalyDetector » CsvFormatDescriptorProperty |
Contains information about how a source CSV data file should be analyzed.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_lookoutmetrics as lookoutmetrics } from 'aws-cdk-lib';
const csvFormatDescriptorProperty: lookoutmetrics.CfnAnomalyDetector.CsvFormatDescriptorProperty = {
charset: 'charset',
containsHeader: false,
delimiter: 'delimiter',
fileCompression: 'fileCompression',
headerList: ['headerList'],
quoteSymbol: 'quoteSymbol',
};
Properties
Name | Type | Description |
---|---|---|
charset? | string | The character set in which the source CSV file is written. |
contains | boolean | IResolvable | Whether or not the source CSV file contains a header. |
delimiter? | string | The character used to delimit the source CSV file. |
file | string | The level of compression of the source CSV file. |
header | string[] | A list of the source CSV file's headers, if any. |
quote | string | The character used as a quote character. |
charset?
Type:
string
(optional)
The character set in which the source CSV file is written.
containsHeader?
Type:
boolean |
IResolvable
(optional)
Whether or not the source CSV file contains a header.
delimiter?
Type:
string
(optional)
The character used to delimit the source CSV file.
fileCompression?
Type:
string
(optional)
The level of compression of the source CSV file.
headerList?
Type:
string[]
(optional)
A list of the source CSV file's headers, if any.
quoteSymbol?
Type:
string
(optional)
The character used as a quote character.