Class: Aws::ElasticLoadBalancingV2::Types::HostHeaderConditionConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticLoadBalancingV2::Types::HostHeaderConditionConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticloadbalancingv2/types.rb
Overview
Information about a host header condition.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#values ⇒ Array<String>
The host names.
Instance Attribute Details
#values ⇒ Array<String>
The host names. The maximum size of each name is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character).
If you specify multiple strings, the condition is satisfied if one of the strings matches the host name.
1983 1984 1985 1986 1987 |
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 1983 class HostHeaderConditionConfig < Struct.new( :values) SENSITIVE = [] include Aws::Structure end |