The documentation on AWS-CDK
has examples of setting it up as a standalone application with support in multiple languages.
I have the following questions regarding the same:
- Is it possible to use it within a separate app (written in .NET Core or Angular) like a library?
- By above I mean being able to instantiate the construct classes within my app's services and create stacks in my AWS account.
- If yes, how does it affect the deployment process? Will invoking the
synth()
function, generate the cloud-formation templates as expected?
Apologies if my question is vague. I am just getting started with this and am willing to provide necessary details if needed.
I appreciate any help in this regard. Thank you.