How to access PlayerCameraManager on a PlayerController?

I’m trying to reference a PlayerCameraManager from a PlayerController class. I’m stuck in the constructor where I don’t know how to call the PlayerCameraManager. What would be the correct way of calling PlayerCameraManager?

I’ve tried these but none of them work:

CameraManager = APlayerCameraManager::StaticClass();
APlayerCameraManager* CameraManager = UGameplayStatics::GetPlayerCameraManager(GetWorld(), 0);
CameraManager = CreateDefaultSubObject<APlayerCameraManager>("PlayerCamManager")