constructor()

in cdk/lib/cql-lambda.ts [8:23]


	constructor(scope: App, id: string, props: GuStackProps) {
		super(scope, id, props);

		new GuApiLambda(this, 'cql-lambda', {
			app: 'cql-lambda',
			handler: 'cql.Handler::handleRequest',
			functionName: `cql-lambda-${this.stage}`,
			runtime: Runtime.JAVA_11,
			fileName: 'cql-lambda.jar',
			api: {
				id: 'query',
				description: 'Get a CAPI query string from a CQL query',
			},
			monitoringConfiguration: { noMonitoring: true },
		});
	}