Class CfnApplicationPropsMixin.CSVMappingParametersProperty
For a SQL-based Kinesis Data Analytics application, provides additional mapping information when the record format uses delimiters, such as CSV.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.KinesisAnalyticsV2.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnApplicationPropsMixin.CSVMappingParametersProperty : CfnApplicationPropsMixin.ICSVMappingParametersProperty
Syntax (vb)
Public Class CfnApplicationPropsMixin.CSVMappingParametersProperty Implements CfnApplicationPropsMixin.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.Mixins.Preview.AWS.KinesisAnalyticsV2.Mixins;
var cSVMappingParametersProperty = new CSVMappingParametersProperty {
RecordColumnDelimiter = "recordColumnDelimiter",
RecordRowDelimiter = "recordRowDelimiter"
};
Synopsis
Constructors
| CSVMappingParametersProperty() | For a SQL-based Kinesis Data Analytics application, provides additional mapping information when the record format uses delimiters, such as CSV. |
Properties
| RecordColumnDelimiter | The column delimiter. |
| RecordRowDelimiter | The row delimiter. |
Constructors
CSVMappingParametersProperty()
For a SQL-based Kinesis Data Analytics application, provides additional mapping information when the record format uses delimiters, such as CSV.
public CSVMappingParametersProperty()
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.Mixins.Preview.AWS.KinesisAnalyticsV2.Mixins;
var cSVMappingParametersProperty = new CSVMappingParametersProperty {
RecordColumnDelimiter = "recordColumnDelimiter",
RecordRowDelimiter = "recordRowDelimiter"
};
Properties
RecordColumnDelimiter
The column delimiter.
public string? RecordColumnDelimiter { get; set; }
Property Value
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
Remarks
For example, in a CSV format, '\n' is the typical row delimiter.