This message was deleted.
# typescript
s
This message was deleted.
l
You can't, the opts are constructor-time configurable only. You could create a ComponentResource and make both real resources children of that?
The problem is fairly common: my "favourite" is the CertificateValidation resource, that I want to be the parent of a route53 Record: the only reason I'm creating the Record is to satisfy the validation requirement. But I can't. So I've created a ValidCertificate component, which has all three resources (certificate, validation and record) as its children.
d
Thank @little-cartoon-10569, I’ll take a look at that.