Interface CfnApplicationReferenceDataSourceV2.ICSVMappingParametersProperty
For a SQL-based Kinesis Data Analytics application, provides additional mapping information when the record format uses delimiters, such as CSV.
Namespace: Amazon.CDK.AWS.KinesisAnalytics
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICSVMappingParametersProperty
Syntax (vb)
Public Interface ICSVMappingParametersProperty
Remarks
For example, the following sample records use CSV format, where the records use the '\n' as the row delimiter and a comma (",") as the column delimiter:
"name1", "address1"
"name2", "address2"
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.KinesisAnalytics;
var cSVMappingParametersProperty = new CSVMappingParametersProperty {
RecordColumnDelimiter = "recordColumnDelimiter",
RecordRowDelimiter = "recordRowDelimiter"
};
Synopsis
Properties
Record |
The column delimiter. |
Record |
The row delimiter. |
Properties
RecordColumnDelimiter
The column delimiter.
string RecordColumnDelimiter { get; }
Property Value
System.
Remarks
For example, in a CSV format, a comma (",") is the typical column delimiter.
RecordRowDelimiter
The row delimiter.
string RecordRowDelimiter { get; }
Property Value
System.
Remarks
For example, in a CSV format, '\n' is the typical row delimiter.