Module Values.UpdateScheduleRequestSource

Modifies the definition of an existing DataBrew schedule.

Sourcetype nonrec t = {
  1. jobNames : JobNameList.t option;
    (*

    The name or names of one or more jobs to be run for this schedule.

    *)
  2. 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.

    *)
  3. name : ScheduleName.t;
    (*

    The name of the schedule to update.

    *)
}
Sourceval context_ : string
Sourceval make : ?jobNames:??? -> cronExpression:CronExpression.t -> name:ScheduleName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of JobName.t ] list | `String of CronExpression.t ]) 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