Create Schedule
gluedatabrew_create_schedule | R Documentation |
Creates a new schedule for one or more DataBrew jobs¶
Description¶
Creates a new schedule for one or more DataBrew jobs. Jobs can be run at a specific date and time, or at regular intervals.
Usage¶
gluedatabrew_create_schedule(JobNames, CronExpression, Tags, Name)
Arguments¶
JobNames |
The name or names of one or more jobs to be run. |
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. |
Tags |
Metadata tags to apply to this schedule. |
Name |
[required] A unique name for the schedule. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period (.), and space. |
Value¶
A list with the following syntax:
list(
Name = "string"
)
Request syntax¶
svc$create_schedule(
JobNames = list(
"string"
),
CronExpression = "string",
Tags = list(
"string"
),
Name = "string"
)