You'll likely have issues with SimpleDb because of its 'eventual consistency' on writes. This means that when you write data, its not guaranteed to be returned in a query made immediately after. I've heard that you're safe after a couple of seconds, but you have to code the system to take this into account.
This has been mitigated slightly with the introduction of conditional puts, which ensures that there are no lost updates if there are concurrent writes. The eventual consistency model can make it quite complicated to code simple things like counters and queues.
Here is an example of a incrementing counter implimented in Java using the AWS SDK. Notice in the nextValue method:
while (!done) {
Clients essentially retry until their put is cleanly processed. This is not scalable!