[][src]Struct rusoto_ec2::LocalGatewayVirtualInterface

pub struct LocalGatewayVirtualInterface {
    pub local_address: Option<String>,
    pub local_bgp_asn: Option<i64>,
    pub local_gateway_id: Option<String>,
    pub local_gateway_virtual_interface_id: Option<String>,
    pub peer_address: Option<String>,
    pub peer_bgp_asn: Option<i64>,
    pub tags: Option<Vec<Tag>>,
    pub vlan: Option<i64>,
}

Describes a local gateway virtual interface.

Fields

local_address: Option<String>

The local address.

local_bgp_asn: Option<i64>

The Border Gateway Protocol (BGP) Autonomous System Number (ASN) of the local gateway.

local_gateway_id: Option<String>

The ID of the local gateway.

local_gateway_virtual_interface_id: Option<String>

The ID of the virtual interface.

peer_address: Option<String>

The peer address.

peer_bgp_asn: Option<i64>

The peer BGP ASN.

tags: Option<Vec<Tag>>

The tags assigned to the virtual interface.

vlan: Option<i64>

The ID of the VLAN.

Trait Implementations

impl Clone for LocalGatewayVirtualInterface[src]

impl Debug for LocalGatewayVirtualInterface[src]

impl Default for LocalGatewayVirtualInterface[src]

impl PartialEq<LocalGatewayVirtualInterface> for LocalGatewayVirtualInterface[src]

impl StructuralPartialEq for LocalGatewayVirtualInterface[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.