Class: Aws::VPCLattice::Types::HttpMatch
- Inherits:
-
Struct
- Object
- Struct
- Aws::VPCLattice::Types::HttpMatch
- Defined in:
- gems/aws-sdk-vpclattice/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.
3176 3177 3178 3179 3180 3181 3182 |
# File 'gems/aws-sdk-vpclattice/lib/aws-sdk-vpclattice/types.rb', line 3176 class HttpMatch < Struct.new( :method, :path_match, :header_matches) SENSITIVE = [] include Aws::Structure end |
#method ⇒ String
The HTTP method type.
3176 3177 3178 3179 3180 3181 3182 |
# File 'gems/aws-sdk-vpclattice/lib/aws-sdk-vpclattice/types.rb', line 3176 class HttpMatch < Struct.new( :method, :path_match, :header_matches) SENSITIVE = [] include Aws::Structure end |
#path_match ⇒ Types::PathMatch
The path match.
3176 3177 3178 3179 3180 3181 3182 |
# File 'gems/aws-sdk-vpclattice/lib/aws-sdk-vpclattice/types.rb', line 3176 class HttpMatch < Struct.new( :method, :path_match, :header_matches) SENSITIVE = [] include Aws::Structure end |