This pattern creates an Amazon API Gateway REST API and Amazon Eventbridge with CDK in Python.
#!/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()
git clone https://github.com/aws-samples/serverless-patterns
cd serverless-patterns/apigw-rest-api-eventbridge-cdk