Module Values.DaemonCircuitBreakerSource

Information about the circuit breaker used to determine when a daemon deployment has failed.

Sourcetype nonrec t = {
  1. failureCount : Integer.t option;
    (*

    The number of times the circuit breaker detected a daemon deployment failure.

    *)
  2. status : DaemonDeploymentRollbackMonitorsStatus.t option;
    (*

    The circuit breaker status. Amazon ECS is not using the circuit breaker for daemon deployment failures when the status is DISABLED.

    *)
  3. threshold : Integer.t option;
    (*

    The threshold which determines that the daemon deployment failed.

    *)
}
Sourceval make : ?failureCount:??? -> ?status:??? -> ?threshold:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.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