From 0737b4ebc0ac6f10355db5d05ef24dcc925d80db Mon Sep 17 00:00:00 2001 From: Colin Francis <131073567+colifran@users.noreply.github.com> Date: Fri, 16 Jun 2023 14:20:58 -0700 Subject: [PATCH] chore(elasticloadbalancingv2): moved health check docstring over health check attribute (#26017) This PR fixes a small formatting issue where the docstring describing a health check in the TargetGroupBase class was out of place. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* --- .../lib/shared/base-target-group.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/base-target-group.ts b/packages/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/base-target-group.ts index dc180d2d9f8f1..7524d07559fca 100644 --- a/packages/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/base-target-group.ts +++ b/packages/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/base-target-group.ts @@ -188,14 +188,14 @@ export abstract class TargetGroupBase extends Construct implements ITargetGroup */ public abstract readonly firstLoadBalancerFullName: string; - /** - * Health check for the members of this target group - */ /** * A token representing a list of ARNs of the load balancers that route traffic to this target group */ public readonly loadBalancerArns: string; + /** + * Health check for the members of this target group + */ public healthCheck: HealthCheck; /**