Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ecs): support for explicit activation of the circuit breaker (#2…
…8611) This PR has enabled explicit disabling of the circuit breaker. ```ts declare const cluster: ecs.Cluster; declare const taskDefinition: ecs.TaskDefinition; const service = new ecs.FargateService(this, 'Service', { cluster, taskDefinition, circuitBreaker: { enable: true, // added rollback: true }, }); ``` This is useful for removing a circuit breaker that has been set previously. Closes #27131. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
- Loading branch information