LambdaDestination
- class aws_cdk.aws_lambda_destinations.LambdaDestination(fn, *, response_only=None)
Bases:
object
Use a Lambda function as a Lambda destination.
- ExampleMetadata:
infused
Example:
# Auto-extract response payload with a lambda destination # destination_fn: lambda.Function source_fn = lambda_.Function(self, "Source", runtime=lambda_.Runtime.NODEJS_14_X, handler="index.handler", code=lambda_.Code.from_asset(path.join(__dirname, "lambda-handler")), # auto-extract on success on_success=destinations.LambdaDestination(destination_fn, response_only=True ) )
- Parameters:
fn (
IFunction
) –response_only (
Optional
[bool
]) – Whether the destination function receives only theresponsePayload
of the source function. When set totrue
and used asonSuccess
destination, the destination function will be invoked with the payload returned by the source function. When set totrue
and used asonFailure
destination, the destination function will be invoked with the error object returned by source function. See the README of this module to see a full explanation of this option. Default: false The destination function receives the full invocation record.
Methods
- bind(scope, fn, *, type)
Returns a destination configuration.
- Parameters:
scope (
Construct
) –fn (
IFunction
) –type (
DestinationType
) – The destination type.
- Return type: