How do I use the aws cli with RDS preview databases?

0

I perform all my validation and operations using the aws cli, however the preview databases are not visible to me. I am in the us-east-2 region. I do not see a way to get different IAM credentials to access.

質問済み 3ヶ月前152ビュー
2回答
0

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.

回答済み 3ヶ月前
-1

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

profile pictureAWS
エキスパート
回答済み 3ヶ月前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