How do I config table name for "ex_aws_dynamo"

I currently integrating my app with dynamo using this lib: https://github.com/ex-aws/ex_aws_dynamo, but can’t find an example how to config table name to request against. The same thing happen for s3. This (ex-aws) seems to be a good library, but Its documentation is really poor maintaince. I’m thinking about using RESTful for access DynamoDB, but hope some body give me a help before doing that.

Hi @phmngocnghia the table or bucket are not part of config, you specify them on request. ExAws generally attempts to be a thin wrapper around AWS, it is expected that you’ll use the AWS documentation to understand how the various operations work.

However, your specific query is covered in the docs: https://hexdocs.pm/ex_aws_dynamo/ExAws.Dynamo.html#module-basic-usage

1 Like