@Generated(value="jsii-pacmak/1.31.0 (build 6fa403d)", date="2021-08-11T10:32:10.417Z") @Stability(value=Experimental) public abstract class HttpRoutePathMatch extends software.amazon.jsii.JsiiObject
| Modifier | Constructor and Description |
|---|---|
protected |
HttpRoutePathMatch() |
protected |
HttpRoutePathMatch(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) |
protected |
HttpRoutePathMatch(software.amazon.jsii.JsiiObjectRef objRef) |
| Modifier and Type | Method and Description |
|---|---|
abstract HttpRoutePathMatchConfig |
bind(software.constructs.Construct scope)
(experimental) Returns the route path match configuration.
|
static HttpRoutePathMatch |
exactly(String path)
(experimental) The value of the path must match the specified value exactly.
|
static HttpRoutePathMatch |
regex(String regex)
(experimental) The value of the path must match the specified regex.
|
static HttpRoutePathMatch |
startsWith(String prefix)
(experimental) The value of the path must match the specified prefix.
|
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetprotected HttpRoutePathMatch(software.amazon.jsii.JsiiObjectRef objRef)
protected HttpRoutePathMatch(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
@Stability(value=Experimental) protected HttpRoutePathMatch()
@Stability(value=Experimental) @NotNull public static HttpRoutePathMatch exactly(@NotNull String path)
The provided path must start with the '/' character.
path - the exact path to match on. This parameter is required.@Stability(value=Experimental) @NotNull public static HttpRoutePathMatch regex(@NotNull String regex)
regex - the regex used to match the path. This parameter is required.@Stability(value=Experimental) @NotNull public static HttpRoutePathMatch startsWith(@NotNull String prefix)
prefix - the value to use to match the beginning of the path part of the URL of the request. This parameter is required.@Stability(value=Experimental) @NotNull public abstract HttpRoutePathMatchConfig bind(@NotNull software.constructs.Construct scope)
scope - This parameter is required.Copyright © 2021. All rights reserved.