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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnPipe.PipeTargetLambdaFunctionParametersProperty
static final class
An 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 theRequestResponse
option in theInvocationType
parameter for the Lambda Invoke API.FIRE_AND_FORGET
- Invoke asynchronously. This corresponds to theEvent
option in theInvocationType
parameter for the Lambda Invoke API.
For more information, see Invocation types in the Amazon EventBridge User Guide .
- See Also:
-
builder
-