Struct aws_sdk_appmesh::model::HttpRouteMatch [−][src]
#[non_exhaustive]pub struct HttpRouteMatch {
pub prefix: Option<String>,
pub path: Option<HttpPathMatch>,
pub query_parameters: Option<Vec<HttpQueryParameter>>,
pub method: Option<HttpMethod>,
pub scheme: Option<HttpScheme>,
pub headers: Option<Vec<HttpRouteHeader>>,
}
Expand description
An object that represents the requirements for a route to match HTTP requests for a virtual router.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.prefix: Option<String>
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
.
path: Option<HttpPathMatch>
The client request path to match on.
query_parameters: Option<Vec<HttpQueryParameter>>
The client request query parameters to match on.
method: Option<HttpMethod>
The client request method to match on. Specify only one.
scheme: Option<HttpScheme>
The client request scheme to match on. Specify only one. Applicable only for HTTP2 routes.
headers: Option<Vec<HttpRouteHeader>>
The client request headers to match on.
Implementations
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
.
The client request path to match on.
The client request query parameters to match on.
The client request method to match on. Specify only one.
The client request scheme to match on. Specify only one. Applicable only for HTTP2 routes.
Creates a new builder-style object to manufacture HttpRouteMatch
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for HttpRouteMatch
impl Send for HttpRouteMatch
impl Sync for HttpRouteMatch
impl Unpin for HttpRouteMatch
impl UnwindSafe for HttpRouteMatch
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more