Interface CfnRule.PathMatchProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRule.PathMatchProperty.Jsii$Proxy
- Enclosing class:
- CfnRule
@Stability(Stable)
public static interface CfnRule.PathMatchProperty
extends software.amazon.jsii.JsiiSerializable
Describes the conditions that can be applied when matching a path for incoming requests.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.vpclattice.*; PathMatchProperty pathMatchProperty = PathMatchProperty.builder() .match(PathMatchTypeProperty.builder() .exact("exact") .prefix("prefix") .build()) // the properties below are optional .caseSensitive(false) .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnRule.PathMatchProperty
static final class
An implementation forCfnRule.PathMatchProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMatch
The type of path match. -
getCaseSensitive
Indicates whether the match is case sensitive.Defaults to false.
-
builder
- Returns:
- a
CfnRule.PathMatchProperty.Builder
ofCfnRule.PathMatchProperty
-