Interface BaseApplicationListenerRuleProps

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

@Generated(value="jsii-pacmak/1.106.0 (build e852934)", date="2025-02-06T22:15:54.392Z") @Stability(Stable) public interface BaseApplicationListenerRuleProps extends software.amazon.jsii.JsiiSerializable
Basic properties for defining a rule on a listener.

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.*;
 ApplicationTargetGroup applicationTargetGroup;
 ListenerAction listenerAction;
 ListenerCondition listenerCondition;
 BaseApplicationListenerRuleProps baseApplicationListenerRuleProps = BaseApplicationListenerRuleProps.builder()
         .priority(123)
         // the properties below are optional
         .action(listenerAction)
         .conditions(List.of(listenerCondition))
         .targetGroups(List.of(applicationTargetGroup))
         .build();