Struct aws_sdk_appmesh::types::HttpGatewayRouteHeader
source · #[non_exhaustive]pub struct HttpGatewayRouteHeader {
pub name: 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
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name: 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§
source§impl HttpGatewayRouteHeader
impl HttpGatewayRouteHeader
sourcepub fn name(&self) -> &str
pub fn name(&self) -> &str
A name for the HTTP header in the gateway route that will be matched on.
sourcepub fn invert(&self) -> Option<bool>
pub fn invert(&self) -> Option<bool>
Specify True
to match anything except the match criteria. The default value is False
.
sourcepub fn match(&self) -> Option<&HeaderMatchMethod>
pub fn match(&self) -> Option<&HeaderMatchMethod>
An object that represents the method and value to match with the header value sent in a request. Specify one match method.
source§impl HttpGatewayRouteHeader
impl HttpGatewayRouteHeader
sourcepub fn builder() -> HttpGatewayRouteHeaderBuilder
pub fn builder() -> HttpGatewayRouteHeaderBuilder
Creates a new builder-style object to manufacture HttpGatewayRouteHeader
.
Trait Implementations§
source§impl Clone for HttpGatewayRouteHeader
impl Clone for HttpGatewayRouteHeader
source§fn clone(&self) -> HttpGatewayRouteHeader
fn clone(&self) -> HttpGatewayRouteHeader
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for HttpGatewayRouteHeader
impl Debug for HttpGatewayRouteHeader
source§impl PartialEq for HttpGatewayRouteHeader
impl PartialEq for HttpGatewayRouteHeader
source§fn eq(&self, other: &HttpGatewayRouteHeader) -> bool
fn eq(&self, other: &HttpGatewayRouteHeader) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for HttpGatewayRouteHeader
Auto Trait Implementations§
impl Freeze for HttpGatewayRouteHeader
impl RefUnwindSafe for HttpGatewayRouteHeader
impl Send for HttpGatewayRouteHeader
impl Sync for HttpGatewayRouteHeader
impl Unpin for HttpGatewayRouteHeader
impl UnwindSafe for HttpGatewayRouteHeader
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.