How to stop replication in RDS MySQL instance

To stop replication in RDS MySQL instance, the following query need to be executed in MySQL shell as admin user.

>CALL mysql.rds_stop_replication;

This will stop the replication and can be start at any time using the following query.

>CALL mysql.rds_start_replication;

That's all…