IoT rule to SNS topic to SQS queue

IoT Rule with a SNS action, a SNS Topic and a SQS standard Queue subscribed to the SNS topic.

IoTSNSSQS
from constructs import Construct
from aws_cdk import (
    Duration,
    Stack,
    aws_sqs as sqs,
    aws_sns as sns,
    aws_sns_subscriptions as subs,
)
import aws_cdk.aws_iot_alpha as iot
import aws_cdk.aws_iot_actions_alpha as actions

class IotSnsSqsCdkStack(Stack):

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

        queue = sqs.Queue(
            self, "IotSnsSqsCdkQueue",
            visibility_timeout=Duration.seconds(300),
        )

        topic = sns.Topic(
            self, "IotSnsSqsCdkTopic"
        )

        topic.add_subscription(subs.SqsSubscription(queue))

        topic_rule = iot.TopicRule(self, "IotSnsSqsCdkRule",
            sql=iot.IotSql.from_string_as_ver20160323("SELECT * FROM 'device/data'"),
            actions=[
                actions.SnsTopicAction(topic,
                    message_format=actions.SnsActionMessageFormat.JSON
                )
            ]
        )

Download

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

Pattern repository

View on GitHub

Last updated on 26 Dec 2024

Edit this page