download free 30 days trial version buy simpledb explorer
Documentation   Download   Purchase   Support   FAQs   Forum   ScreenShots & Demos       
Frequently Asked Questions

SDB Explorer :: General information about SDB Explorer :: SDB Explorer Introduction

1. What can I do with SDB Explorer?
2. How many users I can create within one account?
3. What are the supported region end points to a create domain in SDB Explorer?
4. Which region end point should I select to store my data?
5. What is "itemName()" column ?
6. Why do we see check-boxes in front of each rows ?
7. How to "undo" the requested operation?
8. What does "show text in new window" mean ?
9. How can I export Domain?
10. Can I export multiple Domains at a time?
11. What is Quick search?
12. How can I get started with SDB Explorer?
13. What are the technical benefits of SDB Explorer?
14. How much data can I store?
15. How much will I have to pay to Amazon?
16. Can I use SDB Explorer to control the access for all the products of Amazon?
17. Is it possible to share a particular domain with my friend?
18. I created a user, and give all permissions to it on a domain "User_domain". But user is not able to access this domain ?
19. Does a IAM user require subscription for the simpledb service of amazon?

I created a user, and give all permissions to it on a domain "User_domain". But user is not able to access this domain ?

To list domains, sdb:ListDomains permission is required on * resource. So if you give * permission on a particular domain, listing of domains could not take place. Giving sdb:ListDomains permission on * resource, will list all the domains. But user should only access those domains for which he has access permission. For this, your policy looks like :- { "Version": "2008-10-17", "Statement": [ { "Sid": "412A", "Effect": "Allow", "Action": "*", "Resource": {"Resource": "arn:aws:sdb:123456321:domain/User_domain" } }, { "Sid": "412B", "Effect": "Allow", "Action": "sdb:ListDomains", "Resource": "*" } ] }