Interface CfnRule.PathMatchTypeProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRule.PathMatchTypeProperty.Jsii$Proxy
- Enclosing class:
CfnRule
@Stability(Stable)
public static interface CfnRule.PathMatchTypeProperty
extends software.amazon.jsii.JsiiSerializable
Describes a path match type.
Each rule can include only one of the following types of paths.
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.*;
PathMatchTypeProperty pathMatchTypeProperty = PathMatchTypeProperty.builder()
.exact("exact")
.prefix("prefix")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRule.PathMatchTypePropertystatic final classAn implementation forCfnRule.PathMatchTypeProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExact
An exact match of the path.- See Also:
-
getPrefix
A prefix match of the path.- See Also:
-
builder
-