@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()
For responses, this returns true if the service returned a value for the Headers property.
|
boolean |
hasQueryParameters()
For responses, this returns true if the service returned a value for the QueryParameters property.
|
List<HttpRouteHeader> |
headers()
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.
|
HttpPathMatch |
path()
The client request path to match on.
|
Integer |
port()
The port number to match on.
|
String |
prefix()
Specifies the path to match requests with.
|
List<HttpQueryParameter> |
queryParameters()
The client request query parameters to match on.
|
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()
isEmpty() method on the property). This is
useful because the SDK will never return a null collection or map, but you may need to differentiate between the
service returning nothing (or null) and the service returning an empty collection or map. For requests, this
returns true if a value for the property was specified in the request builder, and false if a value was not
specified.public final List<HttpRouteHeader> headers()
The client request headers to match on.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
This method will never return null. If you would like to know whether the service returned this field (so that
you can differentiate between null and empty), you can use the hasHeaders() method.
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 HttpPathMatch path()
The client request path to match on.
public final Integer port()
The port number to match on.
public 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 boolean hasQueryParameters()
isEmpty() method on the property).
This is useful because the SDK will never return a null collection or map, but you may need to differentiate
between the service returning nothing (or null) and the service returning an empty collection or map. For
requests, this returns true if a value for the property was specified in the request builder, and false if a
value was not specified.public final List<HttpQueryParameter> queryParameters()
The client request query parameters to match on.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
This method will never return null. If you would like to know whether the service returned this field (so that
you can differentiate between null and empty), you can use the hasQueryParameters() method.
public final HttpScheme scheme()
The client request scheme to match on. Specify only one. Applicable only for HTTP2 routes.
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. Applicable only for HTTP2 routes.
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 © 2023. All rights reserved.