INPUT_OBJECT

SpringPolicyExecutionScheduleInput

execution schedule expressed in cron

link GraphQL Schema definition

  • input SpringPolicyExecutionScheduleInput {
  • # Cron expression in "tz sec min hour dom m dow" format plus last-day-of-month
  • # support ('L')
  • # examples
  • # "CRON_TZ=Asia/Kolkata 11 5 0 * * *", "At 00:05:11 in every month, in Asia
  • # timezone",
  • # "CRON_TZ=GMT 11 5 0 * * *", "At 00:05:11 in every month, in GMT timezone",
  • # "CRON_TZ=UTC 25 15 14 1 * *", "At 14:15:25 on day-of-month 1",
  • # "CRON_TZ=UTC 59 0 22 * * 1-5", "At 22:00:59 on every day-of-week from Monday
  • # through Friday",
  • # "TZ=UTC 15 5 4 * * sun", "At 04:05:15 on Sunday",
  • cronExpression: String
  • # Schedule for policy execution on a schedule basis.
  • schedule: SpringPolicyScheduleInput
  • }