libZSservicesZSamazonka-kinesis-analyticsZSamazonka-kinesis-analytics
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.KinesisAnalytics.Types.InputSchemaUpdate

Description

 
Synopsis

Documentation

data InputSchemaUpdate Source #

Describes updates for the application's input schema.

See: newInputSchemaUpdate smart constructor.

Constructors

InputSchemaUpdate' 

Fields

Instances

Instances details
Eq InputSchemaUpdate Source # 
Instance details

Defined in Amazonka.KinesisAnalytics.Types.InputSchemaUpdate

Read InputSchemaUpdate Source # 
Instance details

Defined in Amazonka.KinesisAnalytics.Types.InputSchemaUpdate

Show InputSchemaUpdate Source # 
Instance details

Defined in Amazonka.KinesisAnalytics.Types.InputSchemaUpdate

Generic InputSchemaUpdate Source # 
Instance details

Defined in Amazonka.KinesisAnalytics.Types.InputSchemaUpdate

Associated Types

type Rep InputSchemaUpdate :: Type -> Type #

NFData InputSchemaUpdate Source # 
Instance details

Defined in Amazonka.KinesisAnalytics.Types.InputSchemaUpdate

Methods

rnf :: InputSchemaUpdate -> () #

Hashable InputSchemaUpdate Source # 
Instance details

Defined in Amazonka.KinesisAnalytics.Types.InputSchemaUpdate

ToJSON InputSchemaUpdate Source # 
Instance details

Defined in Amazonka.KinesisAnalytics.Types.InputSchemaUpdate

type Rep InputSchemaUpdate Source # 
Instance details

Defined in Amazonka.KinesisAnalytics.Types.InputSchemaUpdate

type Rep InputSchemaUpdate = D1 ('MetaData "InputSchemaUpdate" "Amazonka.KinesisAnalytics.Types.InputSchemaUpdate" "libZSservicesZSamazonka-kinesis-analyticsZSamazonka-kinesis-analytics" 'False) (C1 ('MetaCons "InputSchemaUpdate'" 'PrefixI 'True) (S1 ('MetaSel ('Just "recordFormatUpdate") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe RecordFormat)) :*: (S1 ('MetaSel ('Just "recordEncodingUpdate") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "recordColumnUpdates") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty RecordColumn))))))

newInputSchemaUpdate :: InputSchemaUpdate Source #

Create a value of InputSchemaUpdate 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:recordFormatUpdate:InputSchemaUpdate', inputSchemaUpdate_recordFormatUpdate - Specifies the format of the records on the streaming source.

$sel:recordEncodingUpdate:InputSchemaUpdate', inputSchemaUpdate_recordEncodingUpdate - Specifies the encoding of the records in the streaming source. For example, UTF-8.

$sel:recordColumnUpdates:InputSchemaUpdate', inputSchemaUpdate_recordColumnUpdates - A list of RecordColumn objects. Each object describes the mapping of the streaming source element to the corresponding column in the in-application stream.

inputSchemaUpdate_recordFormatUpdate :: Lens' InputSchemaUpdate (Maybe RecordFormat) Source #

Specifies the format of the records on the streaming source.

inputSchemaUpdate_recordEncodingUpdate :: Lens' InputSchemaUpdate (Maybe Text) Source #

Specifies the encoding of the records in the streaming source. For example, UTF-8.

inputSchemaUpdate_recordColumnUpdates :: Lens' InputSchemaUpdate (Maybe (NonEmpty RecordColumn)) Source #

A list of RecordColumn objects. Each object describes the mapping of the streaming source element to the corresponding column in the in-application stream.