#[non_exhaustive]pub struct SelfManagedKafkaEventSourceConfigBuilder { /* private fields */ }
Expand description
A builder for SelfManagedKafkaEventSourceConfig
.
Implementations§
source§impl SelfManagedKafkaEventSourceConfigBuilder
impl SelfManagedKafkaEventSourceConfigBuilder
sourcepub fn consumer_group_id(self, input: impl Into<String>) -> Self
pub fn consumer_group_id(self, input: impl Into<String>) -> Self
The identifier for the Kafka consumer group to join. The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. For more information, see Customizable consumer group ID.
sourcepub fn set_consumer_group_id(self, input: Option<String>) -> Self
pub fn set_consumer_group_id(self, input: Option<String>) -> Self
The identifier for the Kafka consumer group to join. The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. For more information, see Customizable consumer group ID.
sourcepub fn get_consumer_group_id(&self) -> &Option<String>
pub fn get_consumer_group_id(&self) -> &Option<String>
The identifier for the Kafka consumer group to join. The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. For more information, see Customizable consumer group ID.
sourcepub fn build(self) -> SelfManagedKafkaEventSourceConfig
pub fn build(self) -> SelfManagedKafkaEventSourceConfig
Consumes the builder and constructs a SelfManagedKafkaEventSourceConfig
.
Trait Implementations§
source§impl Clone for SelfManagedKafkaEventSourceConfigBuilder
impl Clone for SelfManagedKafkaEventSourceConfigBuilder
source§fn clone(&self) -> SelfManagedKafkaEventSourceConfigBuilder
fn clone(&self) -> SelfManagedKafkaEventSourceConfigBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for SelfManagedKafkaEventSourceConfigBuilder
impl Default for SelfManagedKafkaEventSourceConfigBuilder
source§fn default() -> SelfManagedKafkaEventSourceConfigBuilder
fn default() -> SelfManagedKafkaEventSourceConfigBuilder
source§impl PartialEq for SelfManagedKafkaEventSourceConfigBuilder
impl PartialEq for SelfManagedKafkaEventSourceConfigBuilder
source§fn eq(&self, other: &SelfManagedKafkaEventSourceConfigBuilder) -> bool
fn eq(&self, other: &SelfManagedKafkaEventSourceConfigBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.