Module Values.TriggerPropertiesSource

Specifies the configuration details that control the trigger for a flow. Currently, these settings only apply to the Scheduled trigger type.

Sourcetype nonrec t = {
  1. scheduled : ScheduledTriggerProperties.t option;
    (*

    Specifies the configuration details of a schedule-triggered flow that you define.

    *)
}
Sourceval make : ?scheduled:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `Long of ScheduleOffset.t | `String of ScheduleExpression.t | `Timestamp of Date.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