Interface CfnRulePropsMixin.PathMatchProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRulePropsMixin.PathMatchProperty.Jsii$Proxy
- Enclosing class:
CfnRulePropsMixin
@Stability(Stable)
public static interface CfnRulePropsMixin.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.cfnpropertymixins.services.vpclattice.*;
PathMatchProperty pathMatchProperty = PathMatchProperty.builder()
.caseSensitive(false)
.match(PathMatchTypeProperty.builder()
.exact("exact")
.prefix("prefix")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRulePropsMixin.PathMatchPropertystatic final classAn implementation forCfnRulePropsMixin.PathMatchProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCaseSensitive
Indicates whether the match is case sensitive.Returns union: either
BooleanorIResolvableDefault: - false
- See Also:
-
getMatch
The type of path match.Returns union: either
IResolvableorCfnRulePropsMixin.PathMatchTypeProperty- See Also:
-
builder
-