Module Values_0.JobExecutionsRolloutConfigSource

Allows you to create a staged rollout of a job.

Sourcetype nonrec t = {
  1. maximumPerMinute : MaxJobExecutionsPerMin.t option;
    (*

    The maximum number of things that will be notified of a pending job, per minute. This parameter allows you to create a staged rollout.

    *)
  2. exponentialRate : ExponentialRolloutRate.t option;
    (*

    The rate of increase for a job rollout. This parameter allows you to define an exponential rate for a job rollout.

    *)
}
Sourceval make : ?maximumPerMinute:??? -> ?exponentialRate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxJobExecutionsPerMin.t | `Structure of (string * [> `Double of IncrementFactor.t | `Integer of RolloutRatePerMinute.t | `Structure of (string * [> `Integer of NumberOfThings.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