Why can't I stop RDS instance?

Viewed 4519

I spun up two RDS instances in the same VPC. Both are postgresql. enter image description here

While the m4.xlarge one has multi-AZ enabled and is encrypted. The t2.micro has either. That is the only difference between the two instances. It is strange that t2.micro instance can be stopped but m4.xlarge can't. The "stop" option is grayed out for m4.xlarge. enter image description here Why can't I stop this one? Does it have to do with the multi-AZ thing?

3 Answers

You can stop RDS DB instances except for SQL Server DB instance in a Multi-AZ configuration. There are some limitations you should know about this:

Limitations The following are some limitations to stopping and starting a DB instance:

You can't stop a DB instance that has a read replica, or that is a read replica.

You can't stop an Amazon RDS for SQL Server DB instance in a Multi-AZ configuration.

You can't modify a stopped DB instance.

You can't delete an option group that is associated with a stopped DB instance.

You can't delete a DB parameter group that is associated with a stopped DB instance.

Related