Extend Scene Capture 2D Actor?

I would like to extend the Scene Capture 2D Actor to enable some additional properties, overwrite a few things and add more capabilities.

I am unfortunately unable to locate how to extend this…

#pragma once

#include "Components/ActorComponent.h"
#include "CameraSensor.generated.h"


UCLASS()
class BATTERYCOLLECTOR_API UCameraSensor : public ASceneCapture
{
	GENERATED_BODY()

public:	
	// Sets default values for this component's properties
	UCameraSensor();
	
};

ASceneCapture or ASceneCapture2D does not exist. Where is this thing?