Show / Hide Table of Contents

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
object
CfnApplicationV2.CSVMappingParametersProperty
Implements
CfnApplicationV2.ICSVMappingParametersProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.KinesisAnalytics
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnApplicationV2.CSVMappingParametersProperty : CfnApplicationV2.ICSVMappingParametersProperty
Syntax (vb)
Public Class CfnApplicationV2.CSVMappingParametersProperty 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"

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-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.AWS.KinesisAnalytics;

             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"

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-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.AWS.KinesisAnalytics;

             var cSVMappingParametersProperty = new CSVMappingParametersProperty {
                 RecordColumnDelimiter = "recordColumnDelimiter",
                 RecordRowDelimiter = "recordRowDelimiter"
             };

Properties

RecordColumnDelimiter

The column delimiter.

public string RecordColumnDelimiter { get; set; }
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-kinesisanalyticsv2-application-csvmappingparameters.html#cfn-kinesisanalyticsv2-application-csvmappingparameters-recordcolumndelimiter

RecordRowDelimiter

The row delimiter.

public string RecordRowDelimiter { get; set; }
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-kinesisanalyticsv2-application-csvmappingparameters.html#cfn-kinesisanalyticsv2-application-csvmappingparameters-recordrowdelimiter

Implements

CfnApplicationV2.ICSVMappingParametersProperty
Back to top Generated by DocFX