Module Values.ModifyScheduledActionMessageSource

Modifies a scheduled action.

Sourcetype nonrec t = {
  1. scheduledActionName : String_.t;
    (*

    The name of the scheduled action to modify.

    *)
  2. targetAction : ScheduledActionType.t option;
    (*

    A modified JSON format of the scheduled action. For more information about this parameter, see ScheduledAction.

    *)
  3. schedule : String_.t option;
    (*

    A modified schedule in either at( ) or cron( ) format. For more information about this parameter, see ScheduledAction.

    *)
  4. iamRole : String_.t option;
    (*

    A different IAM role to assume to run the target action. For more information about this parameter, see ScheduledAction.

    *)
  5. scheduledActionDescription : String_.t option;
    (*

    A modified description of the scheduled action.

    *)
  6. startTime : TStamp.t option;
    (*

    A modified start time of the scheduled action. For more information about this parameter, see ScheduledAction.

    *)
  7. endTime : TStamp.t option;
    (*

    A modified end time of the scheduled action. For more information about this parameter, see ScheduledAction.

    *)
  8. enable : BooleanOptional.t option;
    (*

    A modified enable flag of the scheduled action. If true, the scheduled action is active. If false, the scheduled action is disabled.

    *)
}
Sourceval context_ : string
Sourceval make : ?targetAction:??? -> ?schedule:??? -> ?iamRole:??? -> ?scheduledActionDescription:??? -> ?startTime:??? -> ?endTime:??? -> ?enable:??? -> scheduledActionName:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanOptional.t | `String of String_.t | `Structure of (string * [> `Structure of (string * [> `Boolean of BooleanOptional.t | `Integer of IntegerOptional.t | `String of String_.t ]) list ]) list | `Timestamp of TStamp.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