I need a small proof-of-concept built in my development account that wires a JSON-based API to an existing Amazon SNS topic. The runtime logic can stay light: as long as the endpoint accepts any valid JSON payload and immediately publishes the same payload to the topic, we are good. The project already exists. Code requirements • Python for the lambda/function that handles the request and publishes to SNS. • Terraform js (CDK for Terraform with TypeScript/JavaScript) to provision the API Gateway (or equivalent), attach it to the function, and reference the already-created SNS topic by ARN. Deliverables 1. Python source with clear entry point and minimal dependency list. 2. Terraform js stack that I can run with one command to recreate the infrastructure in a clean dev account. 3. README explaining variables to set (e.g., topic ARN), deploy steps, and a sample curl/postman call showing the JSON payload reaching the topic. 4. Short validation guide so I can test the SNS subscription and confirm the message content. No need to touch staging or production resources yet—this is purely a development setup.