#[non_exhaustive]pub struct PipeSourceManagedStreamingKafkaParameters {
    pub topic_name: String,
    pub starting_position: Option<MskStartPosition>,
    pub batch_size: Option<i32>,
    pub maximum_batching_window_in_seconds: Option<i32>,
    pub consumer_group_id: Option<String>,
    pub credentials: Option<MskAccessCredentials>,
}Expand description
The parameters for using an MSK stream as a source.
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.topic_name: StringThe name of the topic that the pipe will read from.
starting_position: Option<MskStartPosition>(Streams only) The position in a stream from which to start reading.
batch_size: Option<i32>The maximum number of records to include in each batch.
maximum_batching_window_in_seconds: Option<i32>The maximum length of a time to wait for events.
consumer_group_id: Option<String>The name of the destination queue to consume.
credentials: Option<MskAccessCredentials>The credentials needed to access the resource.
Implementations§
source§impl PipeSourceManagedStreamingKafkaParameters
 
impl PipeSourceManagedStreamingKafkaParameters
sourcepub fn topic_name(&self) -> &str
 
pub fn topic_name(&self) -> &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() -> PipeSourceManagedStreamingKafkaParametersBuilder
 
pub fn builder() -> PipeSourceManagedStreamingKafkaParametersBuilder
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for PipeSourceManagedStreamingKafkaParameters
 
impl PartialEq for PipeSourceManagedStreamingKafkaParameters
source§fn eq(&self, other: &PipeSourceManagedStreamingKafkaParameters) -> bool
 
fn eq(&self, other: &PipeSourceManagedStreamingKafkaParameters) -> bool
self and other values to be equal, and is used
by ==.