in index.js [65:73]
checkLambdaInsightsType(value) {
if (typeof value === 'boolean') {
return value;
} else {
throw new Error(
'LambdaInsights and DefaultLambdaInsights values must be set to either true or false.',
);
}
}