Struct aws_sdk_appmesh::types::GatewayRouteSpec
source · #[non_exhaustive]pub struct GatewayRouteSpec {
pub priority: Option<i32>,
pub http_route: Option<HttpGatewayRoute>,
pub http2_route: Option<HttpGatewayRoute>,
pub grpc_route: Option<GrpcGatewayRoute>,
}
Expand description
An object that represents a gateway route specification. Specify one gateway route type.
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.priority: Option<i32>
The ordering of the gateway routes spec.
http_route: Option<HttpGatewayRoute>
An object that represents the specification of an HTTP gateway route.
http2_route: Option<HttpGatewayRoute>
An object that represents the specification of an HTTP/2 gateway route.
grpc_route: Option<GrpcGatewayRoute>
An object that represents the specification of a gRPC gateway route.
Implementations§
source§impl GatewayRouteSpec
impl GatewayRouteSpec
sourcepub fn http_route(&self) -> Option<&HttpGatewayRoute>
pub fn http_route(&self) -> Option<&HttpGatewayRoute>
An object that represents the specification of an HTTP gateway route.
sourcepub fn http2_route(&self) -> Option<&HttpGatewayRoute>
pub fn http2_route(&self) -> Option<&HttpGatewayRoute>
An object that represents the specification of an HTTP/2 gateway route.
sourcepub fn grpc_route(&self) -> Option<&GrpcGatewayRoute>
pub fn grpc_route(&self) -> Option<&GrpcGatewayRoute>
An object that represents the specification of a gRPC gateway route.
source§impl GatewayRouteSpec
impl GatewayRouteSpec
sourcepub fn builder() -> GatewayRouteSpecBuilder
pub fn builder() -> GatewayRouteSpecBuilder
Creates a new builder-style object to manufacture GatewayRouteSpec
.
Trait Implementations§
source§impl Clone for GatewayRouteSpec
impl Clone for GatewayRouteSpec
source§fn clone(&self) -> GatewayRouteSpec
fn clone(&self) -> GatewayRouteSpec
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 GatewayRouteSpec
impl Debug for GatewayRouteSpec
source§impl PartialEq for GatewayRouteSpec
impl PartialEq for GatewayRouteSpec
source§fn eq(&self, other: &GatewayRouteSpec) -> bool
fn eq(&self, other: &GatewayRouteSpec) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GatewayRouteSpec
Auto Trait Implementations§
impl Freeze for GatewayRouteSpec
impl RefUnwindSafe for GatewayRouteSpec
impl Send for GatewayRouteSpec
impl Sync for GatewayRouteSpec
impl Unpin for GatewayRouteSpec
impl UnwindSafe for GatewayRouteSpec
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.