Class: Aws::ApiGatewayV2::Types::RoutingRuleMatchHeaderValue

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-apigatewayv2/types.rb

Overview

Represents a MatchHeaderValue.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#headerString

The case insensitive header name to be matched. The header name must be less than 40 characters and the only allowed characters are a-z, A-Z, 0-9, and the following special characters: *?-!#$%&‘.^_`|~.

Returns:

  • (String)


7999
8000
8001
8002
8003
8004
# File 'lib/aws-sdk-apigatewayv2/types.rb', line 7999

class RoutingRuleMatchHeaderValue < Struct.new(
  :header,
  :value_glob)
  SENSITIVE = []
  include Aws::Structure
end

#value_globString

The case sensitive header glob value to be matched against entire header value. The header glob value must be less than 128 characters and the only allowed characters are a-z, A-Z, 0-9, and the following special characters: *?-!#$%&amp;‘.^_`|~. Wildcard matching is supported for header glob values but must be for *prefix-match, suffix-match*, or infix-match.

Returns:

  • (String)


7999
8000
8001
8002
8003
8004
# File 'lib/aws-sdk-apigatewayv2/types.rb', line 7999

class RoutingRuleMatchHeaderValue < Struct.new(
  :header,
  :value_glob)
  SENSITIVE = []
  include Aws::Structure
end