Interface CfnApplication.MappingParametersProperty
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnApplication.MappingParametersProperty.Jsii$Proxy
- Enclosing class:
- CfnApplication
@Stability(Stable)
public static interface CfnApplication.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();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApplication.MappingParametersPropertystatic final classAn implementation forCfnApplication.MappingParametersProperty
- 
Method SummaryMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getCsvMappingParametersProvides additional mapping information when the record format uses delimiters (for example, CSV).
- 
getJsonMappingParametersProvides additional mapping information when JSON is the record format on the streaming source.
- 
builder
 
-