interface RecordColumnProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.KinesisAnalyticsV2.CfnApplicationReferenceDataSource.RecordColumnProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awskinesisanalyticsv2#CfnApplicationReferenceDataSource_RecordColumnProperty |
![]() | software.amazon.awscdk.services.kinesisanalyticsv2.CfnApplicationReferenceDataSource.RecordColumnProperty |
![]() | aws_cdk.aws_kinesisanalyticsv2.CfnApplicationReferenceDataSource.RecordColumnProperty |
![]() | aws-cdk-lib » aws_kinesisanalyticsv2 » CfnApplicationReferenceDataSource » RecordColumnProperty |
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 { aws_kinesisanalyticsv2 as kinesisanalyticsv2 } from 'aws-cdk-lib';
const recordColumnProperty: kinesisanalyticsv2.CfnApplicationReferenceDataSource.RecordColumnProperty = {
name: 'name',
sqlType: 'sqlType',
// the properties below are optional
mapping: 'mapping',
};
Properties
Name | Type | Description |
---|---|---|
name | string | The name of the column that is created in the in-application input stream or reference table. |
sql | string | The type of column created in the in-application input stream or reference table. |
mapping? | string | A reference to the data element in the streaming input or the reference data source. |
name
Type:
string
The name of the column that is created in the in-application input stream or reference table.
sqlType
Type:
string
The type of column created in the in-application input stream or reference table.
mapping?
Type:
string
(optional)
A reference to the data element in the streaming input or the reference data source.