Module Values_1.TopicRefreshScheduleSource

A structure that represents a topic refresh schedule.

Sourcetype nonrec t = {
  1. isEnabled : NullableBoolean.t;
    (*

    A Boolean value that controls whether to schedule is enabled.

    *)
  2. basedOnSpiceSchedule : Values_0.Boolean.t;
    (*

    A Boolean value that controls whether to schedule runs at the same schedule that is specified in SPICE dataset.

    *)
  3. startingAt : Values_0.Timestamp.t option;
    (*

    The starting date and time for the refresh schedule.

    *)
  4. timezone : Values_0.LimitedString.t option;
    (*

    The timezone that you want the refresh schedule to use.

    *)
  5. repeatAt : Values_0.LimitedString.t option;
    (*

    The time of day when the refresh should run, for example, Monday-Sunday.

    *)
  6. topicScheduleType : TopicScheduleType.t option;
    (*

    The type of refresh schedule. Valid values for this structure are HOURLY, DAILY, WEEKLY, and MONTHLY.

    *)
}
Sourceval context_ : string
Sourceval make : ?startingAt:??? -> ?timezone:??? -> ?repeatAt:??? -> ?topicScheduleType:??? -> isEnabled:NullableBoolean.t -> basedOnSpiceSchedule:Values_0.Boolean.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of NullableBoolean.t | `Enum of string | `String of Values_0.LimitedString.t | `Timestamp of Values_0.Timestamp.t ]) 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