AWS CDK Construct
This example shows a basic aws cdk construct configuration.
Basic example
resources:myAwsCdkConstruct:type: aws-cdk-constructproperties:# Path to file where construct resides## Currently `.js` and `.ts` files are supported## - Type: string# - Required: trueentryfilePath: ./src/index.ts# Name of the export (construct class)## If export name is not provided, Stacktape will attempt to import "default" export## - Type: string# - Required: falseexportName: myExportName# Object that will be passed as construct props## Properties passed on to Construct's constructor## - Required: false