Class: Aws::QLDB::Types::KinesisConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::QLDB::Types::KinesisConfiguration
- Defined in:
- gems/aws-sdk-qldb/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.
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.
769 770 771 772 773 774 |
# File 'gems/aws-sdk-qldb/lib/aws-sdk-qldb/types.rb', line 769 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.
769 770 771 772 773 774 |
# File 'gems/aws-sdk-qldb/lib/aws-sdk-qldb/types.rb', line 769 class KinesisConfiguration < Struct.new( :stream_arn, :aggregation_enabled) SENSITIVE = [] include Aws::Structure end |