in source/clicklogger/src/main/java/com/clicklogs/Authorizer/AuthPolicy.java [88:98]
public PolicyDocument(String region, String awsAccountId, String restApiId, String stage) {
this.region = region;
this.awsAccountId = awsAccountId;
this.restApiId = restApiId;
this.stage = stage;
allowStatement = Statement.getEmptyInvokeStatement("Allow");
denyStatement = Statement.getEmptyInvokeStatement("Deny");
this.statements = new ArrayList<>();
statements.add(allowStatement);
statements.add(denyStatement);
}