Module Values.ScheduleConfigurationSource

The name of the data and how often it should be pulled from the source.

Sourcetype nonrec t = {
  1. firstExecutionFrom : NonBlankString.t option;
    (*

    The start date for objects to import in the first flow run as an Unix/epoch timestamp in milliseconds or in ISO-8601 format.

    *)
  2. object_ : Object.t option;
    (*

    The name of the object to pull from the data source.

    *)
  3. scheduleExpression : NonBlankString.t;
    (*

    How often the data should be pulled from data source.

    *)
}
Sourceval context_ : string
Sourceval make : ?firstExecutionFrom:??? -> ?object_:??? -> scheduleExpression:NonBlankString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonBlankString.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