Interface CfnRoute.IHttpPathMatchProperty
An object representing the path to match in the request.
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnRoute.IHttpPathMatchProperty
Syntax (vb)
Public Interface CfnRoute.IHttpPathMatchProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.AppMesh;
var httpPathMatchProperty = new HttpPathMatchProperty {
Exact = "exact",
Regex = "regex"
};
Synopsis
Properties
| Exact | The exact path to match on. |
| Regex | The regex used to match the path. |
Properties
Exact
The exact path to match on.
string? Exact { get; }
Property Value
Remarks
Regex
The regex used to match the path.
string? Regex { get; }