Class: Aws::AppMesh::Types::HttpPathMatch
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::HttpPathMatch
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-appmesh/types.rb
Overview
An object representing the path to match in the request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#exact ⇒ String
The exact path to match on.
-
#regex ⇒ String
The regex used to match the path.
Instance Attribute Details
#exact ⇒ String
The exact path to match on.
2431 2432 2433 2434 2435 2436 |
# File 'lib/aws-sdk-appmesh/types.rb', line 2431 class HttpPathMatch < Struct.new( :exact, :regex) SENSITIVE = [] include Aws::Structure end |
#regex ⇒ String
The regex used to match the path.
2431 2432 2433 2434 2435 2436 |
# File 'lib/aws-sdk-appmesh/types.rb', line 2431 class HttpPathMatch < Struct.new( :exact, :regex) SENSITIVE = [] include Aws::Structure end |