#[non_exhaustive]pub struct UpdatePipeSourceRabbitMqBrokerParametersBuilder { /* private fields */ }Expand description
A builder for UpdatePipeSourceRabbitMqBrokerParameters.
Implementations§
source§impl UpdatePipeSourceRabbitMqBrokerParametersBuilder
impl UpdatePipeSourceRabbitMqBrokerParametersBuilder
sourcepub fn credentials(self, input: MqBrokerAccessCredentials) -> Self
pub fn credentials(self, input: MqBrokerAccessCredentials) -> Self
The credentials needed to access the resource.
This field is required.sourcepub fn set_credentials(self, input: Option<MqBrokerAccessCredentials>) -> Self
pub fn set_credentials(self, input: Option<MqBrokerAccessCredentials>) -> Self
The credentials needed to access the resource.
sourcepub fn get_credentials(&self) -> &Option<MqBrokerAccessCredentials>
pub fn get_credentials(&self) -> &Option<MqBrokerAccessCredentials>
The credentials needed to access the resource.
sourcepub fn batch_size(self, input: i32) -> Self
pub fn batch_size(self, input: i32) -> Self
The maximum number of records to include in each batch.
sourcepub fn set_batch_size(self, input: Option<i32>) -> Self
pub fn set_batch_size(self, input: Option<i32>) -> Self
The maximum number of records to include in each batch.
sourcepub fn get_batch_size(&self) -> &Option<i32>
pub fn get_batch_size(&self) -> &Option<i32>
The maximum number of records to include in each batch.
sourcepub fn maximum_batching_window_in_seconds(self, input: i32) -> Self
pub fn maximum_batching_window_in_seconds(self, input: i32) -> Self
The maximum length of a time to wait for events.
sourcepub fn set_maximum_batching_window_in_seconds(self, input: Option<i32>) -> Self
pub fn set_maximum_batching_window_in_seconds(self, input: Option<i32>) -> Self
The maximum length of a time to wait for events.
sourcepub fn get_maximum_batching_window_in_seconds(&self) -> &Option<i32>
pub fn get_maximum_batching_window_in_seconds(&self) -> &Option<i32>
The maximum length of a time to wait for events.
sourcepub fn build(self) -> UpdatePipeSourceRabbitMqBrokerParameters
pub fn build(self) -> UpdatePipeSourceRabbitMqBrokerParameters
Consumes the builder and constructs a UpdatePipeSourceRabbitMqBrokerParameters.
Trait Implementations§
source§impl Clone for UpdatePipeSourceRabbitMqBrokerParametersBuilder
impl Clone for UpdatePipeSourceRabbitMqBrokerParametersBuilder
source§fn clone(&self) -> UpdatePipeSourceRabbitMqBrokerParametersBuilder
fn clone(&self) -> UpdatePipeSourceRabbitMqBrokerParametersBuilder
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 Default for UpdatePipeSourceRabbitMqBrokerParametersBuilder
impl Default for UpdatePipeSourceRabbitMqBrokerParametersBuilder
source§fn default() -> UpdatePipeSourceRabbitMqBrokerParametersBuilder
fn default() -> UpdatePipeSourceRabbitMqBrokerParametersBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for UpdatePipeSourceRabbitMqBrokerParametersBuilder
impl PartialEq for UpdatePipeSourceRabbitMqBrokerParametersBuilder
source§fn eq(&self, other: &UpdatePipeSourceRabbitMqBrokerParametersBuilder) -> bool
fn eq(&self, other: &UpdatePipeSourceRabbitMqBrokerParametersBuilder) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdatePipeSourceRabbitMqBrokerParametersBuilder
Auto Trait Implementations§
impl Freeze for UpdatePipeSourceRabbitMqBrokerParametersBuilder
impl RefUnwindSafe for UpdatePipeSourceRabbitMqBrokerParametersBuilder
impl Send for UpdatePipeSourceRabbitMqBrokerParametersBuilder
impl Sync for UpdatePipeSourceRabbitMqBrokerParametersBuilder
impl Unpin for UpdatePipeSourceRabbitMqBrokerParametersBuilder
impl UnwindSafe for UpdatePipeSourceRabbitMqBrokerParametersBuilder
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
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.