Interface IHttpRoutePathMatchConfig
The type returned from the bind()
method in HttpRoutePathMatch
.
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IHttpRoutePathMatchConfig
Syntax (vb)
Public Interface IHttpRoutePathMatchConfig
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 httpRoutePathMatchConfig = new HttpRoutePathMatchConfig {
PrefixPathMatch = "prefixPathMatch",
WholePathMatch = new HttpPathMatchProperty {
Exact = "exact",
Regex = "regex"
}
};
Synopsis
Properties
PrefixPathMatch | Route configuration for matching on the prefix of the URL path of the request. |
WholePathMatch | Route configuration for matching on the complete URL path of the request. |
Properties
PrefixPathMatch
Route configuration for matching on the prefix of the URL path of the request.
virtual string PrefixPathMatch { get; }
Property Value
System.String
Remarks
Default: - no matching will be performed on the prefix of the URL path
WholePathMatch
Route configuration for matching on the complete URL path of the request.
virtual CfnRoute.IHttpPathMatchProperty WholePathMatch { get; }
Property Value
CfnRoute.IHttpPathMatchProperty
Remarks
Default: - no matching will be performed on the complete URL path