interface RecordColumnProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.KinesisAnalytics.CfnApplicationReferenceDataSource.RecordColumnProperty | 
|  Java | software.amazon.awscdk.services.kinesisanalytics.CfnApplicationReferenceDataSource.RecordColumnProperty | 
|  Python | aws_cdk.aws_kinesisanalytics.CfnApplicationReferenceDataSource.RecordColumnProperty | 
|  TypeScript | @aws-cdk/aws-kinesisanalytics»CfnApplicationReferenceDataSource»RecordColumnProperty | 
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 * as kinesisanalytics from '@aws-cdk/aws-kinesisanalytics';
const recordColumnProperty: kinesisanalytics.CfnApplicationReferenceDataSource.RecordColumnProperty = {
  name: 'name',
  sqlType: 'sqlType',
  // the properties below are optional
  mapping: 'mapping',
};
Properties
| Name | Type | Description | 
|---|---|---|
| name | string | Name of the column created in the in-application input stream or reference table. | 
| sql | string | Type of column created in the in-application input stream or reference table. | 
| mapping? | string | Reference to the data element in the streaming input or the reference data source. | 
name
Type:
string
Name of the column created in the in-application input stream or reference table.
sqlType
Type:
string
Type of column created in the in-application input stream or reference table.
mapping?
Type:
string
(optional)
Reference to the data element in the streaming input or the reference data source.
This element is required if the RecordFormatType is JSON .
