Show / Hide Table of Contents

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"

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-csvmappingparameters.html

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

string

Remarks

For example, in a CSV format, a comma (",") is the typical column delimiter.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalytics-applicationreferencedatasource-csvmappingparameters-recordcolumndelimiter

RecordRowDelimiter

Row delimiter.

string? RecordRowDelimiter { get; }
Property Value

string

Remarks

For example, in a CSV format, '\n' is the typical row delimiter.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalytics-applicationreferencedatasource-csvmappingparameters-recordrowdelimiter

Back to top Generated by DocFX