Connect Flutter application to DynamoDb database

3,039

You need to know about these services, before connecting your flutter app

  1. Api Gateway - Service used to create a Rest API, which links the flutter app to cloud.

  2. Lambda - This service sits in the middle, connecting the Api to your database ( DynamoDB ). Basically a function, it also states how the data is collected.

Try these tutorial

https://medium.com/avmconsulting-blog/how-to-build-a-serverless-api-with-dynamodb-aws-lambda-and-api-gateway-d61ac63c27dd

Share:
3,039
Ankit
Author by

Ankit

Updated on December 24, 2022

Comments

  • Ankit
    Ankit over 1 year

    I am developing a flutter application and my database is DynamoDB tables. I tried searching for ways to connect the DynamoDB database into my flutter application but couldn't do it. How do I connect it?