SDB Explorer :: General information about SDB Explorer :: SDB Explorer Introduction
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": "*" } ] }
|



