Interface CfnStream.KinesisConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnStream.KinesisConfigurationProperty.Jsii$Proxy
- Enclosing class:
- CfnStream
@Stability(Stable)
public static interface CfnStream.KinesisConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The configuration settings of the Amazon Kinesis Data Streams destination for an Amazon QLDB journal stream.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.qldb.*;
KinesisConfigurationProperty kinesisConfigurationProperty = KinesisConfigurationProperty.builder()
.aggregationEnabled(false)
.streamArn("streamArn")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnStream.KinesisConfigurationPropertystatic final classAn implementation forCfnStream.KinesisConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAggregationEnabled
Enables QLDB to publish multiple data records in a single Kinesis Data Streams record, increasing the number of records sent per API call.Default:
TrueRecord 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 .
-
getStreamArn
The Amazon Resource Name (ARN) of the Kinesis Data Streams resource. -
builder
-