Module Values.RefreshScheduleSource

The schedule for a dashboard refresh.

Sourcetype nonrec t = {
  1. frequency : RefreshScheduleFrequency.t option;
    (*

    The frequency at which you want the dashboard refreshed.

    *)
  2. status : RefreshScheduleStatus.t option;
    (*

    Specifies whether the refresh schedule is enabled. Set the value to ENABLED to enable the refresh schedule, or to DISABLED to turn off the refresh schedule.

    *)
  3. timeOfDay : TimeOfDay.t option;
    (*

    The time of day in UTC to run the schedule; for hourly only refer to minutes; default is 00:00.

    *)
}
Sourceval make : ?frequency:??? -> ?status:??? -> ?timeOfDay:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of TimeOfDay.t | `Structure of (string * [> `Enum of string | `Integer of RefreshScheduleFrequencyValue.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t