@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)",
date="2023-03-22T19:35:48.609Z")
public interface HttpGatewayRoutePathMatchConfig
HttpGatewayRoutePathMatch
.
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.*; HttpGatewayRoutePathMatchConfig httpGatewayRoutePathMatchConfig = HttpGatewayRoutePathMatchConfig.builder() .prefixPathMatch("prefixPathMatch") .prefixPathRewrite(HttpGatewayRoutePrefixRewriteProperty.builder() .defaultPrefix("defaultPrefix") .value("value") .build()) .wholePathMatch(HttpPathMatchProperty.builder() .exact("exact") .regex("regex") .build()) .wholePathRewrite(HttpGatewayRoutePathRewriteProperty.builder() .exact("exact") .build()) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
HttpGatewayRoutePathMatchConfig.Builder
A builder for
HttpGatewayRoutePathMatchConfig |
static class |
HttpGatewayRoutePathMatchConfig.Jsii$Proxy
An implementation for
HttpGatewayRoutePathMatchConfig |
Modifier and Type | Method and Description |
---|---|
static HttpGatewayRoutePathMatchConfig.Builder |
builder() |
default java.lang.String |
getPrefixPathMatch()
Gateway route configuration for matching on the prefix of the URL path of the request.
|
default CfnGatewayRoute.HttpGatewayRoutePrefixRewriteProperty |
getPrefixPathRewrite()
Gateway route configuration for rewriting the prefix of the URL path of the request.
|
default CfnGatewayRoute.HttpPathMatchProperty |
getWholePathMatch()
Gateway route configuration for matching on the complete URL path of the request.
|
default CfnGatewayRoute.HttpGatewayRoutePathRewriteProperty |
getWholePathRewrite()
Gateway route configuration for rewriting the complete URL path of the request..
|
default java.lang.String getPrefixPathMatch()
Default: - no matching will be performed on the prefix of the URL path
default CfnGatewayRoute.HttpGatewayRoutePrefixRewriteProperty getPrefixPathRewrite()
Default: - rewrites the request's URL path to '/'
default CfnGatewayRoute.HttpPathMatchProperty getWholePathMatch()
Default: - no matching will be performed on the complete URL path
default CfnGatewayRoute.HttpGatewayRoutePathRewriteProperty getWholePathRewrite()
Default: - no rewrite will be performed on the request's complete URL path
static HttpGatewayRoutePathMatchConfig.Builder builder()