Interface TargetGroupImportProps

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

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:44.397Z") @Stability(Deprecated) @Deprecated public interface TargetGroupImportProps extends software.amazon.jsii.JsiiSerializable, TargetGroupAttributes
Deprecated.
Use TargetGroupAttributes instead
(deprecated) Properties to reference an existing target group.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.elasticloadbalancingv2.*;
 TargetGroupImportProps targetGroupImportProps = TargetGroupImportProps.builder()
         .targetGroupArn("targetGroupArn")
         // the properties below are optional
         .defaultPort("defaultPort")
         .loadBalancerArns("loadBalancerArns")
         .build();