interface RecordColumnProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KinesisAnalytics.Mixins.CfnApplicationReferenceDataSourcePropsMixin.RecordColumnProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskinesisanalytics/mixins#CfnApplicationReferenceDataSourcePropsMixin_RecordColumnProperty |
Java | software.amazon.awscdk.mixins.preview.services.kinesisanalytics.mixins.CfnApplicationReferenceDataSourcePropsMixin.RecordColumnProperty |
Python | aws_cdk.mixins_preview.aws_kinesisanalytics.mixins.CfnApplicationReferenceDataSourcePropsMixin.RecordColumnProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kinesisanalytics » mixins » CfnApplicationReferenceDataSourcePropsMixin » 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 { mixins as kinesisanalytics_mixins } from '@aws-cdk/mixins-preview/aws-kinesisanalytics';
const recordColumnProperty: kinesisanalytics_mixins.CfnApplicationReferenceDataSourcePropsMixin.RecordColumnProperty = {
mapping: 'mapping',
name: 'name',
sqlType: 'sqlType',
};
Properties
| Name | Type | Description |
|---|---|---|
| mapping? | string | Reference to the data element in the streaming input or the reference data source. |
| 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?
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 .
name?
Type:
string
(optional)
Name of the column created in the in-application input stream or reference table.
sqlType?
Type:
string
(optional)
Type of column created in the in-application input stream or reference table.

.NET
Go
Java
Python
TypeScript