Show / Hide Table of Contents

Interface CfnApplicationPropsMixin.IMappingParametersProperty

When configuring application input at the time of creating or updating an application, provides additional mapping information specific to the record format (such as JSON, CSV, or record fields delimited by some delimiter) on the streaming source.

Namespace: Amazon.CDK.Mixins.Preview.AWS.KinesisAnalytics.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnApplicationPropsMixin.IMappingParametersProperty
Syntax (vb)
Public Interface CfnApplicationPropsMixin.IMappingParametersProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-application-mappingparameters.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 mappingParametersProperty = new MappingParametersProperty {
                 CsvMappingParameters = new CSVMappingParametersProperty {
                     RecordColumnDelimiter = "recordColumnDelimiter",
                     RecordRowDelimiter = "recordRowDelimiter"
                 },
                 JsonMappingParameters = new JSONMappingParametersProperty {
                     RecordRowPath = "recordRowPath"
                 }
             };

Synopsis

Properties

CsvMappingParameters

Provides additional mapping information when the record format uses delimiters (for example, CSV).

JsonMappingParameters

Provides additional mapping information when JSON is the record format on the streaming source.

Properties

CsvMappingParameters

Provides additional mapping information when the record format uses delimiters (for example, CSV).

object? CsvMappingParameters { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnApplicationPropsMixin.ICSVMappingParametersProperty

JsonMappingParameters

Provides additional mapping information when JSON is the record format on the streaming source.

object? JsonMappingParameters { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-application-mappingparameters.html#cfn-kinesisanalytics-application-mappingparameters-jsonmappingparameters

Type union: either IResolvable or CfnApplicationPropsMixin.IJSONMappingParametersProperty

Back to top Generated by DocFX