Interface TargetGroupAttributes

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
TargetGroupAttributes.Jsii$Proxy

@Generated(value="jsii-pacmak/1.94.0 (build b380f01)", date="2024-03-01T20:58:24.355Z") @Stability(Stable) public interface TargetGroupAttributes extends software.amazon.jsii.JsiiSerializable
Properties to reference an existing target group.

Example:

 Stack stack;
 IApplicationTargetGroup targetGroup = ApplicationTargetGroup.fromTargetGroupAttributes(this, "MyTargetGroup", TargetGroupAttributes.builder()
         .targetGroupArn(Fn.importValue("TargetGroupArn"))
         .loadBalancerArns(Fn.importValue("LoadBalancerArn"))
         .build());
 IApplicationTargetGroupMetrics targetGroupMetrics = targetGroup.getMetrics();