VSCode snippet for AWS CDK
This file contains 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
{ | |
"CDK Construct": { | |
"prefix": "cdk-constructv2", | |
"body": [ | |
"import { Construct } from 'constructs';", | |
"", | |
"export interface ${1:ConstructName}Props {", | |
"", | |
"}", | |
"", | |
"export class ${1:ConstructName} extends Construct {", | |
" constructor(scope: Construct, id: string, props: ${1:ConstructName}Props) {", | |
" super(scope, id);", | |
"", | |
" ${2}", | |
" }", | |
"}" | |
], | |
"description": "Generate a CDK construct scaffold for CDK v2" | |
}, | |
"CDK Import": { | |
"prefix": "cdk-import", | |
"body": ["import * as ${1:service} from 'aws-cdk-lib/aws-${1:service}';"], | |
"description": "Generate a CDK import statement" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment