public static interface CfnApplicationReferenceDataSource.RecordColumnProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnApplicationReferenceDataSource.RecordColumnProperty.Builder
A builder for
CfnApplicationReferenceDataSource.RecordColumnProperty |
static class |
CfnApplicationReferenceDataSource.RecordColumnProperty.Jsii$Proxy
An implementation for
CfnApplicationReferenceDataSource.RecordColumnProperty |
Modifier and Type | Method and Description |
---|---|
static CfnApplicationReferenceDataSource.RecordColumnProperty.Builder |
builder() |
default java.lang.String |
getMapping()
Reference to the data element in the streaming input or the reference data source.
|
java.lang.String |
getName()
Name of the column created in the in-application input stream or reference table.
|
java.lang.String |
getSqlType()
Type of column created in the in-application input stream or reference table.
|
java.lang.String getName()
java.lang.String getSqlType()
default java.lang.String getMapping()
This element is required if the RecordFormatType is JSON
.