pub struct RouteTable {
pub associations: Option<Vec<RouteTableAssociation>>,
pub owner_id: Option<String>,
pub propagating_vgws: Option<Vec<PropagatingVgw>>,
pub route_table_id: Option<String>,
pub routes: Option<Vec<Route>>,
pub tags: Option<Vec<Tag>>,
pub vpc_id: Option<String>,
}Expand description
Describes a route table.
Fields§
§associations: Option<Vec<RouteTableAssociation>>The associations between the route table and one or more subnets or a gateway.
owner_id: Option<String>The ID of the AWS account that owns the route table.
propagating_vgws: Option<Vec<PropagatingVgw>>Any virtual private gateway (VGW) propagating routes.
route_table_id: Option<String>The ID of the route table.
routes: Option<Vec<Route>>The routes in the route table.
Any tags assigned to the route table.
vpc_id: Option<String>The ID of the VPC.
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 · 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 Default for RouteTable
impl Default for RouteTable
Source§fn default() -> RouteTable
fn default() -> RouteTable
Returns the “default value” for a type. Read more
Source§impl PartialEq for RouteTable
impl PartialEq for RouteTable
impl StructuralPartialEq for RouteTable
Auto Trait Implementations§
impl Freeze for RouteTable
impl RefUnwindSafe for RouteTable
impl Send for RouteTable
impl Sync for RouteTable
impl Unpin 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