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-06T23:25:09.909Z") @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();