With regard to your comment that "MySQL can be slow on some complex queries" - I wouldn't make that the driver for your decision. You should first look at optimizing those queries (making sure you have appropriate indexes, making sure you have the right amount of memory allocated, etc.). What you should probably do, if you are getting to the point where MySQL performance is driving your overall server architecture, is put MySQL on a separate server. You will rarely find an application of any appreciable size that utilizes the approach of having the web server and the database server on the same machine. This just doesn't scale. And to go a step further, if you have complex read-only queries that effect your overall database performance (by locking tables, tying up connections, and such), then you might want to consider database replication whereby you can make these queries against a replication slave, so as to not impact write operations on the master.
The good news is that the Amazon RDS solution is extremely easy to use to set up databases, make read only copies, etc. If you decide to go the route of separating your DB onto its own server. Separating the DB server out may allow you to go with a much smaller web server than you currently have.
The second thing I would point out is that if your driving concern here is cost, AWS might not be the solution for you. Certainly when you look at the cost for a single specific EC2 instance vs. VPS, on he surface, the EC2 might seem a favorable comparison. What you might not be considering, is that a good AWS system architecture would typically leverage multiple instances (for redundancy and better performance). You would also typically have costs associated with S3 storage, elastic load balancers and/or elastic IP's, and RDS (if you want to separate your database).
This is not to say that AWS pricing is non-competitive, because it really is very competitively priced. It is just to say that typically when you move to AWS, your system might need to have a slightly different architecture which overall can cost you more than just the EC2 instance cost.
If you want to estimate cost, you can use the AWS billing estimation tool here:
http://calculator.s3.amazonaws.com/calc5.html