UNPKG

serverless-offline-streams

Version:

This plugin provides support for event driven systems using Serverless Offline

43 lines (42 loc) 1.44 kB
"use strict"; exports.__esModule = true; exports.validateConfig = exports.getDefaultPluginConfiguration = void 0; var getDefaultPluginConfiguration = function () { return ({ dynamodb: { enabled: false }, sqs: { enabled: false, localQueueManagement: { createFromResources: true, removeOnStart: true, purgeOnStart: false }, errorOnMissingQueueDefinition: true, queues: [], pollConfig: { strategy: 'backoff', drainQueues: false, messageBatchSize: 10, backoffType: 'double', minIntervalMs: 100, maxIntervalMs: 5000 } } }); }; exports.getDefaultPluginConfiguration = getDefaultPluginConfiguration; var validateConfig = function (config) { if (!config.dynamodb || !config.sqs) throw Error("Expected config field not set: dynamodb"); if (!config.sqs) throw Error("Expected config field not set: sqs"); var pollConfig = config.sqs.pollConfig; if (!new Set(['fixed-inteval', 'backoff']).has(pollConfig.strategy)) { throw Error("Unknown polling strategy: '".concat(pollConfig.strategy)); } if (!new Set(['double', 'step']).has(pollConfig.backoffType)) { throw Error("Unknown polling backoffType: '".concat(pollConfig.backoffType)); } return config; }; exports.validateConfig = validateConfig;