Show / Hide Table of Contents

Class ListenerRuleArgs

Inheritance
System.Object
InputArgs
ResourceArgs
ListenerRuleArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.ApplicationLoadBalancing
Assembly: Pulumi.Aws.dll
Syntax
public sealed class ListenerRuleArgs : ResourceArgs

Constructors

View Source

ListenerRuleArgs()

Declaration
public ListenerRuleArgs()

Properties

View Source

Actions

An Action block. Action blocks are documented below.

Declaration
public InputList<ListenerRuleActionArgs> Actions { get; set; }
Property Value
Type Description
InputList<ListenerRuleActionArgs>
View Source

Conditions

A Condition block. Multiple condition blocks of different types can be set and all must be satisfied for the rule to match. Condition blocks are documented below.

Declaration
public InputList<ListenerRuleConditionArgs> Conditions { get; set; }
Property Value
Type Description
InputList<ListenerRuleConditionArgs>
View Source

ListenerArn

The ARN of the listener to which to attach the rule.

Declaration
public Input<string> ListenerArn { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Priority

The priority for the rule between 1 and 50000. Leaving it unset will automatically set the rule with next available priority after currently existing highest rule. A listener can't have multiple rules with the same priority.

Declaration
public Input<int> Priority { get; set; }
Property Value
Type Description
Input<System.Int32>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.