Struct aws_sdk_appmesh::types::VirtualRouterData
source · #[non_exhaustive]pub struct VirtualRouterData {
pub mesh_name: String,
pub virtual_router_name: String,
pub spec: Option<VirtualRouterSpec>,
pub metadata: Option<ResourceMetadata>,
pub status: Option<VirtualRouterStatus>,
}
Expand description
An object that represents a virtual router returned by a describe operation.
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.mesh_name: String
The name of the service mesh that the virtual router resides in.
virtual_router_name: String
The name of the virtual router.
spec: Option<VirtualRouterSpec>
The specifications of the virtual router.
metadata: Option<ResourceMetadata>
The associated metadata for the virtual router.
status: Option<VirtualRouterStatus>
The current status of the virtual router.
Implementations§
source§impl VirtualRouterData
impl VirtualRouterData
sourcepub fn mesh_name(&self) -> &str
pub fn mesh_name(&self) -> &str
The name of the service mesh that the virtual router resides in.
sourcepub fn virtual_router_name(&self) -> &str
pub fn virtual_router_name(&self) -> &str
The name of the virtual router.
sourcepub fn spec(&self) -> Option<&VirtualRouterSpec>
pub fn spec(&self) -> Option<&VirtualRouterSpec>
The specifications of the virtual router.
sourcepub fn metadata(&self) -> Option<&ResourceMetadata>
pub fn metadata(&self) -> Option<&ResourceMetadata>
The associated metadata for the virtual router.
sourcepub fn status(&self) -> Option<&VirtualRouterStatus>
pub fn status(&self) -> Option<&VirtualRouterStatus>
The current status of the virtual router.
source§impl VirtualRouterData
impl VirtualRouterData
sourcepub fn builder() -> VirtualRouterDataBuilder
pub fn builder() -> VirtualRouterDataBuilder
Creates a new builder-style object to manufacture VirtualRouterData
.
Trait Implementations§
source§impl Clone for VirtualRouterData
impl Clone for VirtualRouterData
source§fn clone(&self) -> VirtualRouterData
fn clone(&self) -> VirtualRouterData
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 VirtualRouterData
impl Debug for VirtualRouterData
source§impl PartialEq for VirtualRouterData
impl PartialEq for VirtualRouterData
source§fn eq(&self, other: &VirtualRouterData) -> bool
fn eq(&self, other: &VirtualRouterData) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for VirtualRouterData
Auto Trait Implementations§
impl Freeze for VirtualRouterData
impl RefUnwindSafe for VirtualRouterData
impl Send for VirtualRouterData
impl Sync for VirtualRouterData
impl Unpin for VirtualRouterData
impl UnwindSafe for VirtualRouterData
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.