Creates a Lambda function that sends a message to a SNS and then another function gets triggered when there is a new notification in the topic.
import * as cdk from 'aws-cdk-lib';
import { Construct } from 'constructs';
import { CfnOutput } from 'aws-cdk-lib';
import { Topic } from 'aws-cdk-lib/aws-sns';
import {
Function,
Runtime,
Code,
HttpMethod,
FunctionUrlAuthType,
} from 'aws-cdk-lib/aws-lambda';
import path = require('path');
import { LambdaSubscription } from 'aws-cdk-lib/aws-sns-subscriptions';
export class LambdaSNSLambdaStack extends cdk.Stack {
constructor(scope: Construct, id: string, props?: cdk.StackProps) {
super(scope, id, props);
const snsTopic = new Topic(this, 'SNSTopic', {
displayName: 'Lambda subscription topic',
});
/* Lambda function that sends messages */
const sender = new Function(this, 'SenderFunction', {
code: Code.fromAsset(path.join(__dirname, '../functions')),
runtime: Runtime.NODEJS_16_X,
handler: 'sender.handler',
environment: {
TOPIC_ARN: snsTopic.topicArn,
},
});
// Give permission to the function to publish messages in the topic
snsTopic.grantPublish(sender);
/* Lambda function that consumes */
const consumer = new Function(this, 'ConsumerFunction', {
code: Code.fromAsset(path.join(__dirname, '../functions')),
runtime: Runtime.NODEJS_16_X,
handler: 'consumer.handler',
});
//Subscribes the consumer lambda to the topic
snsTopic.addSubscription(new LambdaSubscription(consumer));
new CfnOutput(this, 'SenderFunctionName', {
value: sender.functionName,
});
new CfnOutput(this, 'SNSTopicARN', { value: snsTopic.topicArn });
}
}
git clone https://github.com/aws-samples/serverless-patterns
cd serverless-patterns/lambda-sns-lambda-cdk