Struct aws_sdk_qldb::types::KinesisConfiguration
source · #[non_exhaustive]pub struct KinesisConfiguration {
pub stream_arn: Option<String>,
pub aggregation_enabled: Option<bool>,
}Expand description
The configuration settings of the Amazon Kinesis Data Streams destination for an Amazon QLDB journal stream.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.stream_arn: Option<String>The Amazon Resource Name (ARN) of the Kinesis Data Streams resource.
aggregation_enabled: Option<bool>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.
Implementations§
source§impl KinesisConfiguration
impl KinesisConfiguration
sourcepub fn stream_arn(&self) -> Option<&str>
pub fn stream_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the Kinesis Data Streams resource.
sourcepub fn aggregation_enabled(&self) -> Option<bool>
pub fn aggregation_enabled(&self) -> Option<bool>
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.
source§impl KinesisConfiguration
impl KinesisConfiguration
sourcepub fn builder() -> KinesisConfigurationBuilder
pub fn builder() -> KinesisConfigurationBuilder
Creates a new builder-style object to manufacture KinesisConfiguration.
Trait Implementations§
source§impl Clone for KinesisConfiguration
impl Clone for KinesisConfiguration
source§fn clone(&self) -> KinesisConfiguration
fn clone(&self) -> KinesisConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for KinesisConfiguration
impl Debug for KinesisConfiguration
source§impl PartialEq<KinesisConfiguration> for KinesisConfiguration
impl PartialEq<KinesisConfiguration> for KinesisConfiguration
source§fn eq(&self, other: &KinesisConfiguration) -> bool
fn eq(&self, other: &KinesisConfiguration) -> bool
self and other values to be equal, and is used
by ==.