Interface CfnApplicationReferenceDataSource.MappingParametersProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnApplicationReferenceDataSource.MappingParametersProperty.Jsii$Proxy
Enclosing class:
CfnApplicationReferenceDataSource

@Stability(Stable) public static interface CfnApplicationReferenceDataSource.MappingParametersProperty extends software.amazon.jsii.JsiiSerializable
When you configure a SQL-based Kinesis Data Analytics application's 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.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.kinesisanalyticsv2.*;
 MappingParametersProperty mappingParametersProperty = MappingParametersProperty.builder()
         .csvMappingParameters(CSVMappingParametersProperty.builder()
                 .recordColumnDelimiter("recordColumnDelimiter")
                 .recordRowDelimiter("recordRowDelimiter")
                 .build())
         .jsonMappingParameters(JSONMappingParametersProperty.builder()
                 .recordRowPath("recordRowPath")
                 .build())
         .build();