Struct aws_sdk_appmesh::model::HttpGatewayRouteHeader [−][src]
#[non_exhaustive]pub struct HttpGatewayRouteHeader {
pub name: Option<String>,
pub invert: Option<bool>,
pub match: Option<HeaderMatchMethod>,
}
Expand description
An object that represents the HTTP header in the gateway route.
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.name: Option<String>
A name for the HTTP header in the gateway route that will be matched on.
invert: Option<bool>
Specify True
to match anything except the match criteria. The default value is False
.
match: Option<HeaderMatchMethod>
An object that represents the method and value to match with the header value sent in a request. Specify one match method.
Implementations
A name for the HTTP header in the gateway route that will be matched on.
Specify True
to match anything except the match criteria. The default value is False
.
An object that represents the method and value to match with the header value sent in a request. Specify one match method.
Creates a new builder-style object to manufacture HttpGatewayRouteHeader
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 HttpGatewayRouteHeader
impl Send for HttpGatewayRouteHeader
impl Sync for HttpGatewayRouteHeader
impl Unpin for HttpGatewayRouteHeader
impl UnwindSafe for HttpGatewayRouteHeader
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