pub struct RouteServerAssociation {
pub route_server_id: String,
pub vpc_id: String,
pub state: String,
pub propagations: Vec<String>,
}Expand description
A Route Server VPC association.
Fields§
§route_server_id: String§vpc_id: String§state: StringOne of “associating”, “associated”, “disassociating”, “disassociated”.
propagations: Vec<String>Route tables that have route-server propagation enabled, in addition
to whatever the VPC’s main table is. Mutated by
EnableRouteServerPropagation / DisableRouteServerPropagation.
Trait Implementations§
Source§impl Clone for RouteServerAssociation
impl Clone for RouteServerAssociation
Source§fn clone(&self) -> RouteServerAssociation
fn clone(&self) -> RouteServerAssociation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RouteServerAssociation
impl Debug for RouteServerAssociation
Source§impl From<&RouteServerAssociation> for RouteServerAssociationView
impl From<&RouteServerAssociation> for RouteServerAssociationView
Source§fn from(a: &RouteServerAssociation) -> Self
fn from(a: &RouteServerAssociation) -> Self
Converts to this type from the input type.
Source§impl From<RouteServerAssociationView> for RouteServerAssociation
impl From<RouteServerAssociationView> for RouteServerAssociation
Source§fn from(v: RouteServerAssociationView) -> Self
fn from(v: RouteServerAssociationView) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RouteServerAssociation
impl RefUnwindSafe for RouteServerAssociation
impl Send for RouteServerAssociation
impl Sync for RouteServerAssociation
impl Unpin for RouteServerAssociation
impl UnsafeUnpin for RouteServerAssociation
impl UnwindSafe for RouteServerAssociation
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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.