Ship AWS Infrastructure Up to 4x Faster: CloudFormation Express Mode Is Here (and We're Thrilled)
By Kyle Jones
Anyone who has worked with us knows we're unapologetic AWS CDK fans. It's how we build nearly everything we deliver — landing zones, migration scaffolding, IoT backends, data pipelines. Infrastructure as real code, in a real programming language, with real abstractions. So when AWS shipped two upgrades to the CloudFormation/CDK deployment engine at the end of June, we took notice. Together they attack the single biggest complaint anyone has about infrastructure-as-code on AWS: the waiting.

What changed

1. Express mode — deployments up to 4x faster. Historically, every CloudFormation deployment waited for full resource stabilization before reporting success — even when your workflow didn't need it. The classic offender: create a CloudFront distribution and CloudFormation sits there for 5–10 minutes while it propagates to every edge location, even if all you needed was the distribution's domain name to keep working. Express mode flips that model. The stack operation completes as soon as AWS confirms your resource configuration is applied; the long-tail stabilization (traffic readiness, region propagation, cleanup) continues in the background. AWS's own examples are striking: an SQS queue deployment drops from 64 seconds to about 10, and some Lambda deletions go from 20–30 minutes to 10 seconds. Dependency ordering is preserved, transient failures on dependent resources are retried automatically, and it works with every existing template and nested stack — no rewrites. For CDK users it's one flag: cdk deploy --express.
2. Pre-deployment validation on every stack operation. CloudFormation now validates Create and Update operations before provisioning begins, surfacing common, preventable errors in seconds. If you've ever waited through a 20-minute provision-and-rollback cycle just to learn about a typo'd parameter, you know exactly how much time this returns to your day.
Why this matters to your business (not just your engineers)
The feedback loop is the heartbeat of any cloud project. When a deploy-test-fix cycle takes 30 minutes, engineers batch changes, context-switch, and momentum dies. When it takes seconds, infrastructure development starts to feel like software development — which is the entire promise of CDK. On migration and modernization engagements, we run hundreds of deployment iterations building out landing zones, network topology, and application stacks. Cutting cycle time by 4x doesn't shave a percentage off a project — it changes how many ideas your team can try in a week.
There's a second-order effect worth watching: AWS explicitly built Express mode for AI agents building infrastructure. As AI-assisted engineering becomes standard practice — something we lean into heavily at Fastwater Cloud — fast, machine-readable feedback loops are what let AI tooling iterate safely and productively. AWS just tuned its deployment engine for that future.
The fine print (because we actually use this stuff)
Express mode disables automatic rollback by default. That's a feature in development — fix and retry immediately instead of waiting out a rollback — but it means production pipelines deserve deliberate configuration. Our take: run Express mode in dev and test environments today, keep full-stabilization deployments for production releases where you want CloudFormation to verify traffic readiness end-to-end, and let pre-deployment validation (which applies everywhere) catch the preventable failures in both. Both capabilities are available now in all commercial AWS Regions at no additional cost.
Put this to work
If your team is still hand-rolling infrastructure — or fighting a slow, brittle deployment pipeline — this is an ideal moment to modernize. Fastwater Cloud.AI designs and builds CDK-based infrastructure with pipelines tuned for exactly these workflows, from migration landing zones to IoT platforms. Schedule a consultation and we'll show you what a fast feedback loop feels like.
Sources: AWS What's New — "AWS CloudFormation and CDK express mode speeds up infrastructure deployments by up to 4x" (Jun 30, 2026); AWS News Blog — "Accelerate your infrastructure deployments by up to 4x with AWS CloudFormation Express mode"; AWS What's New — "AWS CloudFormation and CDK accelerate development feedback loops with pre-deployment validation on all stack operations" (Jun 30, 2026).