function getEnvOrThrow()

in cdk/event-forwarder/config.ts [9:15]


function getEnvOrThrow(key: string): string {
	const value = env[key];
	if (value === undefined) {
		throw new Error(`Environment variable ${key} is not set`);
	}
	return value;
}