Not directly like that, but if you set up the override through code in game, then that'll work.
tk2dCamera.inst.resolutionOverride = new ...;
tk2dCamera.inst.resolutionOverride[0].width = resolution;
tk2dCamera.inst.resolutionOverride[0].scale = customScale;
and don't forget to call UpdateCameraMatrix after that...