package awsecs // The deployment circuit breaker to use for the service. // // Example: // var cluster cluster // var taskDefinition taskDefinition // // service := ecs.NewFargateService(this, jsii.String("Service"), &FargateServiceProps{ // Cluster: Cluster, // TaskDefinition: TaskDefinition, // CircuitBreaker: &DeploymentCircuitBreaker{ // Rollback: jsii.Boolean(true), // }, // }) // type DeploymentCircuitBreaker struct { // Whether to enable rollback on deployment failure. Rollback *bool `field:"optional" json:"rollback" yaml:"rollback"` }