Allow a BP to access a C++ defined reference

Unfortunately not, because what I have is:

UPROPERTY(BlueprintReadWrite,EditAnywhere)
FYourCustomStruct* YourReferenceName

and the UPROPERTY macro afaik doesn’t like pointers, only variables :\

the code above returns an error btw, indicating an inappropriate type for the macro.