Interface TargetGroupAttributes

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

@Generated(value="jsii-pacmak/1.101.0 (build b95fe5d)", date="2024-07-22T22:42:51.743Z") @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();