Values_0.ScheduleSourceA scheduling object using a cron statement to schedule an event.
type nonrec t = {scheduleExpression : CronExpression.t option;A cron expression used to specify the schedule (see Time-Based Schedules for Jobs and Crawlers. For example, to run something every day at 12:15 UTC, you would specify: cron(15 12 * * ? *).
*)state : ScheduleState.t option;The state of the schedule.
*)}val to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of CronExpression.t ]) list ]