Interface CfnApplication.RecordColumnProperty
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnApplication.RecordColumnProperty.Jsii$Proxy
- Enclosing class:
- CfnApplication
@Stability(Stable)
public static interface CfnApplication.RecordColumnProperty
extends software.amazon.jsii.JsiiSerializable
Describes the mapping of each data element in the streaming source to the corresponding column in the in-application stream.
 
Also used to describe the format of the reference data 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.kinesisanalytics.*;
 RecordColumnProperty recordColumnProperty = RecordColumnProperty.builder()
         .name("name")
         .sqlType("sqlType")
         // the properties below are optional
         .mapping("mapping")
         .build();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApplication.RecordColumnPropertystatic final classAn implementation forCfnApplication.RecordColumnProperty
- 
Method SummaryModifier and TypeMethodDescriptionbuilder()default StringReference to the data element in the streaming input or the reference data source.getName()Name of the column created in the in-application input stream or reference table.Type of column created in the in-application input stream or reference table.Methods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getNameName of the column created in the in-application input stream or reference table.
- 
getSqlTypeType of column created in the in-application input stream or reference table.
- 
getMappingReference to the data element in the streaming input or the reference data source.This element is required if the RecordFormatType is JSON.
- 
builder
 
-