Module Values.CreateScheduleGroupInputSource

Creates the specified schedule group.

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. name : ScheduleGroupName.t;
    (*

    The name of the schedule group that you are creating.

    *)
  3. tags : TagList.t option;
    (*

    The list of tags to associate with the schedule group.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> ?tags:??? -> name:ScheduleGroupName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `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