Lambda Destinations to Lambda and SQS

Lambda function that on success sends message to another function and on failure to SQS using Lambda destinations

AWS LambdaAWS LambdaAWS SQSonSuccessonFailure
import * as cdk from 'aws-cdk-lib';
import { Construct } from 'constructs';
import { CfnOutput } from 'aws-cdk-lib';
import { Queue } from 'aws-cdk-lib/aws-sqs';
import { Function, Runtime, Code } from 'aws-cdk-lib/aws-lambda';
import * as path from 'path';
import {
	LambdaDestination,
	SqsDestination,
} from 'aws-cdk-lib/aws-lambda-destinations';

export class AsyncFunctionsStack extends cdk.Stack {
	constructor(scope: Construct, id: string, props?: cdk.StackProps) {
		super(scope, id, props);

		/* Lambda function that recieves messages */
		const reciever = new Function(this, 'RecieverFunction', {
			code: Code.fromAsset(path.join(__dirname, '../functions')),
			runtime: Runtime.NODEJS_16_X,
			handler: 'reciever.handler',
		});

		/* DLQ Queue */
		const dlqQueue = new Queue(this, 'MyDLQQueue');

		/* Lambda function that sends messages */
		const sender = new Function(this, 'SenderFunction', {
			code: Code.fromAsset(path.join(__dirname, '../functions')),
			runtime: Runtime.NODEJS_16_X,
			handler: 'senderDestination.handler',
			retryAttempts: 0,
			onSuccess: new LambdaDestination(reciever),
			onFailure: new SqsDestination(dlqQueue),
		});

		/* Cloudformation outputs */
		new CfnOutput(this, 'SenderFunctionName', {
			value: sender.functionName,
			description: 'SenderFunctionName function name',
		});
	}
}

Download

git clone https://github.com/aws-samples/serverless-patterns
cd serverless-patterns/lambda-destinations-cdk

Pattern repository

View on GitHub

Last updated on 26 Dec 2024

Edit this page