Module Values.ScheduleActionStartSettingsSource

Settings to specify when an action should occur. Only one of the options must be selected.

Sourcetype nonrec t = {
  1. fixedModeScheduleActionStartSettings : FixedModeScheduleActionStartSettings.t option;
    (*

    Option for specifying the start time for an action.

    *)
  2. followModeScheduleActionStartSettings : FollowModeScheduleActionStartSettings.t option;
    (*

    Option for specifying an action as relative to another action.

    *)
  3. immediateModeScheduleActionStartSettings : ImmediateModeScheduleActionStartSettings.t option;
    (*

    Option for specifying an action that should be applied immediately.

    *)
}
Sourceval make : ?fixedModeScheduleActionStartSettings:??? -> ?followModeScheduleActionStartSettings:??? -> ?immediateModeScheduleActionStartSettings:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `String of string ]) 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