libZSservicesZSamazonka-qldbZSamazonka-qldb
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.QLDB.Types.KinesisConfiguration

Description

 
Synopsis

Documentation

data KinesisConfiguration Source #

The configuration settings of the Amazon Kinesis Data Streams destination for an Amazon QLDB journal stream.

See: newKinesisConfiguration smart constructor.

Constructors

KinesisConfiguration' 

Fields

  • aggregationEnabled :: Maybe Bool

    Enables QLDB to publish multiple data records in a single Kinesis Data Streams record, increasing the number of records sent per API call.

    This option is enabled by default. Record aggregation has important implications for processing records and requires de-aggregation in your stream consumer. To learn more, see KPL Key Concepts and Consumer De-aggregation in the Amazon Kinesis Data Streams Developer Guide.

  • streamArn :: Text

    The Amazon Resource Name (ARN) of the Kinesis Data Streams resource.

Instances

Instances details
Eq KinesisConfiguration Source # 
Instance details

Defined in Amazonka.QLDB.Types.KinesisConfiguration

Read KinesisConfiguration Source # 
Instance details

Defined in Amazonka.QLDB.Types.KinesisConfiguration

Show KinesisConfiguration Source # 
Instance details

Defined in Amazonka.QLDB.Types.KinesisConfiguration

Generic KinesisConfiguration Source # 
Instance details

Defined in Amazonka.QLDB.Types.KinesisConfiguration

Associated Types

type Rep KinesisConfiguration :: Type -> Type #

NFData KinesisConfiguration Source # 
Instance details

Defined in Amazonka.QLDB.Types.KinesisConfiguration

Methods

rnf :: KinesisConfiguration -> () #

Hashable KinesisConfiguration Source # 
Instance details

Defined in Amazonka.QLDB.Types.KinesisConfiguration

ToJSON KinesisConfiguration Source # 
Instance details

Defined in Amazonka.QLDB.Types.KinesisConfiguration

FromJSON KinesisConfiguration Source # 
Instance details

Defined in Amazonka.QLDB.Types.KinesisConfiguration

type Rep KinesisConfiguration Source # 
Instance details

Defined in Amazonka.QLDB.Types.KinesisConfiguration

type Rep KinesisConfiguration = D1 ('MetaData "KinesisConfiguration" "Amazonka.QLDB.Types.KinesisConfiguration" "libZSservicesZSamazonka-qldbZSamazonka-qldb" 'False) (C1 ('MetaCons "KinesisConfiguration'" 'PrefixI 'True) (S1 ('MetaSel ('Just "aggregationEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "streamArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newKinesisConfiguration Source #

Create a value of KinesisConfiguration 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:aggregationEnabled:KinesisConfiguration', kinesisConfiguration_aggregationEnabled - Enables QLDB to publish multiple data records in a single Kinesis Data Streams record, increasing the number of records sent per API call.

This option is enabled by default. Record aggregation has important implications for processing records and requires de-aggregation in your stream consumer. To learn more, see KPL Key Concepts and Consumer De-aggregation in the Amazon Kinesis Data Streams Developer Guide.

$sel:streamArn:KinesisConfiguration', kinesisConfiguration_streamArn - The Amazon Resource Name (ARN) of the Kinesis Data Streams resource.

kinesisConfiguration_aggregationEnabled :: Lens' KinesisConfiguration (Maybe Bool) Source #

Enables QLDB to publish multiple data records in a single Kinesis Data Streams record, increasing the number of records sent per API call.

This option is enabled by default. Record aggregation has important implications for processing records and requires de-aggregation in your stream consumer. To learn more, see KPL Key Concepts and Consumer De-aggregation in the Amazon Kinesis Data Streams Developer Guide.

kinesisConfiguration_streamArn :: Lens' KinesisConfiguration Text Source #

The Amazon Resource Name (ARN) of the Kinesis Data Streams resource.