Skip to content

Instantly share code, notes, and snippets.

@lampidudelj
Created July 18, 2019 14:02
Show Gist options
  • Save lampidudelj/8155735520f7ebfc141e25dbd6948b28 to your computer and use it in GitHub Desktop.
Save lampidudelj/8155735520f7ebfc141e25dbd6948b28 to your computer and use it in GitHub Desktop.
aws-cdk initial state
import cdk = require('@aws-cdk/core');
export class AwsCdkStack extends cdk.Stack {
constructor(scope: cdk.Construct, id: string, props?: cdk.StackProps) {
super(scope, id, props);
// The code that defines your stack goes here
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment