Struct aws_sdk_appmesh::types::GatewayRouteHostnameMatch
source · #[non_exhaustive]pub struct GatewayRouteHostnameMatch {
pub exact: Option<String>,
pub suffix: Option<String>,
}
Expand description
An object representing the gateway route host name to match.
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.exact: Option<String>
The exact host name to match on.
suffix: Option<String>
The specified ending characters of the host name to match on.
Implementations§
source§impl GatewayRouteHostnameMatch
impl GatewayRouteHostnameMatch
sourcepub fn builder() -> GatewayRouteHostnameMatchBuilder
pub fn builder() -> GatewayRouteHostnameMatchBuilder
Creates a new builder-style object to manufacture GatewayRouteHostnameMatch
.
Trait Implementations§
source§impl Clone for GatewayRouteHostnameMatch
impl Clone for GatewayRouteHostnameMatch
source§fn clone(&self) -> GatewayRouteHostnameMatch
fn clone(&self) -> GatewayRouteHostnameMatch
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 GatewayRouteHostnameMatch
impl Debug for GatewayRouteHostnameMatch
source§impl PartialEq for GatewayRouteHostnameMatch
impl PartialEq for GatewayRouteHostnameMatch
source§fn eq(&self, other: &GatewayRouteHostnameMatch) -> bool
fn eq(&self, other: &GatewayRouteHostnameMatch) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GatewayRouteHostnameMatch
Auto Trait Implementations§
impl RefUnwindSafe for GatewayRouteHostnameMatch
impl Send for GatewayRouteHostnameMatch
impl Sync for GatewayRouteHostnameMatch
impl Unpin for GatewayRouteHostnameMatch
impl UnwindSafe for GatewayRouteHostnameMatch
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>
Creates a shared type from an unshared type.