Class: Aws::VPCLattice::Types::HeaderMatch
- Inherits:
-
Struct
- Object
- Struct
- Aws::VPCLattice::Types::HeaderMatch
- 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
-
#case_sensitive ⇒ Boolean
Indicates whether the match is case sensitive.
-
#match ⇒ Types::HeaderMatchType
The header match type.
-
#name ⇒ String
The name of the header.
Instance Attribute Details
#case_sensitive ⇒ Boolean
Indicates whether the match is case sensitive.
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 |
#match ⇒ Types::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 |
#name ⇒ String
The name of the header.
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 |