Interface CfnPipe.PipeTargetLambdaFunctionParametersProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPipe.PipeTargetLambdaFunctionParametersProperty.Jsii$Proxy
- Enclosing class:
- CfnPipe
@Stability(Stable)
public static interface CfnPipe.PipeTargetLambdaFunctionParametersProperty
extends software.amazon.jsii.JsiiSerializable
The parameters for using a Lambda function as a target.
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.pipes.*;
PipeTargetLambdaFunctionParametersProperty pipeTargetLambdaFunctionParametersProperty = PipeTargetLambdaFunctionParametersProperty.builder()
.invocationType("invocationType")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPipe.PipeTargetLambdaFunctionParametersPropertystatic final classAn implementation forCfnPipe.PipeTargetLambdaFunctionParametersProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInvocationType
Specify whether to invoke the function synchronously or asynchronously.REQUEST_RESPONSE(default) - Invoke synchronously. This corresponds to theRequestResponseoption in theInvocationTypeparameter for the Lambda Invoke API.FIRE_AND_FORGET- Invoke asynchronously. This corresponds to theEventoption in theInvocationTypeparameter for the Lambda Invoke API.
For more information, see Invocation types in the Amazon EventBridge User Guide .
-
builder
-