Class CfnRulePropsMixin.PathMatchProperty
Describes the conditions that can be applied when matching a path for incoming requests.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.VpcLattice.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnRulePropsMixin.PathMatchProperty : CfnRulePropsMixin.IPathMatchProperty
Syntax (vb)
Public Class CfnRulePropsMixin.PathMatchProperty Implements CfnRulePropsMixin.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.Mixins.Preview.AWS.VpcLattice.Mixins;
var pathMatchProperty = new PathMatchProperty {
CaseSensitive = false,
Match = new PathMatchTypeProperty {
Exact = "exact",
Prefix = "prefix"
}
};
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.Mixins.Preview.AWS.VpcLattice.Mixins;
var pathMatchProperty = new PathMatchProperty {
CaseSensitive = false,
Match = new PathMatchTypeProperty {
Exact = "exact",
Prefix = "prefix"
}
};
Properties
CaseSensitive
Indicates whether the match is case sensitive.
public object? CaseSensitive { get; set; }
Property Value
Remarks
Default: - false
Type union: either bool or IResolvable
Match
The type of path match.
public object? Match { get; set; }