This document provides a comprehensive investigation into the modern serverless ecosystem on AWS for building full applications in 2026. A major paradigm shift occurred in June 2026 with the launch of CloudFormation Express Mode, which eliminates the primary criticism of CloudFormation-based tools (slow deployments) and fundamentally changes the IaC landscape.
What changed: CloudFormation Express mode completes stack operations as soon as resource configuration is applied — without waiting for full stabilization — reducing deployment times by up to 4x.
Why it matters: The #1 reason teams adopted SST v3/Pulumi/Terraform over CDK/SAM was CloudFormation's slow deployment speed. Express mode eliminates this gap, making the entire CloudFormation ecosystem (CDK, SAM, native CFN) competitive on speed.
| Scenario | Standard Mode | Express Mode |
|---|---|---|
| SQS queue + DLQ | 64 seconds | ~10 seconds |
| Lambda delete (with ENI) | 20-30 minutes | ~10 seconds |
| CloudFront distribution | 5-10 minutes | Sub-minute |
| VPC + Subnets + ALB | Minutes | Seconds (get ARN/DNS immediately) |
# CLI
aws cloudformation create-stack \
--stack-name my-app \
--template-body file://template.yaml \
--deployment-config '{"mode": "EXPRESS"}'
# CDK
cdk deploy --express
# SAM
sam deploy --express
sam sync --express