libZSservicesZSamazonka-kinesisanalyticsv2ZSamazonka-kinesisanalyticsv2
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.KinesisAnalyticsV2.Types.RecordColumn

Description

 
Synopsis

Documentation

data RecordColumn Source #

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.

See: newRecordColumn smart constructor.

Constructors

RecordColumn' 

Fields

  • mapping :: Maybe Text

    A reference to the data element in the streaming input or the reference data source.

  • name :: Text

    The name of the column that is created in the in-application input stream or reference table.

  • sqlType :: Text

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

Instances

Instances details
Eq RecordColumn Source # 
Instance details

Defined in Amazonka.KinesisAnalyticsV2.Types.RecordColumn

Read RecordColumn Source # 
Instance details

Defined in Amazonka.KinesisAnalyticsV2.Types.RecordColumn

Show RecordColumn Source # 
Instance details

Defined in Amazonka.KinesisAnalyticsV2.Types.RecordColumn

Generic RecordColumn Source # 
Instance details

Defined in Amazonka.KinesisAnalyticsV2.Types.RecordColumn

Associated Types

type Rep RecordColumn :: Type -> Type #

NFData RecordColumn Source # 
Instance details

Defined in Amazonka.KinesisAnalyticsV2.Types.RecordColumn

Methods

rnf :: RecordColumn -> () #

Hashable RecordColumn Source # 
Instance details

Defined in Amazonka.KinesisAnalyticsV2.Types.RecordColumn

ToJSON RecordColumn Source # 
Instance details

Defined in Amazonka.KinesisAnalyticsV2.Types.RecordColumn

FromJSON RecordColumn Source # 
Instance details

Defined in Amazonka.KinesisAnalyticsV2.Types.RecordColumn

type Rep RecordColumn Source # 
Instance details

Defined in Amazonka.KinesisAnalyticsV2.Types.RecordColumn

type Rep RecordColumn = D1 ('MetaData "RecordColumn" "Amazonka.KinesisAnalyticsV2.Types.RecordColumn" "libZSservicesZSamazonka-kinesisanalyticsv2ZSamazonka-kinesisanalyticsv2" 'False) (C1 ('MetaCons "RecordColumn'" 'PrefixI 'True) (S1 ('MetaSel ('Just "mapping") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "sqlType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newRecordColumn Source #

Create a value of RecordColumn with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:mapping:RecordColumn', recordColumn_mapping - A reference to the data element in the streaming input or the reference data source.

$sel:name:RecordColumn', recordColumn_name - The name of the column that is created in the in-application input stream or reference table.

$sel:sqlType:RecordColumn', recordColumn_sqlType - The type of column created in the in-application input stream or reference table.

recordColumn_mapping :: Lens' RecordColumn (Maybe Text) Source #

A reference to the data element in the streaming input or the reference data source.

recordColumn_name :: Lens' RecordColumn Text Source #

The name of the column that is created in the in-application input stream or reference table.

recordColumn_sqlType :: Lens' RecordColumn Text Source #

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