interface HttpPathMatchProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppMesh.CfnRoutePropsMixin.HttpPathMatchProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappmesh#CfnRoutePropsMixin_HttpPathMatchProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.appmesh.CfnRoutePropsMixin.HttpPathMatchProperty |
Python | aws_cdk.cfn_property_mixins.aws_appmesh.CfnRoutePropsMixin.HttpPathMatchProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appmesh » CfnRoutePropsMixin » 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/cfn-property-mixins';
const httpPathMatchProperty: appmesh.CfnRoutePropsMixin.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.

.NET
Go
Java
Python
TypeScript