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§
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() -> Builder
pub fn builder() -> Builder
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 more