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
value
A value of any type that you want to compare.
So I believe that Fn::Equals should support more than just String arguments. I haven't tried to make this change and I can't quite resolve all of the types in my head, but I think we should be able to do something along the lines of
case class `Fn::Equals`[T](a: Token[T], b: Token[T])
extends NestableAmazonFunctionCall[String]("Fn::Equals")
{type CFBackingType = (Token[T], Token[T]) ; val arguments = (a, b)}
I suspect there will be troubles with the serialization though.
The text was updated successfully, but these errors were encountered:
The docs say
So I believe that
Fn::Equals
should support more than just String arguments. I haven't tried to make this change and I can't quite resolve all of the types in my head, but I think we should be able to do something along the lines ofI suspect there will be troubles with the serialization though.
The text was updated successfully, but these errors were encountered: