Class CfnApplicationV2.CSVMappingParametersProperty
For a SQL-based Kinesis Data Analytics application, provides additional mapping information when the record format uses delimiters, such as CSV.
Inheritance
Namespace: Amazon.CDK.AWS.KinesisAnalytics
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CSVMappingParametersProperty : Object, CfnApplicationV2.ICSVMappingParametersProperty
Syntax (vb)
Public Class CSVMappingParametersProperty
Inherits Object
Implements CfnApplicationV2.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
Constructors
CSVMapping |
Properties
Record |
The column delimiter. |
Record |
The row delimiter. |
Constructors
CSVMappingParametersProperty()
public CSVMappingParametersProperty()
Properties
RecordColumnDelimiter
The column delimiter.
public string RecordColumnDelimiter { get; set; }
Property Value
System.
Remarks
For example, in a CSV format, a comma (",") is the typical column delimiter.
RecordRowDelimiter
The row delimiter.
public string RecordRowDelimiter { get; set; }
Property Value
System.
Remarks
For example, in a CSV format, '\n' is the typical row delimiter.