Configure MySQL Database for SSL Access

We are using Camunda, on Apache Tomcat, with an Amazon Aurora MySQL database. It has been working fine. Now we are trying to modify our setup to connect to the database securely with SSL. It is not clear to us exactly how to modify our jdbc resource in order to configure it to use SSL. Can anyone provide instructions on how to do this? Also, are any other steps required other than modifying the jdbc resource?

Here’s is our (slightly redacted) jdbc configuration as it currently exists in the server.xml file.

<Resource name="jdbc/ProcessEngine" auth="Container" type="javax.sql.DataSource" factory="org.apache.tomcat.jdbc.pool.DataSourceFactory" uniqueResourceName="process-engine" driverClassName="com.mysql.jdbc.Driver" url="jdbc:mysql://url:3306/dtm_camunda?autoReconnect=true" username="xxx" password="xxx" maxActive="20" minIdle="5" maxIdle="20" testOnBorrow="true" validationQuery="SELECT 1" validationInterval="60000"/>