Class: Aws::VPCLattice::Types::HttpMatch
- Inherits:
-
Struct
- Object
- Struct
- Aws::VPCLattice::Types::HttpMatch
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-vpclattice/types.rb
Overview
Describes criteria that can be applied to incoming requests.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#header_matches ⇒ Array<Types::HeaderMatch>
The header matches.
-
#method ⇒ String
The HTTP method type.
-
#path_match ⇒ Types::PathMatch
The path match.
Instance Attribute Details
#header_matches ⇒ Array<Types::HeaderMatch>
The header matches. Matches incoming requests with rule based on request header value before applying rule action.
2817 2818 2819 2820 2821 2822 2823 |
# File 'lib/aws-sdk-vpclattice/types.rb', line 2817 class HttpMatch < Struct.new( :header_matches, :method, :path_match) SENSITIVE = [] include Aws::Structure end |
#method ⇒ String
The HTTP method type.
2817 2818 2819 2820 2821 2822 2823 |
# File 'lib/aws-sdk-vpclattice/types.rb', line 2817 class HttpMatch < Struct.new( :header_matches, :method, :path_match) SENSITIVE = [] include Aws::Structure end |
#path_match ⇒ Types::PathMatch
The path match.
2817 2818 2819 2820 2821 2822 2823 |
# File 'lib/aws-sdk-vpclattice/types.rb', line 2817 class HttpMatch < Struct.new( :header_matches, :method, :path_match) SENSITIVE = [] include Aws::Structure end |