Deleting Amazon DocumentDB Cluster Parameter Groups

You can delete a custom Amazon DocumentDB cluster parameter group using the AWS Management Console or the AWS Command Line Interface (AWS CLI). You can’t delete the default.docdb4.0 cluster parameter group.

To delete a cluster parameter group

  1. Sign in to the AWS Management Console, and open the Amazon DocumentDB console at https://console.aws.amazon.com/docdb.

  2. In the navigation pane, choose Parameter groups.

    Tip

    If you don’t see the navigation pane on the left side of your screen, choose the menu icon (Deleting Cluster Parameter Groups - 图1) in the upper-left corner of the page.

  3. In the Parameter groups pane, choose the radio button to the left of the cluster parameter group that you want to delete.

  4. Choose Actions, and then choose Delete.

  5. In the Delete confirmation pane, choose Delete to delete the cluster parameter group. To keep the cluster parameter group, choose Cancel.

To delete a cluster parameter group, use the delete-db-cluster-parameter-group operation with the following parameter.

  • --db-cluster-parameter-group-name — Required. The name of the cluster parameter group to delete. This must be an existing cluster parameter group. You cannot delete the default.docdb4.0 cluster parameter group.

Example - Deleting a cluster parameter group

The following example walks you through the three steps for deleting a cluster parameter group:

  1. Finding the name of the cluster parameter group that you want to delete.

  2. Deleting the specified cluster parameter group.

  3. Verifying that the cluster parameter group was deleted.

1. Find the name of the cluster parameter group that you want to delete.

The following code lists the names of all cluster parameter groups.

For Linux, macOS, or Unix:

  1. aws docdb describe-db-cluster-parameter-groups \
  2. --query 'DBClusterParameterGroups[*].[DBClusterParameterGroupName]'

For Windows:

  1. aws docdb describe-db-cluster-parameter-groups ^
  2. --query 'DBClusterParameterGroups[*].[DBClusterParameterGroupName]'

The output of the preceding operation is a list the names of cluster parameter groups similar to the following (JSON format).

  1. [
  2. [
  3. "default.docdb4.0"
  4. ],
  5. [
  6. "sample-parameter-group"
  7. ],
  8. [
  9. "sample-parameter-group-copy"
  10. ]
  11. ]

2. Delete a specific cluster parameter group.

The following code deletes the cluster parameter group sample-parameter-group-copy.

For Linux, macOS, or Unix:

  1. aws docdb delete-db-cluster-parameter-group \
  2. --db-cluster-parameter-group-name sample-parameter-group-copy

For Windows:

  1. aws docdb delete-db-cluster-parameter-group ^
  2. --db-cluster-parameter-group-name sample-parameter-group-copy

There is no output from this operation.

3. Verify that the specified cluster parameter group was deleted.

The following code lists the names of all remaining cluster parameter groups.

For Linux, macOS, or Unix:

  1. aws docdb describe-db-cluster-parameter-groups \
  2. --query 'DBClusterParameterGroups[*].[DBClusterParameterGroupName]'

For Windows:

  1. aws docdb describe-db-cluster-parameter-groups ^
  2. --query 'DBClusterParameterGroups[*].[DBClusterParameterGroupName]'

The output of the preceding operation is a list of cluster parameter groups similar to the following (JSON format). The cluster parameter group that you just deleted should not be in the list.

Output from this operation looks something like the following (JSON format).

  1. [
  2. [
  3. "default.docdb4.0"
  4. ],
  5. [
  6. "sample-parameter-group"
  7. ]
  8. ]