Interface CfnGatewayRoutePropsMixin.IHttpPathMatchProperty
An object representing the path to match in the request.
Namespace: Amazon.CDK.Mixins.Preview.AWS.AppMesh.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnGatewayRoutePropsMixin.IHttpPathMatchProperty
Syntax (vb)
Public Interface CfnGatewayRoutePropsMixin.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.Mixins.Preview.AWS.AppMesh.Mixins;
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; }