Interface CfnApplicationReferenceDataSourceV2.RecordColumnProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationReferenceDataSourceV2.RecordColumnProperty.Jsii$Proxy
- Enclosing class:
CfnApplicationReferenceDataSourceV2
@Stability(Stable)
public static interface CfnApplicationReferenceDataSourceV2.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.services.kinesisanalytics.*; RecordColumnProperty recordColumnProperty = RecordColumnProperty.builder() .name("name") .sqlType("sqlType") // the properties below are optional .mapping("mapping") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnApplicationReferenceDataSourceV2.RecordColumnProperty
static final class
An implementation forCfnApplicationReferenceDataSourceV2.RecordColumnProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
A reference to the data element in the streaming input or the reference data source.getName()
The name of the column that is created in the in-application input stream or reference table.The 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
-
getName
The name of the column that is created in the in-application input stream or reference table. -
getSqlType
The type of column created in the in-application input stream or reference table. -
getMapping
A reference to the data element in the streaming input or the reference data source. -
builder
@Stability(Stable) static CfnApplicationReferenceDataSourceV2.RecordColumnProperty.Builder builder()
-