Struct aws_sdk_appmesh::types::HttpGatewayRouteHeader
source · #[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
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: 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§
source§impl HttpGatewayRouteHeader
impl HttpGatewayRouteHeader
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&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<HttpGatewayRouteHeader> for HttpGatewayRouteHeader
impl PartialEq<HttpGatewayRouteHeader> 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 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