Aurora cluster, DB Instance class for my region

0

EngineVersion=8.0.mysql_aurora.3.06.0, for this version what are the supported DB instance classes I tried to find out but didn't get any relevant document please help me out.

the error getting from cloud formation: Resource handler returned message: "RDS does not support creating a DB instance with the following combination: DBInstanceClass=db.t3.2xlarge, Engine=aurora-mysql, EngineVersion=8.0.mysql_aurora.3.06.0, LicenseModel=general-public-license. For supported combinations of instance class and database engine version, see the documentation. the engine I am using ;Engine: aurora-mysql

asked a year ago720 views
2 Answers
1
Accepted Answer

To list the DB instance classes that are supported by a specific DB engine version in an Amazon Web Services Region, run the following command.

For Linux, macOS, or Unix: aws rds describe-orderable-db-instance-options --engine engine --engine-version version
--query "OrderableDBInstanceOptions[].{DBInstanceClass:DBInstanceClass,SupportedEngineModes:SupportedEngineModes[0]}"
--output table
--region region

For Windows: aws rds describe-orderable-db-instance-options --engine engine --engine-version version ^ --query "OrderableDBInstanceOptions[].{DBInstanceClass:DBInstanceClass,SupportedEngineModes:SupportedEngineModes[0]}" ^ --output table ^ --region region The output also shows the engine modes that are supported for each DB instance class. grateful for my own efforts!!!

answered a year ago
profile picture
EXPERT
reviewed a year ago
profile picture
EXPERT
reviewed a year ago
0

Using AWS CLI: To list the DB engine versions that support a specific DB instance class in an Amazon Web Services Region, run the following command:

For Linux

aws rds describe-orderable-db-instance-options --engine engine --db-instance-class DB_instance_class
--query "OrderableDBInstanceOptions[].{EngineVersion:EngineVersion,SupportedEngineModes:SupportedEngineModes[0]}"
--output table
--region region

For Windows:

aws rds describe-orderable-db-instance-options --engine engine --db-instance-class DB_instance_class ^ --query "OrderableDBInstanceOptions[].{EngineVersion:EngineVersion,SupportedEngineModes:SupportedEngineModes[0]}" ^ --output table ^ --region region

Refer to the AWS documentation page:

https://docs.amazonaws.cn/en_us/AmazonRDS/latest/AuroraUserGuide/Concepts.DBInstanceClass.html#Concepts.DBInstanceClass.SupportAurora

profile picture
answered a year ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions