Interface CfnRule.IPathMatchProperty
Describes the conditions that can be applied when matching a path for incoming requests.
Namespace: Amazon.CDK.AWS.VpcLattice
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IPathMatchProperty
Syntax (vb)
Public Interface IPathMatchProperty
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.VpcLattice;
var pathMatchProperty = new PathMatchProperty {
Match = new PathMatchTypeProperty {
Exact = "exact",
Prefix = "prefix"
},
// the properties below are optional
CaseSensitive = false
};
Synopsis
Properties
CaseSensitive | Indicates whether the match is case sensitive. |
Match | The type of path match. |
Properties
CaseSensitive
Indicates whether the match is case sensitive.
virtual object CaseSensitive { get; }
Property Value
System.Object
Remarks
Match
The type of path match.
object Match { get; }
Property Value
System.Object