Class: Aws::QLDB::Types::KinesisConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::QLDB::Types::KinesisConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-qldb/types.rb
Overview
The configuration settings of the Amazon Kinesis Data Streams destination for an Amazon QLDB journal stream.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#aggregation_enabled ⇒ Boolean
Enables QLDB to publish multiple data records in a single Kinesis Data Streams record, increasing the number of records sent per API call.
-
#stream_arn ⇒ String
The Amazon Resource Name (ARN) of the Kinesis Data Streams resource.
Instance Attribute Details
#aggregation_enabled ⇒ Boolean
Enables QLDB to publish multiple data records in a single Kinesis Data Streams record, increasing the number of records sent per API call.
Default: ‘True`
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*.
[1]: docs.aws.amazon.com/streams/latest/dev/kinesis-kpl-concepts.html [2]: docs.aws.amazon.com/streams/latest/dev/kinesis-kpl-consumer-deaggregation.html
787 788 789 790 791 792 |
# File 'lib/aws-sdk-qldb/types.rb', line 787 class KinesisConfiguration < Struct.new( :stream_arn, :aggregation_enabled) SENSITIVE = [] include Aws::Structure end |
#stream_arn ⇒ String
The Amazon Resource Name (ARN) of the Kinesis Data Streams resource.
787 788 789 790 791 792 |
# File 'lib/aws-sdk-qldb/types.rb', line 787 class KinesisConfiguration < Struct.new( :stream_arn, :aggregation_enabled) SENSITIVE = [] include Aws::Structure end |