Interface CfnAnomalyDetector.ICsvFormatDescriptorProperty
Contains information about how a source CSV data file should be analyzed.
Namespace: Amazon.CDK.AWS.LookoutMetrics
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICsvFormatDescriptorProperty
Syntax (vb)
Public Interface ICsvFormatDescriptorProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.LookoutMetrics;
var csvFormatDescriptorProperty = new CsvFormatDescriptorProperty {
Charset = "charset",
ContainsHeader = false,
Delimiter = "delimiter",
FileCompression = "fileCompression",
HeaderList = new [] { "headerList" },
QuoteSymbol = "quoteSymbol"
};
Synopsis
Properties
Charset | The character set in which the source CSV file is written. |
Contains |
Whether or not the source CSV file contains a header. |
Delimiter | The character used to delimit the source CSV file. |
File |
The level of compression of the source CSV file. |
Header |
A list of the source CSV file's headers, if any. |
Quote |
The character used as a quote character. |
Properties
Charset
The character set in which the source CSV file is written.
virtual string Charset { get; }
Property Value
System.
Remarks
ContainsHeader
Whether or not the source CSV file contains a header.
virtual object ContainsHeader { get; }
Property Value
System.
Remarks
Delimiter
The character used to delimit the source CSV file.
virtual string Delimiter { get; }
Property Value
System.
Remarks
FileCompression
The level of compression of the source CSV file.
virtual string FileCompression { get; }
Property Value
System.
Remarks
HeaderList
A list of the source CSV file's headers, if any.
virtual string[] HeaderList { get; }
Property Value
System.
Remarks
QuoteSymbol
The character used as a quote character.
virtual string QuoteSymbol { get; }
Property Value
System.