Module Values.IoTJobExecutionsRolloutConfigSource

Contains information about the rollout configuration for a job. This configuration defines the rate at which the job deploys a configuration to a fleet of target devices.

Sourcetype nonrec t = {
  1. exponentialRate : IoTJobExponentialRolloutRate.t option;
    (*

    The exponential rate to increase the job rollout rate.

    *)
  2. maximumPerMinute : IoTJobMaxExecutionsPerMin.t option;
    (*

    The maximum number of devices that receive a pending job notification, per minute.

    *)
}
Sourceval make : ?exponentialRate:??? -> ?maximumPerMinute:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of IoTJobMaxExecutionsPerMin.t | `Structure of (string * [> `Double of IoTJobRolloutIncrementFactor.t | `Integer of IoTJobRolloutBaseRatePerMinute.t | `Structure of (string * [> `Integer of IoTJobNumberOfThings.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