navigation

Book store - Serverless Book store Intro - Writing first functions

Overview

This is a series about Serverless. AWS provides technologies for running code, managing data, and integrating applications, all without managing servers. Those technologies serve users to create applications under the Serverless model. Serverless applications start with AWS Lambda, save data with DynamoDB, receive user requests with API Gateway, host static web with S3/AWS Amplify Console, ….

Example of a web application using the Serverless model with the cloud:

SeverlessExample

In the first post of this series, we’ll learn the basics of Serverless and practice creating functions with Lambda that are triggered from S3 and write data to a DynamoDB table.

Content

  1. Introduce
  2. Create Lambda function to resize images
  3. Create Lambda function to write data to DynamoDB