NOW LET US – AI RAG SaaS Studio TP.HCM
NOW LET US
Digital Product Studio
Back to news
CLOUD-INFRA...3 min read

Accelerate your infrastructure deployments by up to 4x with AWS CloudFormation Express mode

Share
NOW LET US Article – Accelerate your infrastructure deployments by up to 4x with AWS CloudFormation Express mode

AWS has announced CloudFormation Express mode, a new deployment option that speeds up infrastructure provisioning by up to 4x by bypassing extended stabilization checks. This mode is ideal for iterative development and AI-assisted workflows where rapid feedback is crucial.

Accelerate your infrastructure deployments by up to 4x with AWS CloudFormation Express mode

Today, we’re announcing AWS CloudFormation Express mode, a new deployment mode that accelerates deployments for developers and AI tools iterating on infrastructure. Express mode accelerates deployments by completing when CloudFormation confirms resource configuration is applied, rather than waiting for extended stabilization checks. This reduces deployment time by up to 4 times for iterative development workflows and production scenarios.

How it works

Every CloudFormation deployment performs stabilization checks after resource configuration is applied. These checks serve an important purpose when you need to confirm resources can serve traffic before shifting load.

However, many workflows do not require full stabilization to proceed. Express mode benefits two primary use cases: iterative development workflows and production scenarios where you are comfortable with eventual stabilization. These use cases include iterating on infrastructure configurations during development, testing individual components of your application, and AI-assisted infrastructure development that benefits from sub-minute feedback loops.

With Express mode, CloudFormation completes deployments when resource configuration is applied, without waiting for stabilization checks. Resources continue becoming operational in the background. CloudFormation automatically retries dependent resources that encounter transient failures during provisioning within the same stack, without requiring any customer intervention. This built-in resilience handles timing issues between resources as they stabilize. Express mode changes when the deployment completes, not how resources are provisioned.

For example, when I create an Amazon Simple Queue Service (SQS) queue with a dead letter queue (DLQ), Standard mode takes 64 seconds, but Express mode completes in up to 10 seconds. In the case of deleting an AWS Lambda function with network interface attachment, Standard mode takes 20–30 minutes, but Express mode completes in up to 10 seconds based on my benchmarking test.

Get started with CloudFormation Express mode

When you create a CloudFormation stack in the AWS Management Console, choose Enable in the Express mode under Stack deployment options.

You can also use AWS Command Line Interface (AWS CLI), AWS SDKs, or IaC tools like AWS Cloud Development Kit (CDK), and AI tools such as Kiro.

Activate Express mode by setting the --deployment-config parameter to EXPRESS when creating, updating, or deleting stacks. No template changes are required. Express mode disables rollback by default for the fastest iteration experience. To re-enable rollback, set disableRollback to false in the deployment-config for production environments, or implement monitoring/cleanup mechanisms for failed deployments.

aws cloudformation create-stack \
--stack-name my-app \
--template-body file://template.yaml \
--deployment-config '{"mode": "EXPRESS", "disableRollback": true}' \

For example, use the Express mode when you build infrastructure incrementally, adding resources one at a time. Ensure your IAM role templates follow the principle of least privilege.

# Iteration 1: Deploy IAM role
aws cloudformation create-stack \
--stack-name my-microservice \
--template-body file://iteration1-iam.yaml \
--deployment-config '{"mode": "EXPRESS"}' \
--capabilities CAPABILITY_IAM
--role-arn arn:aws:iam::123456789012:role/CloudFormationDeployRole
# Iteration 2: Add Lambda function
aws cloudformation update-stack \
--stack-name my-microservice \
--template-body file://iteration2-lambda.yaml \
--deployment-config '{"mode": "EXPRESS"}' \
--capabilities CAPABILITY_IAM
--role-arn arn:aws:iam::123456789012:role/CloudFormationDeployRole
# Iteration 3: Add SQS queue and event source mapping
aws cloudformation update-stack \
--stack-name my-microservice \
--template-body file://iteration3-sqs.yaml \
--deployment-config '{"mode": "EXPRESS"}' \
--capabilities CAPABILITY_IAM
--role-arn arn:aws:iam::123456789012:role/CloudFormationDeployRole

