Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.

Schedule Input

A schedule on which to execute some type of Analytics asset.

Inherited by DailyScheduleInput, EventBasedScheduleInput, HourlyScheduleInput, MinutelyScheduleInput, MonthlyRelativeScheduleInput, MonthlySpecificScheduleInput, and WeeklyScheduleInput.

Properties
Property Name Type Description Required or Optional Available Version
notification​Level Connect​Email​Notification​Level​Enum Valid types of email notification levels you can set. Valid values are:
  • Always
  • Failures
  • Never
  • Warnings
Small, 42.0 42.0
time Time Input Hour,minute, and timezone in which this schedule is run Required 39.0

The following JSON shows how to create an hourly schedule for an asset.

1{
2    "daysOfWeek" : [
3       "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"
4    ],
5    "lastHour" : 20,
6    "hourlyInterval" : 3,
7    "time" : {
8       "hour" : 2,
9       "minute" : 30,
10       "timeZone" : "America/Los_Angeles"
11    },
12    "frequency" : "hourly"
13}