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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnListener.TargetGroupTupleProperty
static final class
An implementation forCfnListener.TargetGroupTupleProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTargetGroupArn
The Amazon Resource Name (ARN) of the target group.- See Also:
-
getWeight
The weight.The range is 0 to 999.
- See Also:
-
builder
-