Posts

Showing posts with the label lambda authorizer

CRUD REST API implementation using Amazon API Gateway, AWS Lambda and Amazon DynamoDB

Image
  In case you are thinking how to create a serverless CRUD application and expose the same to your external world, then follow the below steps, you will find a detailed understanding of it I believe. Serverless CRUD REST API Implementation First and the foremost thing is that you need to have an AWS account. In case you are new, you can create a free account  https://aws.amazon.com/free  where you will receive a lot of free tier resources to play around and have the feeling of cloud. For the past few years, Serverless Computing is a hot topic. But what is it? It is basically a cloud computing execution model in which the cloud provider is in charge of creating machine resources on demand and taking care of the servers on behalf of their customers. The customers responsibility is to provide the code. AWS Lambda service provides this feature of serverless computing. Here, we are going to use these services — Amazon API Gateway, AWS Lambda and Amazon DynamoDB. I have conside...