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 IHttpPathMatchProperty
Syntax (vb)
Public Interface 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.
virtual string Exact { get; }
Property Value
System.String
Remarks
Regex
The regex used to match the path.
virtual string Regex { get; }
Property Value
System.String