Module Values.IoTJobExponentialRolloutRateSource

Contains information about an exponential rollout rate for a configuration deployment job.

Sourcetype nonrec t = {
  1. baseRatePerMinute : IoTJobRolloutBaseRatePerMinute.t;
    (*

    The minimum number of devices that receive a pending job notification, per minute, when the job starts. This parameter defines the initial rollout rate of the job.

    *)
  2. incrementFactor : IoTJobRolloutIncrementFactor.t;
    (*

    The exponential factor to increase the rollout rate for the job. This parameter supports up to one digit after the decimal (for example, you can specify 1.5, but not 1.55).

    *)
  3. rateIncreaseCriteria : IoTJobRateIncreaseCriteria.t;
    (*

    The criteria to increase the rollout rate for the job.

    *)
}
Sourceval context_ : string
Sourceval make : baseRatePerMinute:IoTJobRolloutBaseRatePerMinute.t -> incrementFactor:IoTJobRolloutIncrementFactor.t -> rateIncreaseCriteria:IoTJobRateIncreaseCriteria.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of IoTJobRolloutIncrementFactor.t | `Integer of IoTJobRolloutBaseRatePerMinute.t | `Structure of (string * [> `Integer of IoTJobNumberOfThings.t ]) 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