Basic question on aws-cdk, type script and dbParameterGroup #23581
-
Hi I am very new to aws-cdk and also typescript, I'm creating a mysql rds instance with the cdk in type script. For the db parameter group I have this code : It says this parameters is { [string]: string } type but I can't figured how I can create a variable from a string or json or other object type so the content time_zone: 'US/Eastern', binlog_cache_size: '204800' could be given by the user when he calls my stacks. Any help appreciated :) Thank you |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
I Have found that ParameterGroup objetc has a methode addParameter() so I found way to do it. |
Beta Was this translation helpful? Give feedback.
-
Hello! Reopening this discussion to make it searchable. |
Beta Was this translation helpful? Give feedback.
I Have found that ParameterGroup objetc has a methode addParameter() so I found way to do it.