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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnRoute.HttpPathMatchProperty
static final class
An implementation forCfnRoute.HttpPathMatchProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExact
The exact path to match on.- See Also:
-
getRegex
The regex used to match the path.- See Also:
-
builder
-