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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnStream.KinesisConfigurationProperty
static final class
An 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:
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 .
- See Also:
-
getStreamArn
The Amazon Resource Name (ARN) of the Kinesis Data Streams resource.- See Also:
-
builder
-