Skip to content

ElizabethViolin/serverless_API

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

serverless-API

Mini-project: Built a Serverless API with AWS Lambda, API Gateway, and DynamoDB

image

How it works:

  1. An HTTP request is made to your API Gateway endpoint.
  2. API Gateway routes the request to the appropriate Lambda function based on the HTTP method and resource path.
  3. The Lambda function performs the required CRUD operation by interacting with the DynamoDB table.
  4. If it's a read operation, the Lambda function retrieves data from DynamoDB and returns it as an HTTP response. If it's a create, update, or delete operation, the Lambda function interacts with DynamoDB to modify the data, and a success or error response is returned to the client.

Conclusion:

This setup allows you to build scalable and cost-effective serverless APIs while offloading most of the infrastructure management to AWS.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages