@Generated(value="software.amazon.awssdk:codegen") public final class HttpRouteMatch extends Object implements SdkPojo, Serializable, ToCopyableBuilder<HttpRouteMatch.Builder,HttpRouteMatch>
An object that represents the requirements for a route to match HTTP requests for a virtual router.
| Modifier and Type | Class and Description |
|---|---|
static interface |
HttpRouteMatch.Builder |
| Modifier and Type | Method and Description |
|---|---|
static HttpRouteMatch.Builder |
builder() |
boolean |
equals(Object obj) |
boolean |
equalsBySdkFields(Object obj) |
<T> Optional<T> |
getValueForField(String fieldName,
Class<T> clazz) |
int |
hashCode() |
boolean |
hasHeaders()
Returns true if the Headers property was specified by the sender (it may be empty), or false if the sender did
not specify the value (it will be empty).
|
List<HttpRouteHeader> |
headers()
An object that represents the client request headers to match on.
|
HttpMethod |
method()
The client request method to match on.
|
String |
methodAsString()
The client request method to match on.
|
String |
prefix()
Specifies the path to match requests with.
|
HttpScheme |
scheme()
The client request scheme to match on.
|
String |
schemeAsString()
The client request scheme to match on.
|
List<SdkField<?>> |
sdkFields() |
static Class<? extends HttpRouteMatch.Builder> |
serializableBuilderClass() |
HttpRouteMatch.Builder |
toBuilder() |
String |
toString()
Returns a string representation of this object.
|
clone, finalize, getClass, notify, notifyAll, wait, wait, waitcopypublic final boolean hasHeaders()
public final List<HttpRouteHeader> headers()
An object that represents the client request headers to match on.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
You can use hasHeaders() to see if a value was sent in this field.
public final HttpMethod method()
The client request method to match on. Specify only one.
If the service returns an enum value that is not available in the current SDK version, method will
return HttpMethod.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available from
methodAsString().
HttpMethodpublic final String methodAsString()
The client request method to match on. Specify only one.
If the service returns an enum value that is not available in the current SDK version, method will
return HttpMethod.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available from
methodAsString().
HttpMethodpublic final String prefix()
Specifies the path to match requests with. This parameter must always start with /, which by itself
matches all requests to the virtual service name. You can also match for path-based routing of requests. For
example, if your virtual service name is my-service.local and you want the route to match requests
to my-service.local/metrics, your prefix should be /metrics.
/, which by
itself matches all requests to the virtual service name. You can also match for path-based routing of
requests. For example, if your virtual service name is my-service.local and you want the
route to match requests to my-service.local/metrics, your prefix should be
/metrics.public final HttpScheme scheme()
The client request scheme to match on. Specify only one.
If the service returns an enum value that is not available in the current SDK version, scheme will
return HttpScheme.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available from
schemeAsString().
HttpSchemepublic final String schemeAsString()
The client request scheme to match on. Specify only one.
If the service returns an enum value that is not available in the current SDK version, scheme will
return HttpScheme.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available from
schemeAsString().
HttpSchemepublic HttpRouteMatch.Builder toBuilder()
toBuilder in interface ToCopyableBuilder<HttpRouteMatch.Builder,HttpRouteMatch>public static HttpRouteMatch.Builder builder()
public static Class<? extends HttpRouteMatch.Builder> serializableBuilderClass()
public final boolean equalsBySdkFields(Object obj)
equalsBySdkFields in interface SdkPojopublic final String toString()
Copyright © 2021. All rights reserved.