Class: Aws::VPCLattice::Types::HeaderMatch
- Inherits:
-
Struct
- Object
- Struct
- Aws::VPCLattice::Types::HeaderMatch
- Defined in:
- gems/aws-sdk-vpclattice/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.
3041 3042 3043 3044 3045 3046 3047 |
# File 'gems/aws-sdk-vpclattice/lib/aws-sdk-vpclattice/types.rb', line 3041 class HeaderMatch < Struct.new( :name, :match, :case_sensitive) SENSITIVE = [] include Aws::Structure end |
#match ⇒ Types::HeaderMatchType
The header match type.
3041 3042 3043 3044 3045 3046 3047 |
# File 'gems/aws-sdk-vpclattice/lib/aws-sdk-vpclattice/types.rb', line 3041 class HeaderMatch < Struct.new( :name, :match, :case_sensitive) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the header.
3041 3042 3043 3044 3045 3046 3047 |
# File 'gems/aws-sdk-vpclattice/lib/aws-sdk-vpclattice/types.rb', line 3041 class HeaderMatch < Struct.new( :name, :match, :case_sensitive) SENSITIVE = [] include Aws::Structure end |