Module Values_0.RateIncreaseCriteriaSource

Allows you to define a criteria to initiate the increase in rate of rollout for a job.

Sourcetype nonrec t = {
  1. numberOfNotifiedThings : NumberOfThings.t option;
    (*

    The threshold for number of notified things that will initiate the increase in rate of rollout.

    *)
  2. numberOfSucceededThings : NumberOfThings.t option;
    (*

    The threshold for number of succeeded things that will initiate the increase in rate of rollout.

    *)
}
Sourceval make : ?numberOfNotifiedThings:??? -> ?numberOfSucceededThings:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of NumberOfThings.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