func printHelp()

in cli/cli.go [78:90]


func printHelp(out io.Writer) {
	fmt.Fprint(out, `Assume an AWS role and run the specified command.

Usage:
  assume-role [options] <command> [args ...]

Options:
      --help                       Help for assume-role
      -f, --force-refresh          Forces credentials refresh irrespective of their expiry
      --role string                Name of the role to assume
      --role-session-name string   Name of the session for the assumed role
`)
}