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

Arfat
posta un mese fa243 visualizzazioni
2 Risposte
1
Risposta accettata

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!!!

Arfat
con risposta un mese fa
profile picture
ESPERTO
verificato un mese fa
profile picture
ESPERTO
A_J
verificato un mese fa
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
con risposta un mese fa

Accesso non effettuato. Accedi per postare una risposta.

Una buona risposta soddisfa chiaramente la domanda, fornisce un feedback costruttivo e incoraggia la crescita professionale del richiedente.

Linee guida per rispondere alle domande