Most relational database cloud service platforms do not provide super permissions for the root user. The super permissions allow users to execute many management commands, such as reset master, set global, kill, and reset slave. These operations may cause primary/standby replication errors. This is a major difference between public cloud databases and on-premises MySQL databases. To ensure stable running of DB instances, RDS does not provide the super permission for the root user.
If you need to perform actions that normally require super permissions, RDS provides alternative methods.
For example:
set global parameter name=Parameter value;
If the script contains the set global command, delete the set global command and modify parameter values through the RDS console.
create definer='root'@'%' trigger(procedure)...
You can import data using mysqldump. For operation details, see Migrating Data to RDS for MySQL Using mysqldump.