Values.UpdateScheduleRequestSourceModifies the definition of an existing DataBrew schedule.
type nonrec t = {jobNames : JobNameList.t option;The name or names of one or more jobs to be run for this schedule.
*)cronExpression : CronExpression.t;The date or dates and time or times when the jobs are to be run. For more information, see Cron expressions in the Glue DataBrew Developer Guide.
*)name : ScheduleName.t;The name of the schedule to update.
*)}val make :
?jobNames:??? ->
cronExpression:CronExpression.t ->
name:ScheduleName.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `List of [> `String of JobName.t ] list
| `String of CronExpression.t ])
list ]