:doc:`RDS <../../rds>` / Client / delete_db_cluster_parameter_group

*********************************
delete_db_cluster_parameter_group
*********************************



.. py:method:: RDS.Client.delete_db_cluster_parameter_group(**kwargs)

  

  Deletes a specified DB cluster parameter group. The DB cluster parameter group to be deleted can't be associated with any DB clusters.

   

  For more information on Amazon Aurora, see `What is Amazon Aurora? <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html>`__ in the *Amazon Aurora User Guide*.

   

  For more information on Multi-AZ DB clusters, see `Multi-AZ DB cluster deployments <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html>`__ in the *Amazon RDS User Guide*.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBClusterParameterGroup>`_  


  **Request Syntax**
  ::

    response = client.delete_db_cluster_parameter_group(
        DBClusterParameterGroupName='string'
    )
    
  :type DBClusterParameterGroupName: string
  :param DBClusterParameterGroupName: **[REQUIRED]** 

    The name of the DB cluster parameter group.

     

    Constraints:

     

    
    * Must be the name of an existing DB cluster parameter group.
     
    * You can't delete a default DB cluster parameter group.
     
    * Can't be associated with any DB clusters.
    

    

  
  
  :returns: None
  **Exceptions**
  
  *   :py:class:`RDS.Client.exceptions.DBParameterGroupNotFoundFault`

  
  *   :py:class:`RDS.Client.exceptions.InvalidDBParameterGroupStateFault`

  

  **Examples**

  This example deletes the specified DB cluster parameter group.
  ::

    response = client.delete_db_cluster_parameter_group(
        DBClusterParameterGroupName='mydbclusterparametergroup',
    )
    
    print(response)

  
  Expected Output:
  ::

    {
        'ResponseMetadata': {
            '...': '...',
        },
    }

  