You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
automatically rolls back unhealthy service deployments without the need for manual intervention. Use `circuitBreaker` to enable
401
+
deployment circuit breaker and optionally enable `rollback` for automatic rollback. See [Using the deployment circuit breaker](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-type-ecs.html)
402
+
for more details.
403
+
404
+
```ts
405
+
const service =newApplicationLoadBalancedFargateService(stack, 'Service', {
### Set deployment configuration on QueueProcessingService
399
421
@@ -469,7 +491,7 @@ const scheduledFargateTask = new ScheduledFargateTask(stack, 'ScheduledFargateTa
469
491
470
492
### Use the REMOVE_DEFAULT_DESIRED_COUNT feature flag
471
493
472
-
The REMOVE_DEFAULT_DESIRED_COUNT feature flag is used to override the default desiredCount that is autogenerated by the CDK. This will set the desiredCount of any service created by any of the following constructs to be undefined.
494
+
The REMOVE_DEFAULT_DESIRED_COUNT feature flag is used to override the default desiredCount that is autogenerated by the CDK. This will set the desiredCount of any service created by any of the following constructs to be undefined.
0 commit comments