UNPKG

@softchef/cdk-iot-device-management

Version:

IoT device management is composed of things, thing types, thing groups, jobs, files API services. The constructs can be used independently, that are based on full-managed service to create an API Gateway & Lambda function.

18 lines (17 loc) 909 B
export var validateWaiterOptions = function (options) { if (options.maxWaitTime < 1) { throw new Error("WaiterConfiguration.maxWaitTime must be greater than 0"); } else if (options.minDelay < 1) { throw new Error("WaiterConfiguration.minDelay must be greater than 0"); } else if (options.maxDelay < 1) { throw new Error("WaiterConfiguration.maxDelay must be greater than 0"); } else if (options.maxWaitTime <= options.minDelay) { throw new Error("WaiterConfiguration.maxWaitTime [" + options.maxWaitTime + "] must be greater than WaiterConfiguration.minDelay [" + options.minDelay + "] for this waiter"); } else if (options.maxDelay < options.minDelay) { throw new Error("WaiterConfiguration.maxDelay [" + options.maxDelay + "] must be greater than WaiterConfiguration.minDelay [" + options.minDelay + "] for this waiter"); } };