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

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

Instance Attribute Details

#regex_valuesArray<String>

The regular expressions to compare against the host header. The maximum length of each string is 128 characters.

Returns:

  • (Array<String>)


2022
2023
2024
2025
2026
2027
# File 'gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb', line 2022

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

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

Returns:

  • (Array<String>)


2022
2023
2024
2025
2026
2027
# File 'gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb', line 2022

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