Values.CreateScheduleRequestSourceCreates a new schedule for one or more DataBrew jobs. Jobs can be run at a specific date and time, or at regular intervals.
type nonrec t = {jobNames : JobNameList.t option;The name or names of one or more jobs to be run.
*)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;A unique name for the schedule. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period (.), and space.
*)}val make :
?jobNames:??? ->
?tags:??? ->
cronExpression:CronExpression.t ->
name:ScheduleName.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `List of [> `String of JobName.t ] list
| `Map of
([> `String of TagKey.t ] * [> `String of TagValue.t ]) list
| `String of CronExpression.t ])
list ]