Setting up AWS DynamoDB with Unity?

Hey guys, I’m trying to get set up in AWS DynamoDB within Unity using the SDK, but it feels like there is something missing in my setup or something not included in the SDK! I started with Cognito, and got the basics of that working no problem, but now I need to set up Dynamo!

I’ve made various attempts at trying to link Unity with the database I have set up, but nothing has come worked thus far.

It could be something wrong with my awsconfig.xml file that I tried to set up. Other forums told me this is all I need in the config file:

<?xml version="1.0" encoding="utf-8"?> 

<aws>
		<logging logTo="UnityLogger" 
			logResponses="Always" 
			logMetrics="true" 
			logMetricsFormat="JSON"
            logResponsesSizeLimit ="4096"/> 
</aws>

But it could be totally wrong or maybe there’s something else I am missing from me setting up this SDK? As of now it seems like the awsconfig.xml is giving me errors that don’t allow the AWS Initializers to get attached to a gameobject.

Does anyone have any experience using DynamoDB and unity and could maybe give me a quick walk through on what I need to do to get it set up? It would be greatly appreciated!

@Josepht45 Did you ever get this working? AWS docs haven’t been updated in over a year, so initial setup steps can’t even get their own samples to work properly. If you fixed it, can you remember what the problem wound up being?