Skip to main content

ScheduledAttributes

Attributes related to a scheduled trigger

Properties

NameTypeDescriptionNotes
cron_stringstrA valid CRON expression[optional]
frequencyEnum [ 'daily', 'weekly', 'monthly', 'yearly', 'cronSchedule' ]Frequency of execution[required]
time_zonestrTime zone identifier[optional]
weekly_days[]strScheduled days of the week for execution[optional]
weekly_times[]strScheduled execution times[optional]
yearly_times[]strScheduled execution times[optional]
}

Example

from sailpoint.v2024.models.scheduled_attributes import ScheduledAttributes

scheduled_attributes = ScheduledAttributes(
cron_string='0 9 * * 1',
frequency='daily',
time_zone='America/Chicago',
weekly_days=Monday,
weekly_times=Monday,
yearly_times=1969-12-31T09:00:00.000Z
)

[Back to top]