Interface CfnListenerRule.TargetGroupTupleProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnListenerRule.TargetGroupTupleProperty.Jsii$Proxy
- Enclosing class:
- CfnListenerRule
@Stability(Stable)
public static interface CfnListenerRule.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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnListenerRule.TargetGroupTupleProperty
static final class
An implementation forCfnListenerRule.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. -
getWeight
The weight.The range is 0 to 999.
-
builder
-