Update Schedule
gluedatabrew_update_schedule | R Documentation |
Modifies the definition of an existing DataBrew schedule¶
Description¶
Modifies the definition of an existing DataBrew schedule.
Usage¶
gluedatabrew_update_schedule(JobNames, CronExpression, Name)
Arguments¶
JobNames |
The name or names of one or more jobs to be run for this schedule. |
CronExpression |
[required] 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 |
[required] The name of the schedule to update. |
Value¶
A list with the following syntax:
list(
Name = "string"
)
Request syntax¶
svc$update_schedule(
JobNames = list(
"string"
),
CronExpression = "string",
Name = "string"
)