ysc0423 /
basic-aws-apigateway
Basic AWS API Gateway set up using AWS SAM template
35/100 healthLoading repository data…
dan-mba / repository
AWS SAM template and Lambda code for a skills API
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
An API to store skills & ratings for multiple users in a DynamoDB table. All routes are protected by Cognito & require the JWT in the Authorization header The username from the JWT is stored with each item in the table
rating: Integer (1-5) representing expertise level skill: String representing a specific skill
GET /Skills - Get all skills GET /Skills/{rating} = Get skill with specified rating
POST /Skills - Add skill
body: {
"rating": "rating Integer",
"skill": "skill String"
}
PUT /Skills - Update skill rating
body: {
"oldrating": "current rating Integer",
"newrating": "new rating Integer",
"skill": "skill String"
}
DELETE /Skills/{rating}/{skill} - Delete selected skill
DELETE /Skills/ALL_SKILLS - Delete all skills
See the AWS SAM developer guide for an introduction to SAM specification, the SAM CLI, and serverless application concepts.
Next, you can use AWS Serverless Application Repository to deploy ready to use Apps that go beyond hello world samples and learn how authors developed their applications: AWS Serverless Application Repository main page
Selected from shared topics, language and repository description—not editorial ratings.
ysc0423 /
Basic AWS API Gateway set up using AWS SAM template
35/100 health