function assertenv()

in source/lib/cdk-solution-stack.ts [108:114]


function assertenv(...env: string[]) {
  for (const e of env) {
    if (!process.env[e]) {
      throw new Error(`Env ${e} is not set!`);
    }
  }
}