@Generated(value="jsii-pacmak/1.70.0 (build 03c2f6f)", date="2022-11-01T13:16:42.398Z") @Stability(value=Experimental) public interface HttpRoutePathMatchConfig extends software.amazon.jsii.JsiiSerializable
HttpRoutePathMatch.
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.*;
HttpRoutePathMatchConfig httpRoutePathMatchConfig = HttpRoutePathMatchConfig.builder()
.prefixPathMatch("prefixPathMatch")
.wholePathMatch(HttpPathMatchProperty.builder()
.exact("exact")
.regex("regex")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
HttpRoutePathMatchConfig.Builder
A builder for
HttpRoutePathMatchConfig |
static class |
HttpRoutePathMatchConfig.Jsii$Proxy
An implementation for
HttpRoutePathMatchConfig |
| Modifier and Type | Method and Description |
|---|---|
static HttpRoutePathMatchConfig.Builder |
builder() |
default String |
getPrefixPathMatch()
(experimental) Route configuration for matching on the prefix of the URL path of the request.
|
default CfnRoute.HttpPathMatchProperty |
getWholePathMatch()
(experimental) Route configuration for matching on the complete URL path of the request.
|
@Stability(value=Experimental) @Nullable default String getPrefixPathMatch()
Default: - no matching will be performed on the prefix of the URL path
@Stability(value=Experimental) @Nullable default CfnRoute.HttpPathMatchProperty getWholePathMatch()
Default: - no matching will be performed on the complete URL path
@Stability(value=Experimental) static HttpRoutePathMatchConfig.Builder builder()
HttpRoutePathMatchConfig.Builder of HttpRoutePathMatchConfigCopyright © 2022. All rights reserved.