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();