Struct aws_sdk_qldb::model::KinesisConfiguration [−][src]
#[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.
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.
Implementations
The Amazon Resource Name (ARN) of the Kinesis Data Streams resource.
Enables QLDB to publish multiple data records in a single Kinesis Data Streams record, increasing the number of records sent per API call.
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.
Creates a new builder-style object to manufacture KinesisConfiguration
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for KinesisConfiguration
impl Send for KinesisConfiguration
impl Sync for KinesisConfiguration
impl Unpin for KinesisConfiguration
impl UnwindSafe for KinesisConfiguration
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more