Here’s a simple way to search for a RDS instance in AWS via CLI.

<pre lang="bash">
aws rds describe-db-instances \
--db-instance-identifier rds-instance-name \
--region us-east-1 \
--profile my-account

You may have to cycle through accounts and regions to find it.