Class: Aws::ElasticLoadBalancingV2::Types::HostHeaderConditionConfig

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#valuesArray<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.

Returns:

  • (Array<String>)


1789
1790
1791
1792
1793
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 1789

class HostHeaderConditionConfig < Struct.new(
  :values)
  SENSITIVE = []
  include Aws::Structure
end