We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It seems like ApplicationTargetGroup should be implementing IApplicationTargetGroup, but it isn't: https://github.com/awslabs/aws-cdk/blob/master/packages/%40aws-cdk/aws-elasticloadbalancingv2/lib/alb/application-target-group.ts#L65
I ran into this while porting Nathan Peck's ECS blog post sample code to Java: https://aws.amazon.com/blogs/compute/getting-started-with-the-aws-cloud-development-kit-for-amazon-ecs/
Without this, I couldn't figure out how to call ApplicationListener.addTargetGroups and set the target groups in the AddApplicationTargetGroupProps class: https://github.com/awslabs/aws-cdk/blob/master/packages/%40aws-cdk/aws-elasticloadbalancingv2/lib/alb/application-listener.ts#L459
The text was updated successfully, but these errors were encountered:
fix(elbv2): explicitly implement IApplicationTargetGroup
2f43934
Fix usage of application and network target groups in languages without structural typing, such as Java and C#. Fixes #1799.
fix(elbv2): explicitly implement IApplicationTargetGroup (#1806)
828a2d7
w00t! thank you @rix0rrr 😉
Sorry, something went wrong.
1b81758
Successfully merging a pull request may close this issue.
It seems like ApplicationTargetGroup should be implementing IApplicationTargetGroup, but it isn't:
https://github.com/awslabs/aws-cdk/blob/master/packages/%40aws-cdk/aws-elasticloadbalancingv2/lib/alb/application-target-group.ts#L65
I ran into this while porting Nathan Peck's ECS blog post sample code to Java:
https://aws.amazon.com/blogs/compute/getting-started-with-the-aws-cloud-development-kit-for-amazon-ecs/
Without this, I couldn't figure out how to call ApplicationListener.addTargetGroups and set the target groups in the AddApplicationTargetGroupProps class:
https://github.com/awslabs/aws-cdk/blob/master/packages/%40aws-cdk/aws-elasticloadbalancingv2/lib/alb/application-listener.ts#L459
The text was updated successfully, but these errors were encountered: