The Layers that this Collider2D is allowed to send forces to during a Collision contact with another Collider2D.
When a collision occurs between two Collider2D, both Colliders would normally apply a force to each other that separates them. Both Colliders have a Layer assigned to them respectively, which can be the same or different Layer(s). For the forces to apply, each Collider must send a force to the Layer that is assigned to the other Collider, while also receiving a force on their own Layer from the other Collider. Thus, both Colliders must mutually agree on which Layers the forces are being sent and received.
The forceSendLayers property allows you to select which Layers that the Collider sends a force to, while forceReceiveLayers allows you to select which Layers the Collider receives a force from.
NOTES:
Additional resources: Collider2D.forceReceiveLayers.