Struct aws_sdk_iotanalytics::types::LambdaActivity
source · #[non_exhaustive]pub struct LambdaActivity { /* private fields */ }
Expand description
An activity that runs a Lambda function to modify the message.
Implementations§
source§impl 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.
source§impl LambdaActivity
impl LambdaActivity
sourcepub fn builder() -> LambdaActivityBuilder
pub fn builder() -> LambdaActivityBuilder
Creates a new builder-style object to manufacture LambdaActivity
.
Trait Implementations§
source§impl Clone for LambdaActivity
impl Clone for LambdaActivity
source§fn clone(&self) -> LambdaActivity
fn clone(&self) -> LambdaActivity
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 Debug for LambdaActivity
impl Debug for LambdaActivity
source§impl PartialEq<LambdaActivity> for LambdaActivity
impl PartialEq<LambdaActivity> for LambdaActivity
source§fn 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 ==
.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§
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