@Stability(value=Stable)
public static interface CfnPipeline.LambdaProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnPipeline.LambdaProperty.Builder
A builder for
CfnPipeline.LambdaProperty |
static class |
CfnPipeline.LambdaProperty.Jsii$Proxy
An implementation for
CfnPipeline.LambdaProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnPipeline.LambdaProperty.Builder |
builder() |
Number |
getBatchSize()
The number of messages passed to the Lambda function for processing.
|
String |
getLambdaName()
The name of the Lambda function that is run on the message.
|
String |
getName()
The name of the 'lambda' activity.
|
default String |
getNext()
The next activity in the pipeline.
|
@Stability(value=Stable) @NotNull Number getBatchSize()
The AWS Lambda function must be able to process all of these messages within five minutes, which is the maximum timeout duration for Lambda functions.
@Stability(value=Stable) @NotNull String getLambdaName()
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @Nullable default String getNext()
@Stability(value=Stable) static CfnPipeline.LambdaProperty.Builder builder()
CfnPipeline.LambdaProperty.Builder of CfnPipeline.LambdaPropertyCopyright © 2022. All rights reserved.