Interface CfnGatewayRoute.HttpPathMatchProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnGatewayRoute.HttpPathMatchProperty.Jsii$Proxy
- Enclosing class:
- CfnGatewayRoute
@Stability(Stable)
public static interface CfnGatewayRoute.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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnGatewayRoute.HttpPathMatchProperty
static final class
An implementation forCfnGatewayRoute.HttpPathMatchProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExact
The exact path to match on. -
getRegex
The regex used to match the path. -
builder
-