Contents
1
Why Rust for Serverless?
Hmmmmm...
April 12, 2026
2
Installation
Setting up the Rust toolchain and AWS SAM for serverless development.
April 12, 2026
3
Bootstrap Rust Template
How to create a new Rust project using AWS SAM
April 12, 2026
4
Organize Files Structure
How to structure your Rust serverless project for real-world use.
April 13, 2026
5
Updating Configuration Files
We just moved everything around. Now we need to tell our tools where those files went.
April 16, 2026
6
Writing Your First Lambda Handler
Time to actually write some Rust code that runs on Lambda.
April 17, 2026
7
Adding Lambda to template.yaml
Your code exists, but AWS doesn't know about it yet. Let's fix that.
April 18, 2026
8
Connecting Lambda to API Gateway
The Lambda exists, the routes exist, but they don't talk to each other yet.
April 19, 2026
9
Building and Deploying
Time to see your code live in the cloud.
April 20, 2026
10
Path Parameters and Query Strings
Making your API dynamic by reading input from the URL.
April 21, 2026