New featureMedium

AWS CloudFormation and CDK express mode speeds up infrastructure deployments by up to 4x

AWS CloudFormation and CDK now offer an express mode, reducing deployment time by up to 4x. Deployments complete once resource configurations are applied, without waiting for extended stabilization checks like traffic readiness or region propagation.

AWS CloudFormation and CDK have introduced an express mode, which reduces deployment time by up to 4x for developers and AI agents building infrastructure, based on internal benchmarks. Express mode completes stack operations when CloudFormation confirms that resource configuration has been applied, rather than waiting for extended stabilization checks such as traffic readiness, region propagation, and resource cleanup. This enables faster iteration cycles for developers and AI agents building infrastructure. When iterating on infrastructure in development environments, developers and AI agents need faster iteration cycles to build infrastructure incrementally. Previously, every deployment waited for full resource stabilization regardless of whether the workflow required it. For example, creating a CloudFront distribution required waiting 5-10 minutes for propagation to all edge locations before the deployment completed, even when the developer only needed the distribution domain name to continue. With express mode, deployments complete in seconds once configuration is applied, and propagation continues in the background. CloudFormation still processes resources in dependency order and handles dependent resource failures within the same stack. Express mode disables rollback by default, enabling immediate fix-and-retry without waiting for rollback operations. To get started, set --deployment-config '{{"mode": "EXPRESS"}}' when creating, updating, and deleting stacks or creating a change set through the AWS CLI, AWS SDKs, or the AWS Management Console. For AWS CDK users, activate express mode with cdk deploy --express. No template changes are required. Express mode works with all existing CloudFormation templates and nested stacks. This feature is available in all AWS Regions where CloudFormation is supported. Refer to the AWS Region table for service availability details.

Read the original AWS announcement