:doc:`EventBridgeScheduler <../../scheduler>` / Client / create_schedule_group

*********************
create_schedule_group
*********************



.. py:method:: EventBridgeScheduler.Client.create_schedule_group(**kwargs)

  

  Creates the specified schedule group.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/scheduler-2021-06-30/CreateScheduleGroup>`_  


  **Request Syntax**
  ::

    response = client.create_schedule_group(
        ClientToken='string',
        Name='string',
        Tags=[
            {
                'Key': 'string',
                'Value': 'string'
            },
        ]
    )
    
  :type ClientToken: string
  :param 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.

    This field is autopopulated if not provided.

  
  :type Name: string
  :param Name: **[REQUIRED]** 

    The name of the schedule group that you are creating.

    

  
  :type Tags: list
  :param Tags: 

    The list of tags to associate with the schedule group.

    

  
    - *(dict) --* 

      Tag to associate with a schedule group.

      

    
      - **Key** *(string) --* **[REQUIRED]** 

        The key for the tag.

        

      
      - **Value** *(string) --* **[REQUIRED]** 

        The value for the tag.

        

      
    

  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'ScheduleGroupArn': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **ScheduleGroupArn** *(string) --* 

        The Amazon Resource Name (ARN) of the schedule group.

        
  
  **Exceptions**
  
  *   :py:class:`EventBridgeScheduler.Client.exceptions.ServiceQuotaExceededException`

  
  *   :py:class:`EventBridgeScheduler.Client.exceptions.ValidationException`

  
  *   :py:class:`EventBridgeScheduler.Client.exceptions.InternalServerException`

  
  *   :py:class:`EventBridgeScheduler.Client.exceptions.ConflictException`

  
  *   :py:class:`EventBridgeScheduler.Client.exceptions.ThrottlingException`

  