Class: Aws::QLDB::Types::KinesisConfiguration

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#aggregation_enabledBoolean

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

Returns:

  • (Boolean)


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_arnString

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

Returns:

  • (String)


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