An Action Map groups actions by context.

Example:

Player
├── Move
├── Jump
├── Attack
└── Interact

UI
├── Navigate
├── Submit
├── Cancel
└── Click

Switch with PlayerInput:

playerInput.SwitchCurrentActionMap("UI");
playerInput.SwitchCurrentActionMap("Player");

This is useful when opening menus and disabling gameplay controls.