@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:36.556Z") @Stability(value=Stable) 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()
Route configuration for matching on the prefix of the URL path of the request.
|
default CfnRoute.HttpPathMatchProperty |
getWholePathMatch()
Route configuration for matching on the complete URL path of the request.
|
@Stability(value=Stable) @Nullable default String getPrefixPathMatch()
Default: - no matching will be performed on the prefix of the URL path
@Stability(value=Stable) @Nullable default CfnRoute.HttpPathMatchProperty getWholePathMatch()
Default: - no matching will be performed on the complete URL path
@Stability(value=Stable) static HttpRoutePathMatchConfig.Builder builder()
HttpRoutePathMatchConfig.Builder of HttpRoutePathMatchConfigCopyright © 2022. All rights reserved.