interface ScheduleRecurrenceArgs {
    dayOfMonth?: number;
    dayOfWeek?: DayOfWeek;
    hour?: number;
    minute?: number;
    month?: Month;
}

Properties

dayOfMonth?: number

1 to 31. Leave undefined to indicate no specific value.

dayOfWeek?: DayOfWeek

Day of the week to perform the scheduled action on. Leave undefined to indicate no specific value.

hour?: number

0 to 23. Leave undefined to indicate no specific value. All times UTC

minute?: number

0 to 59. Leave undefined to indicate no specific value.

month?: Month

Month of the year to perform the scheduled action on. Leave undefined to indicate no specific value.

Generated using TypeDoc