:doc:`SES <../../ses>` / Client / create_configuration_set

************************
create_configuration_set
************************



.. py:method:: SES.Client.create_configuration_set(**kwargs)

  

  Creates a configuration set.

   

  Configuration sets enable you to publish email sending events. For information about using configuration sets, see the `Amazon SES Developer Guide <https://docs.aws.amazon.com/ses/latest/dg/monitor-sending-activity.html>`__.

   

  You can execute this operation no more than once per second.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/CreateConfigurationSet>`_  


  **Request Syntax**
  ::

    response = client.create_configuration_set(
        ConfigurationSet={
            'Name': 'string'
        }
    )
    
  :type ConfigurationSet: dict
  :param ConfigurationSet: **[REQUIRED]** 

    A data structure that contains the name of the configuration set.

    

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

      The name of the configuration set. The name must meet the following requirements:

       

      
      * Contain only letters (a-z, A-Z), numbers (0-9), underscores (_), or dashes (-).
       
      * Contain 64 characters or fewer.
      

      

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

    
    ::

      {}
      
    **Response Structure**

    

    - *(dict) --* 

      An empty element returned on a successful request.

      
  
  **Exceptions**
  
  *   :py:class:`SES.Client.exceptions.ConfigurationSetAlreadyExistsException`

  
  *   :py:class:`SES.Client.exceptions.InvalidConfigurationSetException`

  
  *   :py:class:`SES.Client.exceptions.LimitExceededException`

  