API Gateway REST API to Amazon EventBridge to SQS fanout

Routes from Amazon API Gateway REST API to SQS via EventBridge.

API GatewayEventBridgeSQS queueSQS queue
#!/usr/bin/env python3
import os

import aws_cdk as cdk

from apigw_rest_eventbridge_sqs import ApigwRestEventBridgeSQSStack


app = cdk.App()
ApigwRestEventBridgeSQSStack(app, "CdkStack",)

app.synth()

Download

git clone https://github.com/aws-samples/serverless-patterns
cd serverless-patterns/apigw-rest-api-eventbridge-sqs-fanout-cdk

Pattern repository

View on GitHub

Last updated on 26 Dec 2024

Edit this page