Interface CfnApplicationReferenceDataSourcePropsMixin.RecordColumnProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationReferenceDataSourcePropsMixin.RecordColumnProperty.Jsii$Proxy
- Enclosing class:
CfnApplicationReferenceDataSourcePropsMixin
@Stability(Stable)
public static interface CfnApplicationReferenceDataSourcePropsMixin.RecordColumnProperty
extends software.amazon.jsii.JsiiSerializable
For a SQL-based Kinesis Data Analytics application, 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.cfnpropertymixins.services.kinesisanalyticsv2.*;
RecordColumnProperty recordColumnProperty = RecordColumnProperty.builder()
.mapping("mapping")
.name("name")
.sqlType("sqlType")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnApplicationReferenceDataSourcePropsMixin.RecordColumnProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringA reference to the data element in the streaming input or the reference data source.default StringgetName()The name of the column that is created in the in-application input stream or reference table.default StringThe 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
-
getMapping
A reference to the data element in the streaming input or the reference data source.- See Also:
-
getName
The name of the column that is created in the in-application input stream or reference table.- See Also:
-
getSqlType
The type of column created in the in-application input stream or reference table.- See Also:
-
builder
@Stability(Stable) static CfnApplicationReferenceDataSourcePropsMixin.RecordColumnProperty.Builder builder()
-