[][src]Struct rusoto_ec2::RouteTable

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>,
}

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.

tags: Option<Vec<Tag>>

Any tags assigned to the route table.

vpc_id: Option<String>

The ID of the VPC.

Trait Implementations

impl Clone for RouteTable[src]

impl Debug for RouteTable[src]

impl Default for RouteTable[src]

impl PartialEq<RouteTable> for RouteTable[src]

impl StructuralPartialEq for RouteTable[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.