Interface CfnApplicationReferenceDataSource.RecordFormatProperty

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

@Stability(Stable) public static interface CfnApplicationReferenceDataSource.RecordFormatProperty extends software.amazon.jsii.JsiiSerializable
For a SQL-based Kinesis Data Analytics application, describes the record format and relevant mapping information that should be applied to schematize the records on the stream.

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.*;
 RecordFormatProperty recordFormatProperty = RecordFormatProperty.builder()
         .recordFormatType("recordFormatType")
         // the properties below are optional
         .mappingParameters(MappingParametersProperty.builder()
                 .csvMappingParameters(CSVMappingParametersProperty.builder()
                         .recordColumnDelimiter("recordColumnDelimiter")
                         .recordRowDelimiter("recordRowDelimiter")
                         .build())
                 .jsonMappingParameters(JSONMappingParametersProperty.builder()
                         .recordRowPath("recordRowPath")
                         .build())
                 .build())
         .build();
 

See Also: