UNPKG

cdk-tweet-queue

Version:

Defines an SQS queue with tweet stream from a search

9 lines (7 loc) 179 B
export function getEnv(key: string): string { const value = process.env[key]; if (!value) { throw new Error(`Missing environment variable ${key}`); } return value; }