Values.ScheduleSourceThe schedule of when Amazon Redshift Serverless should run the scheduled action.
type nonrec t = {at : Timestamp.t option;The timestamp of when Amazon Redshift Serverless should run the scheduled action. Timestamp is in UTC. Format of at expression is yyyy-mm-ddThh:mm:ss. For example, 2016-03-04T17:27:00.
*)cron : String_.t option;The cron expression to use to schedule a recurring scheduled action. Schedule invocations must be separated by at least one hour. Times are in UTC. Format of cron expressions is (Minutes Hours Day-of-month Month Day-of-week Year). For example, "(0 10 ? * MON *)". For more information, see Cron Expressions in the Amazon CloudWatch Events User Guide.
*)}val to_value :
t ->
[> `Structure of
(string * [> `String of String_.t | `Timestamp of Timestamp.t ]) list ]