I have created a SQLCLR functions works with RabbitMQ. Added them to SQL Server as described here https://nielsberglund.com/2017/07/01/sqlclr-and-certificates/ using certificate: created it, added to database, created Login etc. It works fine. Can add my SQLCLR functions to AWS RDS SQL Server database using the same way? In particular SQL Server I do this way:
use master;
IF exists(select * from sys.syslogins where name = N''login21'') DROP LOGIN [login21];
IF exists(select * from sys.certificates where name = N''login21Cert21'') DROP CERTIFICATE [login21Cert21];
CREATE CERTIFICATE [login21Cert21] FROM BINARY =
0x30820....;
CREATE LOGIN [login21] FROM CERTIFICATE [login21Cert21];
GRANT UNSAFE ASSEMBLY TO [login21];
But the question is if it is possible to add certificate/login to AWS RDS SQLServer master database?