It's simply making a program do something when an event occurs. Events include input (like a key being pressed or a mouse button being pressed), button clicks (on the screen) etc.
Read more about it in this Wikipedia article.
In godot this is achieved through a couple of ways including the Input
singleton and the _input(event)
function.
More about these here.