Interface DeploymentCircuitBreaker

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

@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)", date="2023-05-31T18:44:18.917Z") @Stability(Stable) public interface DeploymentCircuitBreaker extends software.amazon.jsii.JsiiSerializable
The deployment circuit breaker to use for the service.

Example:

 Cluster cluster;
 TaskDefinition taskDefinition;
 FargateService service = FargateService.Builder.create(this, "Service")
         .cluster(cluster)
         .taskDefinition(taskDefinition)
         .circuitBreaker(DeploymentCircuitBreaker.builder().rollback(true).build())
         .build();