Amazon Web Services(AWS) + Unity

Hello Everyone,
Are they any Devs who successfully implemented AWS(DynomoDB) with unity?If so please reply here.Also any Dev who migrated from older version of AWS with unity to Latest version of AWS and unity??
Help is appreciated.
Thank you.

Well, I… ahem… have done a little playing with DynamoDB and Unity (see signature). The AWS SDK works with Unity just fine, and pretty much works with any version past 4.6.something or other. I’ve been using DynamoDB for my projects for… 3 years now? S3 works fine too.

As for migrating, my project originally used DynamoDB back with… 4.2? Something like that, and I’ve migrated along the path, currently using 5.4 Migrating is not a problem, just get the latest AWS SDK for Unity and everything should work past Unity 4.6.x

1 Like

Oh Thank you for the response Yukichu, now everything is set and working good.
Thank you

Just as a side note, if you are using something like Dynamo DB to store player accounts, or currencies, inventory, save state etc. then it might be worth looking at using a backend service, rather than writing the server integration from scratch. It could save you time and provide a lot more flexibility. We’ve used ChilliConnect (http://www.chilliconnect.com) in the past and it’s worked well for us.

I’ve build an open-source server for social and realtime games called Nakama. It handles realtime multiplayer (with turn data persistence in comparison to Photon which is just a message broker), realtime chat, a presence system and data storage. You can run it on AWS if you’d like as well.

I’m one of the devs behind it, let me know if you have any technical questions. Have a look at the website for documentation.