Home > OS >  How to connect AWS DynamoDb directly with dart
How to connect AWS DynamoDb directly with dart

Time:01-10

I am working on a messaging app in flutter and all the messages are stored in AWS DynamoDB. I didn't find any docs on direct support of DynamoDB and Dart. So I first connected DB to NodeJS and used http req from flutter app to get the messages. But its not much reliable. Only if I could find a way to connect it directly I could make the app more speeder. If anyone out there know a way for this please help out.

CodePudding user response:

There is not an AWS SDK for this programming language. The only thing I can think of is to write code in your programming language that can invoke DynamoDB using Rest. There is an AWS documentation including an example:

DynamoDB Low-Level API

CodePudding user response:

You can maybe try non AWS provided SDKs like this one. It includes a DynamoDB client. I haven’t used it before, so I can’t vouch for it.

  •  Tags:  
  • Related