Reputation: 5031
I have a simple case where I have an AWS RDS snapshot and I want to modify the data inside that particular snapshot and share the database (snapshot). i.e. I want to modify few columns as nulls so that the client cannot see those columns. I was looking into the API documentation but couldn't find the correct way of doing this. I looked into documentation Modifying an Amazon RDS DB instance and ModifyDBSnapshot etc but these modifications are meant for modifications in database engine and configuration settings.
Need expert opinion on how to accomplish this task in an optimal way. TIA
Upvotes: 1
Views: 238
Reputation: 239000
You can't modify the content of DB on the snapshot. You have to:
Then you can copy/share the modified snapshot.
Upvotes: 2