Hi, question about Custom vs Component Resources. ...
# general
d
Hi, question about Custom vs Component Resources. I'm creating wrapper classes that aggregate cloud resources, should I be using ComponentResource or CustomResource as my super class? The documentation seems to push me towards the ComponentResource - how does a weary programmer decide on such things? 🙂 Thank you!
e
Use ComponentResource
CustomResource is for single atomic resources being managed by a resource provider. An S3 bucket, or azure VM for example.
d
Got it ... thank you!