interface HttpPathMatchProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.AppMesh.CfnRoute.HttpPathMatchProperty | 
|  Java | software.amazon.awscdk.services.appmesh.CfnRoute.HttpPathMatchProperty | 
|  Python | aws_cdk.aws_appmesh.CfnRoute.HttpPathMatchProperty | 
|  TypeScript | @aws-cdk/aws-appmesh»CfnRoute»HttpPathMatchProperty | 
An object representing the path to match in the request.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as appmesh from '@aws-cdk/aws-appmesh';
const httpPathMatchProperty: appmesh.CfnRoute.HttpPathMatchProperty = {
  exact: 'exact',
  regex: 'regex',
};
Properties
| Name | Type | Description | 
|---|---|---|
| exact? | string | The exact path to match on. | 
| regex? | string | The regex used to match the path. | 
exact?
Type:
string
(optional)
The exact path to match on.
regex?
Type:
string
(optional)
The regex used to match the path.
