"InputParameters": {
"daysToExpiration": {
"Fn::If": [
"daysToExpiration",
{
"Ref": "daysToExpiration"
},
{
"Ref": "AWS::NoValue"
}
]
}
},Also need to use in parameters section.
"Parameters": {
"daysToExpiration": {
"Type": "String",
"Default": "14",
"Description": "Specify the number of days before the rule flags the ACM Certificate as noncompliant."
}
}
I tried to use set! with _no_hump but didnt work. Any help much appreciated.