Like, to implement the event in blueprint? If your blueprint is a child of the C++ class, then you can just add the BlueprintImplementableEvent tag to the function.
UFUNCTION(BlueprintCallable, BlueprintImplementableEvent, Category = "Blur")
void AddSceneBlur();
If you’re talking about calling it (blue node), you add the BlueprintCallable tag shown above.