avp-cli
Version:
Small CLI to help interacts with the Amazon Verified Permissions (AVP) service.
110 lines (109 loc) • 2.69 kB
JSON
{
"policyStoreId": "your-policy-store-id",
"entities": {
"entityList": [
{
"identifier": {
"entityType": "EcommerceStore::User",
"entityId": "Daniel"
},
"attributes": {},
"parents": [
{
"entityType": "EcommerceStore::Role",
"entityId": "admin"
}
]
},
{
"identifier": {
"entityType": "EcommerceStore::Order",
"entityId": "12345"
},
"attributes": {
"status": {
"string": "paid"
}
},
"parents": []
},
{
"identifier": {
"entityType": "EcommerceStore::Order",
"entityId": "67890"
},
"attributes": {
"status": {
"string": "in delivery"
}
},
"parents": []
},
{
"identifier": {
"entityType": "EcommerceStore::Order",
"entityId": "44444"
},
"attributes": {
"status": {
"string": "delivered"
}
},
"parents": []
}
]
},
"requests": [
{
"principal": {
"entityType": "EcommerceStore::User",
"entityId": "Daniel"
},
"action": {
"actionType": "EcommerceStore::Action",
"actionId": "Edit"
},
"resource": {
"entityType": "EcommerceStore::Order",
"entityId": "12345"
},
"context": {
"contextMap": {}
}
},
{
"principal": {
"entityType": "EcommerceStore::User",
"entityId": "Daniel"
},
"action": {
"actionType": "EcommerceStore::Action",
"actionId": "Edit"
},
"resource": {
"entityType": "EcommerceStore::Order",
"entityId": "67890"
},
"context": {
"contextMap": {}
}
},
{
"principal": {
"entityType": "EcommerceStore::User",
"entityId": "Daniel"
},
"action": {
"actionType": "EcommerceStore::Action",
"actionId": "Edit"
},
"resource": {
"entityType": "EcommerceStore::Order",
"entityId": "44444"
},
"context": {
"contextMap": {}
}
}
]
}