aws-cdk-lib.aws_lookoutmetrics.CfnAnomalyDetector.CsvFormatDescriptorProperty

interface CsvFormatDescriptorProperty

LanguageType name
.NETAmazon.CDK.AWS.LookoutMetrics.CfnAnomalyDetector.CsvFormatDescriptorProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awslookoutmetrics#CfnAnomalyDetector_CsvFormatDescriptorProperty
Javasoftware.amazon.awscdk.services.lookoutmetrics.CfnAnomalyDetector.CsvFormatDescriptorProperty
Pythonaws_cdk.aws_lookoutmetrics.CfnAnomalyDetector.CsvFormatDescriptorProperty
TypeScript 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

NameTypeDescription
charset?stringThe character set in which the source CSV file is written.
containsHeader?boolean | IResolvableWhether or not the source CSV file contains a header.
delimiter?stringThe character used to delimit the source CSV file.
fileCompression?stringThe level of compression of the source CSV file.
headerList?string[]A list of the source CSV file's headers, if any.
quoteSymbol?stringThe 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.