#[non_exhaustive]pub struct AmazonManagedKafkaEventSourceConfigBuilder { /* private fields */ }
Expand description
A builder for AmazonManagedKafkaEventSourceConfig
.
Implementations§
source§impl AmazonManagedKafkaEventSourceConfigBuilder
impl AmazonManagedKafkaEventSourceConfigBuilder
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) -> AmazonManagedKafkaEventSourceConfig
pub fn build(self) -> AmazonManagedKafkaEventSourceConfig
Consumes the builder and constructs a AmazonManagedKafkaEventSourceConfig
.
Trait Implementations§
source§impl Clone for AmazonManagedKafkaEventSourceConfigBuilder
impl Clone for AmazonManagedKafkaEventSourceConfigBuilder
source§fn clone(&self) -> AmazonManagedKafkaEventSourceConfigBuilder
fn clone(&self) -> AmazonManagedKafkaEventSourceConfigBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for AmazonManagedKafkaEventSourceConfigBuilder
impl Default for AmazonManagedKafkaEventSourceConfigBuilder
source§fn default() -> AmazonManagedKafkaEventSourceConfigBuilder
fn default() -> AmazonManagedKafkaEventSourceConfigBuilder
source§impl PartialEq for AmazonManagedKafkaEventSourceConfigBuilder
impl PartialEq for AmazonManagedKafkaEventSourceConfigBuilder
source§fn eq(&self, other: &AmazonManagedKafkaEventSourceConfigBuilder) -> bool
fn eq(&self, other: &AmazonManagedKafkaEventSourceConfigBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AmazonManagedKafkaEventSourceConfigBuilder
Auto Trait Implementations§
impl Freeze for AmazonManagedKafkaEventSourceConfigBuilder
impl RefUnwindSafe for AmazonManagedKafkaEventSourceConfigBuilder
impl Send for AmazonManagedKafkaEventSourceConfigBuilder
impl Sync for AmazonManagedKafkaEventSourceConfigBuilder
impl Unpin for AmazonManagedKafkaEventSourceConfigBuilder
impl UnwindSafe for AmazonManagedKafkaEventSourceConfigBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more