Interface CfnRoute.HttpPathMatchProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnRoute.HttpPathMatchProperty.Jsii$Proxy
Enclosing class:
CfnRoute

@Stability(Stable) public static interface CfnRoute.HttpPathMatchProperty extends software.amazon.jsii.JsiiSerializable
An object representing the path to match in the request.

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.appmesh.*;
 HttpPathMatchProperty httpPathMatchProperty = HttpPathMatchProperty.builder()
         .exact("exact")
         .regex("regex")
         .build();
 

See Also: