UNPKG

cdkdx

Version:

Zero-config CLI for aws cdk development

10 lines (7 loc) 269 B
import { Construct, Stack, StackProps } from '@aws-cdk/core'; export class ${pascalCase(name)}Stack extends Stack { constructor(scope: Construct, id: string, props?: StackProps) { super(scope, id, props); // The code that defines your stack goes here } }