You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I am trying to create a cfn resource type in go. But the contract tests are failing on the following:
E Request Model : {'MyBoolean': False, 'MyInteger': 10}
E Returned Model : {'MyBoolean': 'false', 'MyInteger': '10'}
E Value forproperty MyBooleanin Request Model(False) and Response Model(false) does not match
In the returned model the values are strings while the input is a boolean and an integer....
Hi, I am trying to create a cfn resource type in go. But the contract tests are failing on the following:
In the returned model the values are strings while the input is a boolean and an integer....
They are defined as:
Am I doing something wrong here? I am using
cfn v0.2.32
The text was updated successfully, but these errors were encountered: