https://github.com/vonderklaas/serverless-aws-lambda
Here I've created a simple Lambda function with help of Serverless framework, deployed to AWS
https://github.com/vonderklaas/serverless-aws-lambda
aws lambda serverless
Last synced: about 1 year ago
JSON representation
Here I've created a simple Lambda function with help of Serverless framework, deployed to AWS
- Host: GitHub
- URL: https://github.com/vonderklaas/serverless-aws-lambda
- Owner: vonderklaas
- Created: 2022-09-30T13:35:05.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-01T10:48:53.000Z (over 3 years ago)
- Last Synced: 2025-01-07T09:47:45.241Z (about 1 year ago)
- Topics: aws, lambda, serverless
- Language: JavaScript
- Homepage:
- Size: 17.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# serverless-aws-lambda
Here I've created a simple Lambda function with help of Serverless framework, deployed to AWS
# Endpoints:
POST - https://[hash].execute-api.us-east-1.amazonaws.com/dev/
GET - https://[hash].execute-api.us-east-1.amazonaws.com/dev/todos
GET - https://[hash].execute-api.us-east-1.amazonaws.com/dev/todo/{id}
PUT - https://[hash].execute-api.us-east-1.amazonaws.com/dev/todo/{id}
# Functions:
addTodo: my-lambda-function-dev-addTodo
fetchTodos: my-lambda-function-dev-fetchTodos
fetchTodo: my-lambda-function-dev-fetchTodo
updateTodo: my-lambda-function-dev-updateTodo