cdkbase
← All posts

The Best AWS Services for a Serverless SaaS in 2026

8 min readAWSServerlessArchitectureServices

AWS has hundreds of services; a SaaS needs maybe a dozen. The trick in 2026 is picking the ones that are serverless, scale to zero, and stay out of your way — so you pay for usage, not capacity, and run almost nothing yourself. Here’s the short list we actually build on, what each is for, and why it makes the cut.

What makes a service a good 2026 pick

Three filters decide it. Serverless — no instances to size or patch. Scales to zero — idle costs nothing, so environments are cheap to keep around. First-party and managed — AWS runs it, so reliability and updates aren’t your problem. Every service below clears all three (or is a thin, unavoidable piece like DNS). It’s also, not coincidentally, the exact stack the cdkbase template deploys.

Compute

API and delivery

Data

Identity

DNS and TLS

Storage

Config, secrets, and permissions

Infrastructure as code

The services to avoid (in a serverless SaaS)

Just as important is what’s not on the list. The fastest way to wreck serverless economics is to add an always-on service that bills 24/7 whether or not it’s used:

Avoiding these is exactly why an idle environment costs about fifty cents — the full math is in what it costs to run a serverless SaaS.

The bottom line

A dozen well-chosen services — Lambda, API Gateway, CloudFront, Aurora DSQL, DynamoDB, Cognito, Route 53, ACM, S3, SSM, and IAM, all defined in CDK — is a complete, modern SaaS backend that scales from zero to real traffic and bills accordingly. You don’t need the other few hundred services to start; you need these wired together correctly, which is the whole point of starting from the stack.

Skip the wiring and start from a working stack

cdkbase is a fork-ready AWS serverless template that ships everything in this article — CDK infrastructure, Cognito auth, Aurora DSQL, a Hono API, Stripe billing, and web/SPA/mobile frontends — already wired together and built for Claude Code. See pricing or read the getting-started guide.