Lambda to SQS

Create a Lambda function that publishes to an SQS queue

AWS LambdaSQS
from aws_cdk import (
    Stack,
    Duration,
    aws_iam as _iam,
    aws_lambda as _lambda,
    aws_sqs as _sqs
)
from constructs import Construct

class LambdaSqsCdkStack(Stack):

    def __init__(self, scope: Construct, construct_id: str, **kwargs) -> None:
        super().__init__(scope, construct_id, **kwargs)

        # Create SQS Queue
        queue = _sqs.Queue(
            self, "LambdaToSqsQueue",
            visibility_timeout=Duration.seconds(300),
            queue_name='LambdaToSqsQueue')

        # Create Lambda function
        lambda_fn = _lambda.Function(
            self, "LambdaFunctionToSqs",
            runtime=_lambda.Runtime.PYTHON_3_9,
            handler="sendSqsMessage.handler",
            code=_lambda.Code.from_asset("lambda_fns"),
        )

        # Grant send message to lambda function
        queue.grant_send_messages(lambda_fn)

Download

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

Pattern repository

View on GitHub

Last updated on 26 Dec 2024

Edit this page