Interface DeploymentCircuitBreaker

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

@Generated(value="jsii-pacmak/1.130.0 (build 048a5ee)", date="2026-05-21T17:27:35.856Z") @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();