in src/constructs/core/parameters/base.ts [17:25]
constructor(scope: GuStack, id: string, props: GuParameterProps) {
super(scope, id, {
...(props.fromSSM && { default: "Add the SSM path as the default value e.g. /$stage/$stack/$app/$param" }),
...props,
type: props.fromSSM ? `AWS::SSM::Parameter::Value<${props.type ?? "String"}>` : props.type,
});
this.id = id;
}