Interface ApplicationListenerRuleProps

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

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-18T17:54:16.964Z") @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();