user8424883
user8424883

Reputation:

Modify RDS instance from AWS Lambda function

I have a running Amazon RDS instance in AWS.

  1. I want to know can I create lambda expression that expression will change RDS instance accessibility from private to public?
  2. Can I create lambda expression that will take native backup as AWS described in Perform Native Backups of an Amazon RDS Instance That's Running SQL Server?

Upvotes: 0

Views: 870

Answers (1)

anton.uspishnyi
anton.uspishnyi

Reputation: 352

  1. You can use modify_db_instance method.
  2. You can use create_db_snapshot method.

Upvotes: 1

Related Questions