in src/constructs/core/parameters/fastly.ts [22:28]
public static getInstance(stack: GuStack): GuFastlyCustomerIdParameter {
if (!this.instance || !isSingletonPresentInStack(stack, this.instance)) {
this.instance = new GuFastlyCustomerIdParameter(stack);
}
return this.instance;
}