MonthlyScheduleParameters Object
Description
Parameters for a monthly schedule.
Properties
dayOfMonth
Day of the month to execute.
Type: string
Valid Values:
same-day-as-startindicate-day-and-weeklast-day
Required: Yes
months
Array of months of the year.
Type: Array of string
Possible Values:
januaryfebruarymarchaprilmayjunejulyaugustseptemberoctobernovemberdecember
Required: Yes
weekAndDay
Indicates the week and day to execute.
Type: WeekAndDay object.
Required: Conditional
Sample JSON
{
"dayOfMonth": "indicate-day-and-week",
"months": [
"january",
"july"
],
"weekAndDay": {
"day": "sunday",
"week": "first"
}
}Last updated