:doc:`MemoryDB <../../memorydb>` / Client / delete_parameter_group

**********************
delete_parameter_group
**********************



.. py:method:: MemoryDB.Client.delete_parameter_group(**kwargs)

  

  Deletes the specified parameter group. You cannot delete a parameter group if it is associated with any clusters. You cannot delete the default parameter groups in your account.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/DeleteParameterGroup>`_  


  **Request Syntax**
  ::

    response = client.delete_parameter_group(
        ParameterGroupName='string'
    )
    
  :type ParameterGroupName: string
  :param ParameterGroupName: **[REQUIRED]** 

    The name of the parameter group to delete.

    

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

    
    ::

      {
          'ParameterGroup': {
              'Name': 'string',
              'Family': 'string',
              'Description': 'string',
              'ARN': 'string'
          }
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **ParameterGroup** *(dict) --* 

        The parameter group that has been deleted.

        
        

        - **Name** *(string) --* 

          The name of the parameter group

          
        

        - **Family** *(string) --* 

          The name of the parameter group family that this parameter group is compatible with.

          
        

        - **Description** *(string) --* 

          A description of the parameter group

          
        

        - **ARN** *(string) --* 

          The Amazon Resource Name (ARN) of the parameter group

          
    
  
  **Exceptions**
  
  *   :py:class:`MemoryDB.Client.exceptions.InvalidParameterGroupStateFault`

  
  *   :py:class:`MemoryDB.Client.exceptions.ParameterGroupNotFoundFault`

  
  *   :py:class:`MemoryDB.Client.exceptions.ServiceLinkedRoleNotFoundFault`

  
  *   :py:class:`MemoryDB.Client.exceptions.InvalidParameterValueException`

  
  *   :py:class:`MemoryDB.Client.exceptions.InvalidParameterCombinationException`

  