Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

MonthlySchedule

import type { MonthlySchedule } from "https://googleapis.deno.dev/v1/osconfig:v1.ts";

Represents a monthly schedule. An example of a valid monthly schedule is "on the third Tuesday of the month" or "on the 15th of the month".

interface MonthlySchedule {
monthDay?: number;
weekDayOfMonth?: WeekDayOfMonth;
}

§Properties

§
monthDay?: number
[src]

Required. One day of the month. 1-31 indicates the 1st to the 31st day. -1 indicates the last day of the month. Months without the target day will be skipped. For example, a schedule to run "every month on the 31st" will not run in February, April, June, etc.

§
weekDayOfMonth?: WeekDayOfMonth
[src]

Required. Week day in a month.