Interface DeploymentCircuitBreaker

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
DeploymentCircuitBreaker.Jsii$Proxy

@Generated(value="jsii-pacmak/1.133.0 (build 0f43e37)", date="2026-06-04T12:52:12.239Z") @Stability(Stable) public interface DeploymentCircuitBreaker extends software.amazon.jsii.JsiiSerializable
The deployment circuit breaker to use for the service.

Example:

 Cluster cluster;
 ApplicationLoadBalancedFargateService service = ApplicationLoadBalancedFargateService.Builder.create(this, "Service")
         .cluster(cluster)
         .memoryLimitMiB(1024)
         .desiredCount(1)
         .cpu(512)
         .taskImageOptions(ApplicationLoadBalancedTaskImageOptions.builder()
                 .image(ContainerImage.fromRegistry("amazon/amazon-ecs-sample"))
                 .build())
         .minHealthyPercent(100)
         .circuitBreaker(DeploymentCircuitBreaker.builder().rollback(true).build())
         .build();