interface HttpPathMatchProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.AppMesh.CfnRoute.HttpPathMatchProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappmesh#CfnRoute_HttpPathMatchProperty |
Java | software.amazon.awscdk.services.appmesh.CfnRoute.HttpPathMatchProperty |
Python | aws_cdk.aws_appmesh.CfnRoute.HttpPathMatchProperty |
TypeScript | aws-cdk-lib » 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 { aws_appmesh as appmesh } from 'aws-cdk-lib';
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.