Module Values.JobScheduleFrequencySource

Specifies the recurrence pattern for running a classification job.

Sourcetype nonrec t = {
  1. dailySchedule : DailySchedule.t option;
    (*

    Specifies a daily recurrence pattern for running the job.

    *)
  2. monthlySchedule : MonthlySchedule.t option;
    (*

    Specifies a monthly recurrence pattern for running the job.

    *)
  3. weeklySchedule : WeeklySchedule.t option;
    (*

    Specifies a weekly recurrence pattern for running the job.

    *)
}
Sourceval make : ?dailySchedule:??? -> ?monthlySchedule:??? -> ?weeklySchedule:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `Integer of int ]) 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