AWS Lambda, DynamoDB & API Gateway Integration
This project demonstrates building a fully serverless contact form using AWS Lambda to handle submissions, API Gateway as the interface, and DynamoDB for storage. Ideal for static sites and scalable solutions.
Create a responsive frontend form with fields like Name, Email, and Message using HTML/CSS.
Setup a REST API in API Gateway to receive form data via POST requests from the frontend.
Develop an AWS Lambda function (Python/Node.js) that parses form data and saves it in DynamoDB.
Create a DynamoDB table with the necessary primary key (like email or timestamp).
Test the complete flow by submitting the form and verifying the data is saved in DynamoDB.