#[non_exhaustive]pub struct PipeSourceManagedStreamingKafkaParameters { /* private fields */ }
Expand description
The parameters for using an MSK stream as a source.
Implementations§
source§impl PipeSourceManagedStreamingKafkaParameters
impl PipeSourceManagedStreamingKafkaParameters
sourcepub fn topic_name(&self) -> Option<&str>
pub fn topic_name(&self) -> Option<&str>
The name of the topic that the pipe will read from.
sourcepub fn starting_position(&self) -> Option<&MskStartPosition>
pub fn starting_position(&self) -> Option<&MskStartPosition>
(Streams only) The position in a stream from which to start reading.
sourcepub fn batch_size(&self) -> Option<i32>
pub fn batch_size(&self) -> Option<i32>
The maximum number of records to include in each batch.
sourcepub fn maximum_batching_window_in_seconds(&self) -> Option<i32>
pub fn maximum_batching_window_in_seconds(&self) -> Option<i32>
The maximum length of a time to wait for events.
sourcepub fn consumer_group_id(&self) -> Option<&str>
pub fn consumer_group_id(&self) -> Option<&str>
The name of the destination queue to consume.
sourcepub fn credentials(&self) -> Option<&MskAccessCredentials>
pub fn credentials(&self) -> Option<&MskAccessCredentials>
The credentials needed to access the resource.
source§impl PipeSourceManagedStreamingKafkaParameters
impl PipeSourceManagedStreamingKafkaParameters
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture PipeSourceManagedStreamingKafkaParameters
.
Trait Implementations§
source§impl Clone for PipeSourceManagedStreamingKafkaParameters
impl Clone for PipeSourceManagedStreamingKafkaParameters
source§fn clone(&self) -> PipeSourceManagedStreamingKafkaParameters
fn clone(&self) -> PipeSourceManagedStreamingKafkaParameters
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq<PipeSourceManagedStreamingKafkaParameters> for PipeSourceManagedStreamingKafkaParameters
impl PartialEq<PipeSourceManagedStreamingKafkaParameters> for PipeSourceManagedStreamingKafkaParameters
source§fn eq(&self, other: &PipeSourceManagedStreamingKafkaParameters) -> bool
fn eq(&self, other: &PipeSourceManagedStreamingKafkaParameters) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.