-
Notifications
You must be signed in to change notification settings - Fork 4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
java (dotnet?): arrays in CFN layer are always List<Object> #5067
Comments
The property is typed (in TypeScript) as:
The |
Why we can't generate the following overloads? subscription(List<Object> subscription)
subscription(IResolvable subscription)
subscription(List<SubscriptionProperty> subscription)
subscription(List<IResolvable> subscription) |
No we cannot - |
I am wondering if we should sacrifice |
The only way you can get |
Since this is now in the v2.0 issue, resolving this one. |
The type of
subscription
should beList<CfnTopic.SubscriptionProperty>
but instead it isList<Object>
.Reproduction Steps
Environment
The text was updated successfully, but these errors were encountered: