Module Values.DeleteScheduleInputSource

Deletes the specified schedule.

Sourcetype nonrec t = {
  1. clientToken : ClientToken.t option;
    (*

    Unique, case-sensitive identifier you provide to ensure the idempotency of the request. If you do not specify a client token, EventBridge Scheduler uses a randomly generated token for the request to ensure idempotency.

    *)
  2. groupName : ScheduleGroupName.t option;
    (*

    The name of the schedule group associated with this schedule. If you omit this, the default schedule group is used.

    *)
  3. name : Name.t;
    (*

    The name of the schedule to delete.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> ?groupName:??? -> name:Name.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ClientToken.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