aws-cdk-lib.aws_kinesisanalytics.CfnApplication.RecordColumnProperty

interface RecordColumnProperty

LanguageType name
.NETAmazon.CDK.AWS.KinesisAnalytics.CfnApplication.RecordColumnProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awskinesisanalytics#CfnApplication_RecordColumnProperty
Javasoftware.amazon.awscdk.services.kinesisanalytics.CfnApplication.RecordColumnProperty
Pythonaws_cdk.aws_kinesisanalytics.CfnApplication.RecordColumnProperty
TypeScript aws-cdk-lib » aws_kinesisanalytics » CfnApplication » 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 { aws_kinesisanalytics as kinesisanalytics } from 'aws-cdk-lib';
const recordColumnProperty: kinesisanalytics.CfnApplication.RecordColumnProperty = {
  name: 'name',
  sqlType: 'sqlType',

  // the properties below are optional
  mapping: 'mapping',
};

Properties

NameTypeDescription
namestringName of the column created in the in-application input stream or reference table.
sqlTypestringType of column created in the in-application input stream or reference table.
mapping?stringReference 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 .