最佳答案
I'm trying to specify a boolean parameter in a CloudFormation template so I can conditionally create resources based on a parameter passed in.
Looking at the documentation here and here it would appear there is a discernible lack of a boolean data type.
What is best practice for specifying a boolean? possibly Number
with 0 or 1 or String
with AllowedValues
'true' and 'false'?