Search⌘ K
AI Features

Simple Serverless API

Explore how to build a basic serverless API by integrating AWS API Gateway with DynamoDB. Understand how to add dynamic content with a request counter and deploy your API using CloudFormation templates.

Adding a database

A database is an essential component of any application. This lesson continues the “Hello World” application and adds a database.

DynamoDB is the scalable serverless NoSQL database provided by AWS. If used properly, it gives a single-digit milliseconds latency in terabytes of data.

Request counter

Let’s extend the example to include a ...