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: