Tween refers to the class. $Tween would refer to the instance (object) of that class in your scene. So replace Tween with $Tween. Compare how you referred to Timer object
You'll probably have the same problem with KinematicBody. But since you're referring to it from within its own script, you should use keyword self.
To put it in code:
$Tween.interpolate_property(self, vector.y, 1, -1, 1, 0, 1)
$Tween.start()