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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnGatewayRoute.HttpPathMatchPropertystatic final classAn implementation forCfnGatewayRoute.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
-