| Package | Description |
|---|---|
| software.amazon.awscdk.services.appmesh |
AWS App Mesh Construct Library
|
| Modifier and Type | Method and Description |
|---|---|
static HttpHeaderMatch |
HttpHeaderMatch.valueDoesNotEndWith(String headerName,
String suffix)
(experimental) The value of the header with the given name in the request must not end with the specified characters.
|
static HttpHeaderMatch |
HttpHeaderMatch.valueDoesNotMatchRegex(String headerName,
String regex)
(experimental) The value of the header with the given name in the request must not include the specified characters.
|
static HttpHeaderMatch |
HttpHeaderMatch.valueDoesNotStartWith(String headerName,
String prefix)
(experimental) The value of the header with the given name in the request must not start with the specified characters.
|
static HttpHeaderMatch |
HttpHeaderMatch.valueEndsWith(String headerName,
String suffix)
(experimental) The value of the header with the given name in the request must end with the specified characters.
|
static HttpHeaderMatch |
HttpHeaderMatch.valueIs(String headerName,
String headerValue)
(experimental) The value of the header with the given name in the request must match the specified value exactly.
|
static HttpHeaderMatch |
HttpHeaderMatch.valueIsNot(String headerName,
String headerValue)
(experimental) The value of the header with the given name in the request must not match the specified value exactly.
|
static HttpHeaderMatch |
HttpHeaderMatch.valueMatchesRegex(String headerName,
String regex)
(experimental) The value of the header with the given name in the request must include the specified characters.
|
static HttpHeaderMatch |
HttpHeaderMatch.valuesIsInRange(String headerName,
Number start,
Number end)
(experimental) The value of the header with the given name in the request must be in a range of values.
|
static HttpHeaderMatch |
HttpHeaderMatch.valuesIsNotInRange(String headerName,
Number start,
Number end)
(experimental) The value of the header with the given name in the request must not be in a range of values.
|
static HttpHeaderMatch |
HttpHeaderMatch.valueStartsWith(String headerName,
String prefix)
(experimental) The value of the header with the given name in the request must start with the specified characters.
|
| Modifier and Type | Method and Description |
|---|---|
default List<HttpHeaderMatch> |
HttpRouteMatch.getHeaders()
(experimental) Specifies the client request headers to match on.
|
List<HttpHeaderMatch> |
HttpRouteMatch.Jsii$Proxy.getHeaders() |
| Modifier and Type | Method and Description |
|---|---|
HttpRouteMatch.Builder |
HttpRouteMatch.Builder.headers(List<? extends HttpHeaderMatch> headers)
Sets the value of
HttpRouteMatch.getHeaders() |
| Constructor and Description |
|---|
Jsii$Proxy(String prefixPath,
List<? extends HttpHeaderMatch> headers,
HttpRouteMatchMethod method,
HttpRouteProtocol protocol)
Constructor that initializes the object based on literal property values passed by the
HttpRouteMatch.Builder. |
Copyright © 2021. All rights reserved.