aws-cdk-lib.aws_lookoutmetrics.CfnAnomalyDetector.FileFormatDescriptorProperty

interface FileFormatDescriptorProperty

LanguageType name
.NETAmazon.CDK.AWS.LookoutMetrics.CfnAnomalyDetector.FileFormatDescriptorProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awslookoutmetrics#CfnAnomalyDetector_FileFormatDescriptorProperty
Javasoftware.amazon.awscdk.services.lookoutmetrics.CfnAnomalyDetector.FileFormatDescriptorProperty
Pythonaws_cdk.aws_lookoutmetrics.CfnAnomalyDetector.FileFormatDescriptorProperty
TypeScript aws-cdk-lib » 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 { aws_lookoutmetrics as lookoutmetrics } from 'aws-cdk-lib';
const fileFormatDescriptorProperty: lookoutmetrics.CfnAnomalyDetector.FileFormatDescriptorProperty = {
  csvFormatDescriptor: {
    charset: 'charset',
    containsHeader: false,
    delimiter: 'delimiter',
    fileCompression: 'fileCompression',
    headerList: ['headerList'],
    quoteSymbol: 'quoteSymbol',
  },
  jsonFormatDescriptor: {
    charset: 'charset',
    fileCompression: 'fileCompression',
  },
};

Properties

NameTypeDescription
csvFormatDescriptor?IResolvable | CsvFormatDescriptorPropertyContains information about how a source CSV data file should be analyzed.
jsonFormatDescriptor?IResolvable | JsonFormatDescriptorPropertyContains information about how a source JSON data file should be analyzed.

csvFormatDescriptor?

Type: IResolvable | CsvFormatDescriptorProperty (optional)

Contains information about how a source CSV data file should be analyzed.


jsonFormatDescriptor?

Type: IResolvable | JsonFormatDescriptorProperty (optional)

Contains information about how a source JSON data file should be analyzed.