Interface CfnApplicationReferenceDataSourcePropsMixin.ICSVMappingParametersProperty
Provides additional mapping information when the record format uses delimiters, such as CSV.
Namespace: Amazon.CDK.Mixins.Preview.AWS.KinesisAnalytics.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnApplicationReferenceDataSourcePropsMixin.ICSVMappingParametersProperty
Syntax (vb)
Public Interface CfnApplicationReferenceDataSourcePropsMixin.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.KinesisAnalytics.Mixins;
var cSVMappingParametersProperty = new CSVMappingParametersProperty {
RecordColumnDelimiter = "recordColumnDelimiter",
RecordRowDelimiter = "recordRowDelimiter"
};
Synopsis
Properties
| RecordColumnDelimiter | Column delimiter. |
| RecordRowDelimiter | Row delimiter. |
Properties
RecordColumnDelimiter
Column delimiter.
string? RecordColumnDelimiter { get; }
Property Value
Remarks
For example, in a CSV format, a comma (",") is the typical column delimiter.
RecordRowDelimiter
Row delimiter.
string? RecordRowDelimiter { get; }
Property Value
Remarks
For example, in a CSV format, '\n' is the typical row delimiter.