pub struct RouteTable {
pub route_table_id: String,
pub vpc_id: String,
pub routes: Vec<Route>,
pub associations: Vec<RouteTableAssociation>,
pub propagating_vgws: Vec<String>,
pub tags: Tags,
}Fields§
§route_table_id: String§vpc_id: String§routes: Vec<Route>§associations: Vec<RouteTableAssociation>§propagating_vgws: Vec<String>Virtual private gateway IDs ( vgw-* ) propagating routes into this
route table. Populated by EnableVgwRoutePropagation and consulted
by DescribeRouteTables. Empty when no VGW is propagating.
Trait Implementations§
Source§impl Clone for RouteTable
impl Clone for RouteTable
Source§fn clone(&self) -> RouteTable
fn clone(&self) -> RouteTable
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 RouteTable
impl Debug for RouteTable
Source§impl From<&RouteTable> for RouteTableView
impl From<&RouteTable> for RouteTableView
Source§fn from(rtb: &RouteTable) -> Self
fn from(rtb: &RouteTable) -> Self
Converts to this type from the input type.
Source§impl From<RouteTableView> for RouteTable
impl From<RouteTableView> for RouteTable
Source§fn from(rtb: RouteTableView) -> Self
fn from(rtb: RouteTableView) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RouteTable
impl RefUnwindSafe for RouteTable
impl Send for RouteTable
impl Sync for RouteTable
impl Unpin for RouteTable
impl UnsafeUnpin for RouteTable
impl UnwindSafe for RouteTable
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.