delightful-monkey-90700
05/09/2022, 2:23 PMconst restAPI = new AWSAPIGateway.LambdaRestApi(stack, 'restAPI', {
		handler: nodeAlias,
		proxy: true,
		restApiName: `xxx-http-${environment}`,
		deploy: true,
		deployOptions: {
			stageName: 'api'
		},
		endpointConfiguration: {
			types: [AWSAPIGateway.EndpointType.REGIONAL]
		}
	});@pulumi/aws-apigateway