Interface ApplicationListenerRuleProps
- All Superinterfaces:
BaseApplicationListenerRuleProps,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ApplicationListenerRuleProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-21T06:34:08.103Z")
@Stability(Stable)
public interface ApplicationListenerRuleProps
extends software.amazon.jsii.JsiiSerializable, BaseApplicationListenerRuleProps
Properties for defining a listener 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.*;
ApplicationListener applicationListener;
ApplicationTargetGroup applicationTargetGroup;
ListenerAction listenerAction;
ListenerCondition listenerCondition;
ApplicationListenerRuleProps applicationListenerRuleProps = ApplicationListenerRuleProps.builder()
.listener(applicationListener)
.priority(123)
// the properties below are optional
.action(listenerAction)
.conditions(List.of(listenerCondition))
.targetGroups(List.of(applicationTargetGroup))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forApplicationListenerRulePropsstatic final classAn implementation forApplicationListenerRuleProps -
Method Summary
Methods inherited from interface software.amazon.awscdk.services.elasticloadbalancingv2.BaseApplicationListenerRuleProps
getAction, getConditions, getPriority, getTargetGroupsMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getListener
The listener to attach the rule to. -
builder
-