pub struct InputProcessingConfiguration {
pub input_lambda_processor: InputLambdaProcessor,
}Expand description
For an SQL-based Amazon Kinesis Data Analytics application, describes a processor that is used to preprocess the records in the stream before being processed by your application code. Currently, the only input processor available is AWS Lambda.
Fields§
§input_lambda_processor: InputLambdaProcessorThe InputLambdaProcessor that is used to preprocess the records in the stream before being processed by your application code.
Trait Implementations§
Source§impl Clone for InputProcessingConfiguration
impl Clone for InputProcessingConfiguration
Source§fn clone(&self) -> InputProcessingConfiguration
fn clone(&self) -> InputProcessingConfiguration
Returns a duplicate 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 Debug for InputProcessingConfiguration
impl Debug for InputProcessingConfiguration
Source§impl Default for InputProcessingConfiguration
impl Default for InputProcessingConfiguration
Source§fn default() -> InputProcessingConfiguration
fn default() -> InputProcessingConfiguration
Returns the “default value” for a type. Read more
Source§impl PartialEq for InputProcessingConfiguration
impl PartialEq for InputProcessingConfiguration
Source§fn eq(&self, other: &InputProcessingConfiguration) -> bool
fn eq(&self, other: &InputProcessingConfiguration) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for InputProcessingConfiguration
Auto Trait Implementations§
impl Freeze for InputProcessingConfiguration
impl RefUnwindSafe for InputProcessingConfiguration
impl Send for InputProcessingConfiguration
impl Sync for InputProcessingConfiguration
impl Unpin for InputProcessingConfiguration
impl UnwindSafe for InputProcessingConfiguration
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