Can I use UObjects as value in config files?

Following the documentation:

I can’t see a way to set/create objects as values in the config file, that is if I have an object UServerSettings create an array of objects ServerSettings with values defined.

I know how to do that using structs, but I need them to be objects, I am currently creating new objects and copy the values from the structs in the initialize() method.

[/Script/MyPoject.MyServerSubsystem]
+ServerSettings=(Name="Local",URL="127.0.0.1:9999");is a struct and I want an UObject
+ServerSettings=(Name="AWS",URL="18.150.23.13:9999"); is a struct and I want an UObject

Is there a way to have an array of objects instead of Structs?

Thanks!

I am struggling with this as well Did you ever get an answer? The Default classes are UObjects and those are stored in the config files. But I can’t put an instance in a config.

I Realy like to understand this better.