AWS CloudFormation模板和实际请求类型不匹配

时间:2018-05-11 11:27:57

标签: amazon-web-services amazon-cloudformation

我有以下CloudFormation模板:

 //...
"Predicates":[  
   {  
      "DataId":{  
         "Ref":"WAFSizeCondition1"
      },
      "Negated":false,
      "Type":"SizeConstraint"
   }
]
//...

来自CREATE_IN_PROGRESS步骤的资源的实际请求:

//...
"Predicates":[  
   {  
      "Type":"SizeConstraint",
      "DataId":"b62169bc-5cae-4e2b-850d-04d67fea422e",
      "Negated":"false"
   }
], 
//...

为什么布尔值成为字符串?

0 个答案:

没有答案