Interface CfnListener.TargetGroupTupleProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnListener.TargetGroupTupleProperty.Jsii$Proxy
Enclosing class:
CfnListener

@Stability(Stable) public static interface CfnListener.TargetGroupTupleProperty extends software.amazon.jsii.JsiiSerializable
Information about how traffic will be distributed between multiple target groups in a forward rule.

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.*;
 TargetGroupTupleProperty targetGroupTupleProperty = TargetGroupTupleProperty.builder()
         .targetGroupArn("targetGroupArn")
         .weight(123)
         .build();