- Newest
- Most votes
- Most comments
I use aws rds describe-db-engine-versions
in my tooling and this does not include preview versions.
Are you saying that when you run the following command you get content?
$ aws rds describe-db-engine-versions --region us-east-2 --output json | grep -i preview
I also launched several preview RDS instances via the console at https://aws.amazon.com/rds/databasepreview but I've found no way to use describe-db-instances for example.
You can try like
aws rds describe-db-engine-versions --query "DBEngineVersions[?contains(EngineVersion, 'preview')].[Engine,EngineVersion]"
You can play around with A JMESPath query to use in filtering the response data and update above for your need. Idea is that list out aws rds describe-db-engine-versions and then further filter
Relevant content
- asked a year ago
- Accepted Answerasked 2 years ago
- asked 3 months ago
- Accepted Answerasked 10 months ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 9 months ago
- AWS OFFICIALUpdated 2 years ago