Use confirmation with timeout in Jenkins

stage('Confirm Deploy to staging') {
  steps {
    timeout(time: 60, unit: 'SECONDS') {
      input(message: 'Okay to Deploy?', ok: 'Let\'s Do it!')
    }
  }
}