DEV Community

swyx
swyx

Posted on • Updated on • Originally published at swyx.io

REST Endpoint + CRUD with AWS Lambda and DynamoDB in 2 minutes

A lightning fast overview of everything you need to know to set up a REST endpoint with full CRUD capability with AWS Lambda, DynamoDB and AWS Amplify in 2 minutes.

Dev.to embed:

Top comments (3)

Collapse
 
dengel29 profile image
Dan

Is Amplify your recommended way of setting up Lambdas? I’ve found the AWS and SAM CLI to be a little painful, ended up going with Serverless Framework. Seems like what you’re doing here automates so much of the configuration, which is what I get out of Serverless Framework

Collapse
 
swyx profile image
swyx

it's the way I know best, so yes. I'd say AWS CDK is also a really easy way, that requires just a little bit more code. Serverless is more established, but third party. honestly between Amplify, CDK, and Serverless you have no bad choices here.

Collapse
 
dengel29 profile image
Dan

Late response but thanks for the reply!