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