Skip to content

Instantly share code, notes, and snippets.

@Console32
Created July 24, 2019 07:40
Show Gist options
  • Save Console32/f4902afd2eea575125c455ca9ecec2ac to your computer and use it in GitHub Desktop.
Save Console32/f4902afd2eea575125c455ca9ecec2ac to your computer and use it in GitHub Desktop.
medium.bastion-host.construct.ts
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