Create Schedule Group
eventbridgescheduler_create_schedule_group | R Documentation |
Creates the specified schedule group¶
Description¶
Creates the specified schedule group.
Usage¶
eventbridgescheduler_create_schedule_group(ClientToken, Name, Tags)
Arguments¶
ClientToken |
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. |
Name |
[required] The name of the schedule group that you are creating. |
Tags |
The list of tags to associate with the schedule group. |
Value¶
A list with the following syntax:
list(
ScheduleGroupArn = "string"
)
Request syntax¶
svc$create_schedule_group(
ClientToken = "string",
Name = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)