Wasabi supports MySQL backups.
You can use the following code to back up any entity in mySQL.
mysqldump -u [user] \ -p [password] \ -h [host] \ --single-transaction \ --routines --triggers \ --all-databasesAfter the script runs, save the output from stdout to a file:
mysqldump -u [user] [...] | gzip > mysql_backup.sql.gzUpload the file.
Wasabi supports the Amazon CLI, which can be used for such uploads. To set it up, refer to AWS CLI With Wasabi.