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
TargetGroup construct accept targetGroupName as its prop and passes it to underlying CfnTargetGroup by the same name targetGroupName.
TargetGroup
targetGroupName
CfnTargetGroup
https://github.com/awslabs/aws-cdk/blob/299fb6a71ae94950c8d3c844d14779feb68e215f/packages/%40aws-cdk/aws-elasticloadbalancingv2/lib/shared/base-target-group.ts#L216
But the correct prop name is Name, not TargetGroupName, so we cannot set the resource's name using the construct.
Name
TargetGroupName
The text was updated successfully, but these errors were encountered:
fix(elbv2): use correct prop for TargetGroup name
26fc74c
TargetGroup construct passes targetGroupName prop to underlying CfnTargetGroup, but the correct name is Name, not TargetGroupName. fixes aws#1674
fix(elbv2): fix specifying TargetGroup name (#1684)
1d7198a
TargetGroup construct passes targetGroupName prop to underlying CfnTargetGroup, but the correct name is Name, not TargetGroupName. Fixes #1674
Successfully merging a pull request may close this issue.
TargetGroup
construct accepttargetGroupName
as its prop and passes it to underlyingCfnTargetGroup
by the same nametargetGroupName
.https://github.com/awslabs/aws-cdk/blob/299fb6a71ae94950c8d3c844d14779feb68e215f/packages/%40aws-cdk/aws-elasticloadbalancingv2/lib/shared/base-target-group.ts#L216
But the correct prop name is
Name
, notTargetGroupName
, so we cannot set the resource's name using the construct.The text was updated successfully, but these errors were encountered: