We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47bc9ee commit 9c93ba7Copy full SHA for 9c93ba7
packages/@aws-cdk/cloudformation-include/lib/cfn-include.ts
@@ -50,7 +50,11 @@ export interface CfnIncludeProps {
50
* If you include a parameter here with an ID that isn't in the template,
51
* template creation will fail and an error will be thrown.
52
*
53
- * @default - no parameters will be replaced
+ * If you are importing a parameter from a live stack, we cannot know the value of that
54
+ * parameter. You will need to supply a value for your parameters, else the default
55
+ * value will be used.
56
+ *
57
+ * @default - parameters will retain their original definitions
58
*/
59
readonly parameters?: { [parameterName: string]: any };
60
}
0 commit comments