Struct aws_sdk_iotanalytics::model::LambdaActivity  
source · [−]#[non_exhaustive]pub struct LambdaActivity { /* private fields */ }Expand description
An activity that runs a Lambda function to modify the message.
Implementations
sourceimpl LambdaActivity
 
impl LambdaActivity
sourcepub fn lambda_name(&self) -> Option<&str>
 
pub fn lambda_name(&self) -> Option<&str>
The name of the Lambda function that is run on the message.
sourcepub fn batch_size(&self) -> Option<i32>
 
pub fn batch_size(&self) -> Option<i32>
The number of messages passed to the Lambda function for processing.
The Lambda function must be able to process all of these messages within five minutes, which is the maximum timeout duration for Lambda functions.
sourceimpl LambdaActivity
 
impl LambdaActivity
sourcepub fn builder() -> Builder
 
pub fn builder() -> Builder
Creates a new builder-style object to manufacture LambdaActivity.
Trait Implementations
sourceimpl Clone for LambdaActivity
 
impl Clone for LambdaActivity
sourcefn clone(&self) -> LambdaActivity
 
fn clone(&self) -> LambdaActivity
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for LambdaActivity
 
impl Debug for LambdaActivity
sourceimpl PartialEq<LambdaActivity> for LambdaActivity
 
impl PartialEq<LambdaActivity> for LambdaActivity
sourcefn eq(&self, other: &LambdaActivity) -> bool
 
fn eq(&self, other: &LambdaActivity) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &LambdaActivity) -> bool
 
fn ne(&self, other: &LambdaActivity) -> bool
This method tests for !=.
impl StructuralPartialEq for LambdaActivity
Auto Trait Implementations
impl RefUnwindSafe for LambdaActivity
impl Send for LambdaActivity
impl Sync for LambdaActivity
impl Unpin for LambdaActivity
impl UnwindSafe for LambdaActivity
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
    T: ?Sized, 
 
impl<T> BorrowMut<T> for T where
    T: ?Sized, 
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
 
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
 
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
    S: Into<Dispatch>, 
 
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
    S: Into<Dispatch>, 
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
 
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more