[][src]Struct rusoto_ec2::RouteTableAssociation

pub struct RouteTableAssociation {
    pub main: Option<bool>,
    pub route_table_association_id: Option<String>,
    pub route_table_id: Option<String>,
    pub subnet_id: Option<String>,
}

Describes an association between a route table and a subnet.

Fields

main: Option<bool>

Indicates whether this is the main route table.

route_table_association_id: Option<String>

The ID of the association between a route table and a subnet.

route_table_id: Option<String>

The ID of the route table.

subnet_id: Option<String>

The ID of the subnet. A subnet ID is not returned for an implicit association.

Trait Implementations

impl PartialEq<RouteTableAssociation> for RouteTableAssociation[src]

impl Default for RouteTableAssociation[src]

impl Clone for RouteTableAssociation[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for RouteTableAssociation[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Erased for T