Class CfnGatewayRoute.HttpPathMatchProperty
An object representing the path to match in the request.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnGatewayRoute.HttpPathMatchProperty : CfnGatewayRoute.IHttpPathMatchProperty
Syntax (vb)
Public Class CfnGatewayRoute.HttpPathMatchProperty Implements CfnGatewayRoute.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
Constructors
HttpPathMatchProperty() | An object representing the path to match in the request. |
Properties
Exact | The exact path to match on. |
Regex | The regex used to match the path. |
Constructors
HttpPathMatchProperty()
An object representing the path to match in the request.
public HttpPathMatchProperty()
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"
};
Properties
Exact
The exact path to match on.
public string? Exact { get; set; }
Property Value
Remarks
Regex
The regex used to match the path.
public string? Regex { get; set; }