Creating a trigger component (or, editing the collision properties of a UBoxComponent)

So I need to create a component that works just like a trigger actor. My current method is to create a class that inherits from UBoxComponent and change the collision rules so other objects don’t bump into it, but do fire a begin overlap event.

How would I go about changing the collision properties of a UBoxComponent child to serve my needs?