function checkDefined()

in blogs/awsconfig-docdb/lib/functions/instances-homogeneous-rule/index.js [9:14]


function checkDefined(reference, referenceName) {
  if (!reference) {
    throw new Error(`Error: ${referenceName} is not defined`);
  }
  return;
}