Show / Hide Table of Contents

Class ListenerRuleConditionHttpHeaderArgs

Inheritance
System.Object
InputArgs
ResourceArgs
ListenerRuleConditionHttpHeaderArgs
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.Inputs
Assembly: Pulumi.Aws.dll
Syntax
public sealed class ListenerRuleConditionHttpHeaderArgs : ResourceArgs

Constructors

View Source

ListenerRuleConditionHttpHeaderArgs()

Declaration
public ListenerRuleConditionHttpHeaderArgs()

Properties

View Source

HttpHeaderName

Name of HTTP header to search. The maximum size is 40 characters. Comparison is case insensitive. Only RFC7240 characters are supported. Wildcards are not supported. You cannot use HTTP header condition to specify the host header, use a host-header condition instead.

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

Values

List of header value patterns to match. Maximum size of each pattern is 128 characters. Comparison is case insensitive. Wildcard characters supported: * (matches 0 or more characters) and ? (matches exactly 1 character). If the same header appears multiple times in the request they will be searched in order until a match is found. Only one pattern needs to match for the condition to be satisfied. To require that all of the strings are a match, create one condition block per string.

Declaration
public InputList<string> Values { get; set; }
Property Value
Type Description
InputList<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.