InputSystemを使い、PS4コントローラを設定しようと思い、https://youtu.be/pRSZr6CFcpQ?t=810
を参考にやりましたがhttps://youtu.be/pRSZr6CFcpQ?t=1070の所で赤波が出ます。
原因として考えられるのは何でしょうか?

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.InputSystem.Controls;
using UnityEngine.InputSystem;//定義が必要
public class PS4ctrl : MonoBehaviour
{

// Start is called before the first frame update


//InputAction move,attack;//INPUTアクション型の定義
InputAction move, attack;
//MainGame
private void Awake()
{

move = GetComponent<PlayerInput>().currentActionMap{"Move"};//エラー
//UnityEngine.InputSystem.InputActionMapをUnityEngine.InputSystem.InputActionに暗黙的に変換できません



}