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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRule.PathMatchPropertystatic final classAn implementation forCfnRule.PathMatchProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMatch
The type of path match.Returns union: either
IResolvableorCfnRule.PathMatchTypeProperty- See Also:
-
getCaseSensitive
Indicates whether the match is case sensitive.Returns union: either
BooleanorIResolvableDefault: - false
- See Also:
-
builder
- Returns:
- a
CfnRule.PathMatchProperty.BuilderofCfnRule.PathMatchProperty
-