Class: Aws::ElasticLoadBalancingV2::Types::HostHeaderConditionConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticLoadBalancingV2::Types::HostHeaderConditionConfig
- Defined in:
- gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb
Overview
Information about a host header condition.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#regex_values ⇒ Array<String>
The regular expressions to compare against the host header.
-
#values ⇒ Array<String>
The host names.
Instance Attribute Details
#regex_values ⇒ Array<String>
The regular expressions to compare against the host header. The maximum length of each string is 128 characters.
2003 2004 2005 2006 2007 2008 |
# File 'gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb', line 2003 class HostHeaderConditionConfig < Struct.new( :values, :regex_values) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<String>
The host names. The maximum length of each string is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character). You must include at least one "." character. You can include only alphabetical characters after the final "." character.
If you specify multiple strings, the condition is satisfied if one of the strings matches the host name.
2003 2004 2005 2006 2007 2008 |
# File 'gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb', line 2003 class HostHeaderConditionConfig < Struct.new( :values, :regex_values) SENSITIVE = [] include Aws::Structure end |