forked from ccported/ccported.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpolicies.json
More file actions
31 lines (31 loc) · 772 Bytes
/
policies.json
File metadata and controls
31 lines (31 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"dynamodb:Scan",
"dynamodb:GetItem"
],
"Resource": "arn:aws:dynamodb:us-west-2:708504602187:table/games_list"
},
{
"Effect": "Allow",
"Action": [
"dynamodb:UpdateItem"
],
"Resource": "arn:aws:dynamodb:us-west-2:708504602187:table/games_list",
"Condition": {
"ForAllValues:StringEquals": {
"dynamodb:Attributes": [
"gameID",
"clicks"
]
},
"StringEqualsIfExists": {
"dynamodb:ReturnValues": "UPDATED_NEW"
}
}
}
]
}