Values.ScheduleConfigSourceDefines the schedule for a scheduled report, including the cron expression, time zone, active period, and the schedule state.
type nonrec t = {scheduleExpression : GenericString.t option;The schedule expression that specifies when to trigger the scheduled report run. This value must be a cron expression consisting of six fields separated by white spaces: cron(minutes hours day_of_month month day_of_week year).
*)scheduleExpressionTimeZone : GenericString.t option;The time zone for the schedule expression, for example, UTC.
*)schedulePeriod : SchedulePeriod.t option;The time period during which the schedule is active.
*)state : ScheduleState.t option;The state of the schedule. ENABLED means the scheduled report runs according to its schedule expression. DISABLED means the scheduled report is paused and will not run until re-enabled.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of GenericString.t
| `Structure of (string * [> `Timestamp of GenericTimeStamp.t ]) list ])
list ]