interface PipeTargetLambdaFunctionParametersProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Pipes.CfnPipe.PipeTargetLambdaFunctionParametersProperty |
![]() | software.amazon.awscdk.services.pipes.CfnPipe.PipeTargetLambdaFunctionParametersProperty |
![]() | aws_cdk.aws_pipes.CfnPipe.PipeTargetLambdaFunctionParametersProperty |
![]() | @aws-cdk/aws-pipes » CfnPipe » PipeTargetLambdaFunctionParametersProperty |
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 * as pipes from '@aws-cdk/aws-pipes';
const pipeTargetLambdaFunctionParametersProperty: pipes.CfnPipe.PipeTargetLambdaFunctionParametersProperty = {
invocationType: 'invocationType',
};
Properties
Name | Type | Description |
---|---|---|
invocation | string | Specify whether to invoke the function synchronously or asynchronously. |
invocationType?
Type:
string
(optional)
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 .