user1433620
user1433620

Reputation: 25

AWS RDS save snapshot of selected tables

I'm trying to save a snapshot of several tables programatically in python, instead of all DB.

I couldn't find the API (in boto/boto3) to do that.

Is it possible to do?

Upvotes: 0

Views: 1997

Answers (1)

Mark B
Mark B

Reputation: 200712

This is not possible using the AWS RDS snapshot mechanism, and it isn't possible using the AWS SDK. It is possible using the API for the specific database engine you are using. You would need to specify what database you are using for further help.

Upvotes: 1

Related Questions