In CDK, I know that I can set Cfn parameters on the cdk command line with the --parameters option (as documented here).
My question is: can I do the same programmatically in my CDK app?
For example, I know that I can set context values on the cdk command line with the --context option, and I can do the same programmatically with the construct.node.setContext() method. I'm looking for such a facility to set Cfn parameters. I thought it might be in cdk.Stack, but I'm not finding anything. Thanks!