Type Alias Schedule

Schedule:
    | string
    | {
        cron?: Crondef;
        endDateTime?: string;
        interval?: string;
        recurrence?: string;
        startDateTime?: string;
        timezone?: string;
    } & unknown

Type declaration

  • string
  • {
        cron?: Crondef;
        endDateTime?: string;
        interval?: string;
        recurrence?: string;
        startDateTime?: string;
        timezone?: string;
    } & unknown
    • Optionalcron?: Crondef
    • OptionalendDateTime?: string

      Specific date and time (ISO 8601 format) when the workflow instance should be terminated

    • Optionalinterval?: string

      Time interval (must be repeating interval) described with ISO 8601 format. Declares when workflow instances will be automatically created.

    • Optionalrecurrence?: string

      The RRULE recurrence string for chronos job

    • OptionalstartDateTime?: string

      Specific date and time (ISO 8601 format) when the workflow instance should be created

    • Optionaltimezone?: string

      Timezone name used to evaluate the interval & cron-expression. (default: UTC)