Module Values.DaemonDeploymentConfigurationSource

Optional deployment parameters that control how a daemon rolls out updates across container instances.

Sourcetype nonrec t = {
  1. drainPercent : DaemonDrainPercent.t option;
    (*

    The percentage of container instances to drain simultaneously during a daemon deployment. Valid values are between 0.0 and 100.0.

    *)
  2. alarms : DaemonAlarmConfiguration.t option;
    (*

    The CloudWatch alarm configuration for the daemon deployment. When alarms are triggered during a deployment, the deployment can be automatically rolled back.

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

    The amount of time (in minutes) to wait after a successful deployment step before proceeding. This allows time to monitor for issues before continuing. The default value is 0.

    *)
}
Sourceval make : ?drainPercent:??? -> ?alarms:??? -> ?bakeTimeInMinutes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of DaemonDrainPercent.t | `Integer of Integer.t | `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of String_.t ] list ]) list ]) 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