Amazon API Gateway REST API to Amazon EventBridge

This pattern creates an Amazon API Gateway REST API and Amazon Eventbridge with CDK in Python.

Amazon API GatewayAmazon EventBridge
#!/usr/bin/env python3
import os

from apigw_rest_eventbridge import ApigwRestEventBridgeStack
import aws_cdk as cdk

app = cdk.App()
ApigwRestEventBridgeStack(app, "ApigwRestEventBridgeStack")

app.synth()

Download

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

Pattern repository

View on GitHub

Last updated on 26 Dec 2024

Edit this page