Interface CfnGatewayRoutePropsMixin.HttpPathMatchProperty

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

@Stability(Stable) public static interface CfnGatewayRoutePropsMixin.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.cfnpropertymixins.services.appmesh.*;
 HttpPathMatchProperty httpPathMatchProperty = HttpPathMatchProperty.builder()
         .exact("exact")
         .regex("regex")
         .build();
 

See Also: