forked from aws/aws-cdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: new IAM Condition type is unusable in Java (aws#7270)
The changing of the type of `Condition` from `any` to `Record<string, any>` broke common code in Java. Many users would be passing a `Map<String, String>` in that location, which WOULD be assignable to the old type `Object`, but not to the new type `Map<String, Object>`. Revert for now and turn this into a feature request to jsii team.
- Loading branch information
Showing
2 changed files
with
16 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters