@Stability(value=Stable)
public static interface CfnStream.KinesisConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnStream.KinesisConfigurationProperty.Builder
A builder for
CfnStream.KinesisConfigurationProperty |
static class |
CfnStream.KinesisConfigurationProperty.Jsii$Proxy
An implementation for
CfnStream.KinesisConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnStream.KinesisConfigurationProperty.Builder |
builder() |
default Object |
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 String |
getStreamArn()
The Amazon Resource Name (ARN) of the Kinesis Data Streams resource.
|
@Stability(value=Stable) @Nullable default Object getAggregationEnabled()
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 .
@Stability(value=Stable) @Nullable default String getStreamArn()
@Stability(value=Stable) static CfnStream.KinesisConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.