Interface LambdaFunctionParameters
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
LambdaFunctionParameters.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-20T23:37:34.986Z")
@Stability(Experimental)
public interface LambdaFunctionParameters
extends software.amazon.jsii.JsiiSerializable
(experimental) Parameters for the LambdaFunction target.
Example:
Queue sourceQueue;
IFunction targetFunction;
LambdaFunction pipeTarget = LambdaFunction.Builder.create(targetFunction)
.invocationType(LambdaFunctionInvocationType.FIRE_AND_FORGET)
.build();
Pipe pipe = Pipe.Builder.create(this, "Pipe")
.source(new SqsSource(sourceQueue))
.target(pipeTarget)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forLambdaFunctionParametersstatic final classAn implementation forLambdaFunctionParameters -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default IInputTransformation(experimental) The input transformation to apply to the message before sending it to the target.default LambdaFunctionInvocationType(experimental) Specify whether to invoke the Lambda Function synchronously (REQUEST_RESPONSE) or asynchronously (FIRE_AND_FORGET).Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInputTransformation
(experimental) The input transformation to apply to the message before sending it to the target.Default: - none
- See Also:
-
getInvocationType
(experimental) Specify whether to invoke the Lambda Function synchronously (REQUEST_RESPONSE) or asynchronously (FIRE_AND_FORGET).Default: LambdaFunctionInvocationType.REQUEST_RESPONSE
- See Also:
-
builder
- Returns:
- a
LambdaFunctionParameters.BuilderofLambdaFunctionParameters
-