Class CfnApplication.MappingParametersProperty
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.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.KinesisAnalytics
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnApplication.MappingParametersProperty : CfnApplication.IMappingParametersProperty
Syntax (vb)
Public Class CfnApplication.MappingParametersProperty Implements CfnApplication.IMappingParametersProperty
Remarks
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 mappingParametersProperty = new MappingParametersProperty {
CsvMappingParameters = new CSVMappingParametersProperty {
RecordColumnDelimiter = "recordColumnDelimiter",
RecordRowDelimiter = "recordRowDelimiter"
},
JsonMappingParameters = new JSONMappingParametersProperty {
RecordRowPath = "recordRowPath"
}
};
Synopsis
Constructors
| MappingParametersProperty() | 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. |
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. |
Constructors
MappingParametersProperty()
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.
public MappingParametersProperty()
Remarks
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 mappingParametersProperty = new MappingParametersProperty {
CsvMappingParameters = new CSVMappingParametersProperty {
RecordColumnDelimiter = "recordColumnDelimiter",
RecordRowDelimiter = "recordRowDelimiter"
},
JsonMappingParameters = new JSONMappingParametersProperty {
RecordRowPath = "recordRowPath"
}
};
Properties
CsvMappingParameters
Provides additional mapping information when the record format uses delimiters (for example, CSV).
public object? CsvMappingParameters { get; set; }
Property Value
Remarks
JsonMappingParameters
Provides additional mapping information when JSON is the record format on the streaming source.
public object? JsonMappingParameters { get; set; }