According to AWS RDS documentation, AWS RDS MySQL comes with a SSL certificate, and the public key is in a file called "rds-combined-ca-bundle.pem" downloadable from AWS website.
I also saw documentation from MySQL that this is how you create a SSL client connection in C# (.NET):
using (MySqlConnection connection = new MySqlConnection("database=test;user=sslclient;CertificateFile=H:\\...\\client.pfx;CertificatePassword=pass;SSL Mode=Required"))
{
connection.Open();
}
But how to convert this "rds-combined-ca-bundle.pem" to this "client.pfx"?