Interface ApplicationListenerRuleProps

All Superinterfaces:
BaseApplicationListenerRuleProps, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
ApplicationListenerRuleProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)", date="2025-05-22T23:39:50.988Z") @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();