@faceteer/cdk
Version:
CDK 2.0 constructs and helpers that make composing a Lambda powered service easier.
16 lines (15 loc) • 482 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.HandlerTypes = void 0;
/**
* The different types of handlers supported
* by this library
*/
var HandlerTypes;
(function (HandlerTypes) {
HandlerTypes["API"] = "api";
HandlerTypes["Cron"] = "cron";
HandlerTypes["Queue"] = "queue";
HandlerTypes["Event"] = "event";
HandlerTypes["Notification"] = "notification";
})(HandlerTypes || (exports.HandlerTypes = HandlerTypes = {}));