- @TheLeadDev #LeadDevLondon
- white coat captioning - @whitecoatcapxg
- wvnts.co/lduk2018
- happy pride! it’s like the world cup for people with fashion sense
- who am I?
| import * as cdk from '@aws-cdk/cdk'; | |
| import * as SwaggerParser from "swagger-parser"; | |
| import convertSwaggerToCdkRestApi from "./swaggerHelper"; | |
| SwaggerParser | |
| .parse("./swagger.yaml") | |
| .then(swagger => { | |
| const app = new cdk.App(); | |
| let apiGateway = new apigateway.RestApi(this, "My Rest API", { |