schedule

@JvmName(name = "ahnoikhnyvkjincu")
suspend fun schedule(value: Output<String>)
@JvmName(name = "qllbasoyfutggtka")
suspend fun schedule(value: String)

Parameters

value

The schedule for this action. The following formats are supported:

  • At expressions - "`at(yyyy-mm-ddThh:mm:ss)`"

  • Rate expressions - "`rate(value unit)`"

  • Cron expressions - "`cron(fields)`" At expressions are useful for one-time schedules. Cron expressions are useful for scheduled actions that run periodically at a specified date and time, and rate expressions are useful for scheduled actions that run at a regular interval. At and cron expressions use Universal Coordinated Time (UTC) by default. The cron format consists of six fields separated by white spaces: Hours Month Year. For rate expressions, value is a positive integer and unit is `minute` | `minutes` | `hour` | `hours` | `day` | `days`.