Class CfnApplicationReferenceDataSourcePropsMixin.RecordColumnProperty
Describes the mapping of each data element in the streaming source to the corresponding column in the in-application stream.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.KinesisAnalytics.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnApplicationReferenceDataSourcePropsMixin.RecordColumnProperty : CfnApplicationReferenceDataSourcePropsMixin.IRecordColumnProperty
Syntax (vb)
Public Class CfnApplicationReferenceDataSourcePropsMixin.RecordColumnProperty Implements CfnApplicationReferenceDataSourcePropsMixin.IRecordColumnProperty
Remarks
Also used to describe the format of the reference data source.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.KinesisAnalytics.Mixins;
var recordColumnProperty = new RecordColumnProperty {
Mapping = "mapping",
Name = "name",
SqlType = "sqlType"
};
Synopsis
Constructors
| RecordColumnProperty() | Describes the mapping of each data element in the streaming source to the corresponding column in the in-application stream. |
Properties
| Mapping | Reference to the data element in the streaming input or the reference data source. |
| Name | Name of the column created in the in-application input stream or reference table. |
| SqlType | Type of column created in the in-application input stream or reference table. |
Constructors
RecordColumnProperty()
Describes the mapping of each data element in the streaming source to the corresponding column in the in-application stream.
public RecordColumnProperty()
Remarks
Also used to describe the format of the reference data source.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.KinesisAnalytics.Mixins;
var recordColumnProperty = new RecordColumnProperty {
Mapping = "mapping",
Name = "name",
SqlType = "sqlType"
};
Properties
Mapping
Reference to the data element in the streaming input or the reference data source.
public string? Mapping { get; set; }
Property Value
Remarks
Name
Name of the column created in the in-application input stream or reference table.
public string? Name { get; set; }
Property Value
Remarks
SqlType
Type of column created in the in-application input stream or reference table.
public string? SqlType { get; set; }