Module Values.IoTJobRateIncreaseCriteriaSource

Contains information about criteria to meet before a job increases its rollout rate. Specify either numberOfNotifiedThings or numberOfSucceededThings.

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

    The number of devices to receive the job notification before the rollout rate increases.

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

    The number of devices to successfully run the configuration job before the rollout rate increases.

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