| CronExpressionGenerator | R Documentation |
Generates cron expression strings for the SageMaker Model Monitoring Schedule API.
hourly()Generates hourly cron expression that denotes that a job runs at the top of every hour.
CronExpressionGenerator$hourly()
str: The cron expression format accepted by the Amazon SageMaker Model Monitoring Schedule API.
daily()Generates daily cron expression that denotes that a job runs at the top of every hour.
CronExpressionGenerator$daily(hour = 0L)
hour(int): The hour in HH24 format (UTC) to run the job at, on a daily schedule.
str: The cron expression format accepted by the Amazon SageMaker Model Monitoring Schedule API.
daily_every_x_hours()Generates "daily every x hours" cron expression. That denotes that a job runs every day at the specified hour, and then every x hours, as specified in hour_interval.
CronExpressionGenerator$daily_every_x_hours(hour_interval, starting_hour = 0L)
hour_interval(int): The hour interval to run the job at.
starting_hour(int): The hour at which to begin in HH24 format (UTC).
str: The cron expression format accepted by the Amazon SageMaker Model Monitoring Schedule API.
format()format class
CronExpressionGenerator$format()
clone()The objects of this class are cloneable with this method.
CronExpressionGenerator$clone(deep = FALSE)
deepWhether to make a deep clone.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.