public static PolicyStatement Deny(this PolicyStatement statement)
 {
     return(statement.WithEffect(Effect.DENY));
 }
 public static PolicyStatement Allow(this PolicyStatement statement)
 {
     return(statement.WithEffect(Effect.ALLOW));
 }