For AWS CDK, activate Express mode with the cdk deploy --express command when you deploy your CDK stack. This command retrieves your generated CloudFormation template and deploys it through the CloudFormation Express mode, which provisions your resources as part of a CloudFormation stack.

Express mode works with all existing CloudFormation templates and supports all CloudFormation features including change sets and nested stacks. When you enable Express mode on a parent stack, all nested stacks also use Express mode. If you need resources to be fully operational before proceeding with traffic or testing, continue using the default deployment behavior, which performs stabilization checks before completing.

Now available

AWS CloudFormation Express mode is available today in all AWS commercial Regions at no additional cost. For Regional availability and a future roadmap, visit the AWS Capabilities by Region. If you want to call APIs, search documentation, find regional availability, and check troubleshooting about this new feature, try using the AWS MCP Server and plugins with your preferred AI tool. To learn more, visit the CloudFormation documentation.

Start accelerating your deployments today, and send feedback to AWS re:Post for AWS CloudFormation or through your usual AWS Support contacts.

— Channy

© 2026 Now Let Us. All rights reserved.

Source: AWS News Blog

Advertisement
Ad slot ready: 5887729102

More in this category

NOW LET US Related – Run isolated sandboxes with full lifecycle control: AWS Lambda introduces MicroVMs

cloud-infra

Run isolated sandboxes with full lifecycle control: AWS Lambda introduces MicroVMs

AWS has announced AWS Lambda MicroVMs, a new serverless compute primitive that allows developers to run user- or AI-generated code in isolated, stateful environments with virtual machine-level security and near-instant startup times.

NOW LET US Related – AWS Weekly Roundup: NY Summit recap, Local Zone in Hanoi, Grok 4.3 in Bedrock, price reductions, and more (June 22, 2026)

cloud-infra

AWS Weekly Roundup: NY Summit recap, Local Zone in Hanoi, Grok 4.3 in Bedrock, price reductions, and more (June 22, 2026)

AWS Weekly Roundup highlights the launch of a new Local Zone in Hanoi, the integration of xAI's Grok 4.3 into Amazon Bedrock, major Agentic AI announcements from the NY Summit, and significant price reductions.

NOW LET US Related – Amazon ECS introduces new high-resolution metrics for faster service auto scaling

cloud-infra

Amazon ECS introduces new high-resolution metrics for faster service auto scaling

Amazon ECS now supports high-resolution (20-second) metrics for service auto scaling, reducing scale-out trigger times by up to 76%. This update helps applications respond faster to traffic spikes while optimizing compute costs.

NOW LET US Related – Top announcements of the AWS Summit in New York, 2026

cloud-infra

Top announcements of the AWS Summit in New York, 2026

At the AWS Summit in New York 2026, AWS unveiled major updates focused on Agentic AI, including Amazon Bedrock AgentCore enhancements, AWS Continuum for automated security, and EC2 G7 instances powered by NVIDIA Blackwell GPUs.

NOW LET US Related – Introducing Amazon Bedrock Managed Knowledge Base for faster, more accurate enterprise AI applications

cloud-infra

Introducing Amazon Bedrock Managed Knowledge Base for faster, more accurate enterprise AI applications

Amazon has announced Bedrock Managed Knowledge Base, a new capability that simplifies the creation of enterprise-grade generative AI applications by automating RAG pipelines. It features native data connectors, Smart Parsing, and an Agentic Retriever to deliver faster, more accurate results.

NOW LET US Related – Announcing Web Search on Amazon Bedrock AgentCore: Ground your AI agents in current, accurate web knowledge

cloud-infra

Announcing Web Search on Amazon Bedrock AgentCore: Ground your AI agents in current, accurate web knowledge

AWS has announced the general availability of Web Search on Amazon Bedrock AgentCore, a fully managed tool that enables AI agents to ground responses in current, cited web knowledge with zero data egress from the customer's secured AWS environment.

EXPLORE TOPICS

Discover All Categories

Deep dive into the specific technology sectors that matter most to you.