Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to get data from dynamodb using rest api

How do I fetch Amazon DynamoDB data using a RESTful API?

Is there a way to get Amazon DynamoDB data using a REST url, and if so what are the required parameters to pass in the url?

We have considered the DynamoDB endpoint as the url and append it with the accesskey and the secretaccesskey, is anything more required to append to the url?

If any one has tried this with DynamoDB RESTful API, can you give me an example of how to get table data?

A sample url would also be good, something showing how to connect to DynamoDB through a RESTful API.

Ideally, a sample url with all the parameters required.

like image 214
user1485267 Avatar asked Jun 28 '12 09:06

user1485267


Video Answer


1 Answers

There is an AWS documentation including an example:

http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/MakingHTTPRequests.html

like image 134
daewoong Avatar answered Sep 21 '22 09:09

daewoong