Interface CfnPipeline.LambdaProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPipeline.LambdaProperty.Jsii$Proxy
Enclosing class:
CfnPipeline

@Stability(Stable) public static interface CfnPipeline.LambdaProperty extends software.amazon.jsii.JsiiSerializable
An activity that runs a Lambda function to modify the message.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.iotanalytics.*;
 LambdaProperty lambdaProperty = LambdaProperty.builder()
         .batchSize(123)
         .lambdaName("lambdaName")
         .name("name")
         // the properties below are optional
         .next("next")
         .build();
 

See Also: