Class CfnRule.PathMatchProperty
Describes the conditions that can be applied when matching a path for incoming requests.
Inheritance
System.Object
CfnRule.PathMatchProperty
Implements
Namespace: Amazon.CDK.AWS.VpcLattice
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class PathMatchProperty : Object, CfnRule.IPathMatchProperty
Syntax (vb)
Public Class PathMatchProperty
Inherits Object
Implements CfnRule.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
Constructors
PathMatchProperty() |
Properties
CaseSensitive | Indicates whether the match is case sensitive. |
Match | The type of path match. |
Constructors
PathMatchProperty()
public PathMatchProperty()
Properties
CaseSensitive
Indicates whether the match is case sensitive.
public object CaseSensitive { get; set; }
Property Value
System.Object
Remarks
Match
The type of path match.
public object Match { get; set; }
Property Value
System.Object