Module Values.AwsEcsServiceDeploymentConfigurationDeploymentCircuitBreakerDetailsSource

Determines whether a service deployment fails if a service cannot reach a steady state.

Sourcetype nonrec t = {
  1. enable : Boolean.t option;
    (*

    Whether to enable the deployment circuit breaker logic for the service.

    *)
  2. rollback : Boolean.t option;
    (*

    Whether to roll back the service if a service deployment fails. If rollback is enabled, when a service deployment fails, the service is rolled back to the last deployment that completed successfully.

    *)
}
Sourceval make : ?enable:??? -> ?rollback:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t