Skip to content

asteele1493/serverless-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Lab 18: AWS API Gateway, Dynamo, and Lambda

Overview: Create a serverless REST API

Feature Tasks & Requirements

Create a single resource REST API using a domain model of your choosing, constructed using AWS Cloud Services.

  • Database: DynamoDB
    • 1 Table required.
  • Routing: API Gateway
    • POST
    • /people - Given a JSON body, inserts a record into the database.
    • returns an object representing one record, by its id (##).
    • GET
      • /people - returns an array of objects representing the records in the database.
      • /people/## - returns an object representing one record, by its id (##).
    • PUT
      • /people/## - Given a JSON body and an ID (##), updates a record in the database.
      • returns an object representing one record, by its id (##).
      • DELETE
      • /people/## - Given an id (##) removes the matching record from the database.
      • returns an empty object.
  • CRUD Operation Handlers: Lambda Functions

Whiteboard

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published