What URL should I use to create my simpleDB domain?

I cannot figure out where I can create a domain for my simpleDB. I went to the AWS Management Console, I was able to create a bucket for S3, but I do not have a simple DB tab.

Did I miss something?

+6
source share
5 answers

SimpleDB is not yet supported by the AWS console. They may eventually add it, but for now, you need to use direct service calls (with the SDK, this is the easiest).

+5
source

SDB Tool is a great FOSS Firefox plugin:

http://code.google.com/p/sdbtool/

+2
source

You can use the SDB explorer. SDB Explorer was created as a graphical user interface (GUI) to explore the Amazon SimpleDB service thoroughly and in a very efficient and user friendly way.

http://www.sdbexplorer.com/

0
source

Or if you're a Python fan, try the boto library, which is designed to access AWS resources. More information can be found here: http://boto.readthedocs.org/en/latest/simpledb_tut.html

0
source

Source: https://habr.com/ru/post/890572/


All Articles