Viewing CEV details
You can view details about your CEV manifest and the command used to create your CEV by using the Amazon Web Services Management Console or the Amazon CLI.
To view CEV details
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.
The Custom engine versions page shows all CEVs that currently exist. If you haven't created any CEVs, the page is empty.
-
Choose the name of the CEV that you want to view.
-
Choose Configuration to view the installation parameters specified in your manifest.
-
Choose Manifest to view the installation parameters specified in the
--manifest
option of thecreate-custom-db-engine-version
command. You can copy this text, replace values as needed, and use them in a new command.
To view details about a CEV by using the Amazon CLI, run the describe-db-engine-versions command.
The following options are required:
-
--engine custom-oracle-ee
-
--engine-version
major-engine-version
.customized_string
The following example creates a CEV named 19.my_cev1
. Make sure that the name of your CEV starts with the
major engine version number.
For Linux, macOS, or Unix:
aws rds describe-db-engine-versions \ --engine custom-oracle-ee \ --engine-version
19.my_cev1
For Windows:
aws rds describe-db-engine-versions ^ --engine custom-oracle-ee ^ --engine-version
19.my_cev1
The following partial sample output shows the engine, parameter groups, manifest, and other information.
"DBEngineVersions": [ { "Engine": "custom-oracle-ee", "MajorEngineVersion": "19", "EngineVersion": "19.my_cev1", "DatabaseInstallationFilesS3BucketName": "us-east-1-123456789012-cev-customer-installation-files", "DatabaseInstallationFilesS3Prefix": "123456789012/cev1", "CustomDBEngineVersionManifest": "{\n\"mediaImportTemplateVersion\": \"2020-08-14\",\n\"databaseInstallationFileNames\": [\n\"V982063-01.zip\"\n],\n\"installationParameters\": {\n\"oracleBase\":\"/tmp\",\n\"oracleHome\":\"/tmp/Oracle\"\n},\n\"opatchFileNames\": [\n\"p6880880_190000_Linux-x86-64.zip\"\n],\n\"psuRuPatchFileNames\": [\n\"p32126828_190000_Linux-x86-64.zip\"\n],\n\"otherPatchFileNames\": [\n\"p29213893_1910000DBRU_Generic.zip\",\n\"p29782284_1910000DBRU_Generic.zip\",\n\"p28730253_190000_Linux-x86-64.zip\",\n\"p29374604_1910000DBRU_Linux-x86-64.zip\",\n\"p28852325_190000_Linux-x86-64.zip\",\n\"p29997937_190000_Linux-x86-64.zip\",\n\"p31335037_190000_Linux-x86-64.zip\",\n\"p31335142_190000_Generic.zip\"\n]\n}\n", "DBParameterGroupFamily": "custom-oracle-ee-19", "DBEngineDescription": "Oracle Database server EE for RDS Custom", "DBEngineVersionArn": "arn:aws:rds:us-west-2:123456789012:cev:custom-oracle-ee/19.my_cev1/0a123b45-6c78-901d-23e4-5678f901fg23", "DBEngineVersionDescription": "test", "KMSKeyId": "arn:aws:kms:us-east-1:123456789012:key/ab1c2de3-f4g5-6789-h012-h3ijk4567l89", "CreateTime": "2022-11-18T09:17:07.693000+00:00", "ValidUpgradeTarget": [ { "Engine": "custom-oracle-ee", "EngineVersion": "19.cev.2021-01.09", "Description": "test", "AutoUpgrade": false, "IsMajorVersionUpgrade": false } ]