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
fix(core): Incorrect arg type on Fn.eachMemberIn (#2958)
Changed the type of the second argument to `Fn.eachMemberIn` to an array
of `string`s, such that it can be used at all.
BREAKING CHANGE: All instance methods of `Fn` were made `static`, and
the `Fn` constructor was made private.
Fixes#2950
@@ -577,8 +579,8 @@ class FnEachMemberIn extends FnConditionBase {
577
579
* @param stringsToCheck A list of strings, such as "A", "B", "C". AWS CloudFormation checks whether each member in the strings_to_check parameter is in the strings_to_match parameter.
578
580
* @param stringsToMatch A list of strings, such as "A", "B", "C". Each member in the strings_to_match parameter is compared against the members of the strings_to_check parameter.
0 commit comments