It is possible to do this without an extra setter since Spring Boot 3.3.3 (see here for details):
@ConfigurationProperties("foo") record ConfProps( @Name("otherProp") String myProp ){}
And then use as
foo.otherProp=abc123