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.
1999 2000 2001 2002 2003 2004 2005 |
# File 'lib/aws-sdk-vpclattice/types.rb', line 1999 class HttpMatch < Struct.new( :header_matches, :method, :path_match) SENSITIVE = [] include Aws::Structure end |
#method ⇒ String
The HTTP method type.
1999 2000 2001 2002 2003 2004 2005 |
# File 'lib/aws-sdk-vpclattice/types.rb', line 1999 class HttpMatch < Struct.new( :header_matches, :method, :path_match) SENSITIVE = [] include Aws::Structure end |
#path_match ⇒ Types::PathMatch
The path match.
1999 2000 2001 2002 2003 2004 2005 |
# File 'lib/aws-sdk-vpclattice/types.rb', line 1999 class HttpMatch < Struct.new( :header_matches, :method, :path_match) SENSITIVE = [] include Aws::Structure end |