CreateScheduleGroupInput

CreateScheduleGroupInput schema from Amazon EventBridge Scheduler

Amazon Web ServicesCronEvent-DrivenSchedulingServerless

Properties

Name Type Description
ClientToken object
Tags object
View JSON Schema on GitHub

JSON Schema

amazon-eventbridge-scheduler-create-schedule-group-input-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-eventbridge-scheduler/refs/heads/main/json-schema/amazon-eventbridge-scheduler-create-schedule-group-input-schema.json",
  "title": "CreateScheduleGroupInput",
  "description": "CreateScheduleGroupInput schema from Amazon EventBridge Scheduler",
  "type": "object",
  "properties": {
    "ClientToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ClientToken"
        },
        {
          "description": " 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. "
        }
      ]
    },
    "Tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagList"
        },
        {
          "description": "The list of tags to associate with the schedule group."
        }
      ]
    }
  }
}