Hey all, Is there any documentation/tutorial on h...
# general
a
Hey all, Is there any documentation/tutorial on how to create new Constructs for CDK?
f
Hey @Adrián Mouly it’s just a class that create a handful of CDK constructs in its constructor.
You can check out the Cron construct.
a
Yeah nice, I was looking for examples.
Looks pretty easy to build a construct.
I was looking to build a construct for Perimeter81, which is a VPN provider.
A construct, for me, it’s like an SDK, basically wraps the HTTP calls behind an easy to use set of classes/methods.
I’m ok thinking like that? or should do more?
d
There are three levels of defined construct, and each is a little more opinionated that the previous level: What are Constructs in AWS CDK - Complete Guide | bobbyhadz Like all things code, you should decide what you are building in advance and cater the process to the decision.
c
a
Thank you guys, going to check this.