According to Unity's Scripting API, the following is a valid option for the Input.GetButtonDown method:

public static bool GetButtonDown(string buttonName);

Let's say you wanted to launch a projectile when the user presses the "Fire1" button, What would you put in the blank below:

public GameObject projectile;
void Update()
if (__________) Instantiate(projectile, transform.position, transform.rotation);