Skip to content

Is it possible to find out when will RDS instance restart

0

I have SQL Server instance that I stopped temporarily. Obviously, when it is stopped, it tells me when it will restart. But if it is already stopped - is there a way to find out this value? In console / CLI / API?

Documentation does not have this information. Does this mean that this is impossible?

2 Answers
1
Accepted Answer

Yes you can fetch that info for already stopped RDS instances.

In the AWS console - Click on the name of the database and in the Summary section - Status you would see the text "Stopped temporarily". Clicking on this text would show you the restart time.

In the CLI, you can use the command aws rds describe-db-instances --db-instance-identifier <name_of_database> and look for a field AutomaticRestartTime in it's output

--Syd

answered 3 years ago
EXPERT
reviewed 2 years ago
  • arrgh! how did I miss it! thank you :)

0

Can you post a screenshot where exactly you are clicking, as I don't see summary, neither any info, except in logs (when it was stopped).

answered 2 years 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.