This is a stable example. It should successfully build out of the box
This examples only on the core CDK library, and does not have any infrastructure prerequisites to build.
This example shows adding a custom resource to a CDK app. This custom resource is useful when considering design of constructs, or separating your architecture into components.
To build this app, you need to be in this example's root folder. Then run the following:
npm install -g aws-cdk
npm install
npm run buildThis will install the necessary CDK, then this example's dependencies, and then build your TypeScript files and your CloudFormation template.
Run cdk deploy. This will deploy / redeploy your Stack to your AWS Account.
After the deployment you will see the API's URL, which represents the url you can then use.
To see the Cloudformation template generated by the CDK, run cdk synth, then check the output file in the "cdk.out" directory.