cedar-policy-cli 4.10.0

CLI interface for the Cedar Policy language.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
entity User in Group {
    jobLevel: Long,
    manager: User
};
entity Group;
entity Document;

action view appliesTo {
    principal: User,
    resource: Document,
    context: {
        token: {
            is_secure: Bool
        }
    }
};