Created
July 24, 2019 07:40
-
-
Save raphaelschnaitl/f4902afd2eea575125c455ca9ecec2ac to your computer and use it in GitHub Desktop.
medium.bastion-host.construct.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export interface CustomConstructProps { | |
readonly someParameter: string | |
} | |
export class CustomConstruct extends cdk.Construct { | |
constructor(scope: cdk.Construct, id: string, props: CustomConstructProps) { | |
super(scope,id) | |
//READY TO GO | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment