ApplicationListenerRuleProps
- class aws_cdk.aws_elasticloadbalancingv2.ApplicationListenerRuleProps(*, priority, action=None, conditions=None, target_groups=None, listener)
Bases:
BaseApplicationListenerRulePropsProperties for defining a listener rule.
- Parameters:
priority (
Union[int,float]) – Priority of the rule. The rule with the lowest priority will be used for every request. Priorities must be unique.action (
Optional[ListenerAction]) – Action to perform when requests are received. Only one ofaction,fixedResponse,redirectResponseortargetGroupscan be specified. Default: - No actionconditions (
Optional[Sequence[ListenerCondition]]) – Rule applies if matches the conditions. Default: - No conditions.target_groups (
Optional[Sequence[IApplicationTargetGroup]]) – Target groups to forward requests to. Only one ofaction,fixedResponse,redirectResponseortargetGroupscan be specified. Implies aforwardaction. Default: - No target groups.listener (
IApplicationListener) – The listener to attach the rule to.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_elasticloadbalancingv2 as elbv2 # application_listener: elbv2.ApplicationListener # application_target_group: elbv2.ApplicationTargetGroup # listener_action: elbv2.ListenerAction # listener_condition: elbv2.ListenerCondition application_listener_rule_props = elbv2.ApplicationListenerRuleProps( listener=application_listener, priority=123, # the properties below are optional action=listener_action, conditions=[listener_condition], target_groups=[application_target_group] )
Attributes
- action
Action to perform when requests are received.
Only one of
action,fixedResponse,redirectResponseortargetGroupscan be specified.- Default:
No action
- conditions
Rule applies if matches the conditions.
- listener
The listener to attach the rule to.
- priority
Priority of the rule.
The rule with the lowest priority will be used for every request.
Priorities must be unique.
- target_groups
Target groups to forward requests to.
Only one of
action,fixedResponse,redirectResponseortargetGroupscan be specified.Implies a
forwardaction.- Default:
No target groups.