Deleting a CEV
You can delete a CEV using the Amazon Web Services Management Console or the Amazon CLI. Typically, deletion takes a few minutes.
To delete a CEV, it can't be in use by any of the following:
-
An RDS Custom DB instance
-
A snapshot of an RDS Custom DB instance
-
An automated backup of your RDS Custom DB instance
To delete a CEV
Sign in to the Amazon Web Services Management Console and open the Amazon RDS console at https://console.amazonaws.cn/rds/
. -
In the navigation pane, choose Custom engine versions.
-
Choose a CEV whose description or status you want to delete.
-
For Actions, choose Delete.
The Delete
cev_name
? dialog box appears. -
Enter
delete me
, and then choose Delete.In the Custom engine versions page, the banner shows that your CEV is being deleted.
To delete a CEV by using the Amazon CLI, run the delete-custom-db-engine-version command.
The following options are required:
-
--engine custom-oracle-ee
-
--engine-version
, wherecev
cev
is the name of the custom engine version to be deleted
The following example deletes a CEV named 19.my_cev1
.
For Linux, macOS, or Unix:
aws rds delete-custom-db-engine-version \ --engine custom-oracle-ee \ --engine-version
19.my_cev1
For Windows:
aws rds delete-custom-db-engine-version ^ --engine custom-oracle-ee ^ --engine-version
19.my_cev1