Class: Aws::VPCLattice::Types::HeaderMatch

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

Overview

Describes the constraints for a header match. Matches incoming requests with rule based on request header value before applying rule action.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#case_sensitiveBoolean

Indicates whether the match is case sensitive.

Returns:

  • (Boolean)


1864
1865
1866
1867
1868
1869
1870
# File 'lib/aws-sdk-vpclattice/types.rb', line 1864

class HeaderMatch < Struct.new(
  :case_sensitive,
  :match,
  :name)
  SENSITIVE = []
  include Aws::Structure
end

#matchTypes::HeaderMatchType

The header match type.



1864
1865
1866
1867
1868
1869
1870
# File 'lib/aws-sdk-vpclattice/types.rb', line 1864

class HeaderMatch < Struct.new(
  :case_sensitive,
  :match,
  :name)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the header.

Returns:

  • (String)


1864
1865
1866
1867
1868
1869
1870
# File 'lib/aws-sdk-vpclattice/types.rb', line 1864

class HeaderMatch < Struct.new(
  :case_sensitive,
  :match,
  :name)
  SENSITIVE = []
  include Aws::Structure
end