Show / Hide Table of Contents

Class CfnApplicationReferenceDataSourcePropsMixin.RecordColumnProperty

Describes the mapping of each data element in the streaming source to the corresponding column in the in-application stream.

Inheritance
object
CfnApplicationReferenceDataSourcePropsMixin.RecordColumnProperty
Implements
CfnApplicationReferenceDataSourcePropsMixin.IRecordColumnProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-recordcolumn.html

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-recordcolumn.html

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

string

Remarks

This element is required if the RecordFormatType is JSON .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-recordcolumn.html#cfn-kinesisanalytics-applicationreferencedatasource-recordcolumn-mapping

Name

Name of the column created in the in-application input stream or reference table.

public string? Name { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-recordcolumn.html#cfn-kinesisanalytics-applicationreferencedatasource-recordcolumn-name

SqlType

Type of column created in the in-application input stream or reference table.

public string? SqlType { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-recordcolumn.html#cfn-kinesisanalytics-applicationreferencedatasource-recordcolumn-sqltype

Implements

CfnApplicationReferenceDataSourcePropsMixin.IRecordColumnProperty
Back to top Generated by DocFX