#[non_exhaustive]pub struct InputProcessingConfigurationBuilder { /* private fields */ }Expand description
A builder for InputProcessingConfiguration.
Implementations§
source§impl InputProcessingConfigurationBuilder
impl InputProcessingConfigurationBuilder
sourcepub fn input_lambda_processor(self, input: InputLambdaProcessor) -> Self
pub fn input_lambda_processor(self, input: InputLambdaProcessor) -> Self
The InputLambdaProcessor that is used to preprocess the records in the stream before being processed by your application code.
sourcepub fn set_input_lambda_processor(
self,
input: Option<InputLambdaProcessor>
) -> Self
pub fn set_input_lambda_processor( self, input: Option<InputLambdaProcessor> ) -> Self
The InputLambdaProcessor that is used to preprocess the records in the stream before being processed by your application code.
sourcepub fn get_input_lambda_processor(&self) -> &Option<InputLambdaProcessor>
pub fn get_input_lambda_processor(&self) -> &Option<InputLambdaProcessor>
The InputLambdaProcessor that is used to preprocess the records in the stream before being processed by your application code.
sourcepub fn build(self) -> InputProcessingConfiguration
pub fn build(self) -> InputProcessingConfiguration
Consumes the builder and constructs a InputProcessingConfiguration.
Trait Implementations§
source§impl Clone for InputProcessingConfigurationBuilder
impl Clone for InputProcessingConfigurationBuilder
source§fn clone(&self) -> InputProcessingConfigurationBuilder
fn clone(&self) -> InputProcessingConfigurationBuilder
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 InputProcessingConfigurationBuilder
impl Default for InputProcessingConfigurationBuilder
source§fn default() -> InputProcessingConfigurationBuilder
fn default() -> InputProcessingConfigurationBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for InputProcessingConfigurationBuilder
impl PartialEq for InputProcessingConfigurationBuilder
source§fn eq(&self, other: &InputProcessingConfigurationBuilder) -> bool
fn eq(&self, other: &InputProcessingConfigurationBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for InputProcessingConfigurationBuilder
Auto Trait Implementations§
impl RefUnwindSafe for InputProcessingConfigurationBuilder
impl Send for InputProcessingConfigurationBuilder
impl Sync for InputProcessingConfigurationBuilder
impl Unpin for InputProcessingConfigurationBuilder
impl UnwindSafe for InputProcessingConfigurationBuilder
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> 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>
Creates a shared type from an unshared type.