[][src]Struct rusoto_directconnect::NewTransitVirtualInterfaceAllocation

pub struct NewTransitVirtualInterfaceAllocation {
    pub address_family: Option<String>,
    pub amazon_address: Option<String>,
    pub asn: Option<i64>,
    pub auth_key: Option<String>,
    pub customer_address: Option<String>,
    pub mtu: Option<i64>,
    pub tags: Option<Vec<Tag>>,
    pub virtual_interface_name: Option<String>,
    pub vlan: Option<i64>,
}

Information about a transit virtual interface.

Fields

address_family: Option<String>

The address family for the BGP peer.

amazon_address: Option<String>

The IP address assigned to the Amazon interface.

asn: Option<i64>

The autonomous system (AS) number for Border Gateway Protocol (BGP) configuration.

auth_key: Option<String>

The authentication key for BGP configuration.

customer_address: Option<String>

The IP address assigned to the customer interface.

mtu: Option<i64>

The maximum transmission unit (MTU), in bytes. The supported values are 1500 and 8500. The default value is 1500.

tags: Option<Vec<Tag>>

Any tags assigned to the transit virtual interface.

virtual_interface_name: Option<String>

The name of the virtual interface assigned by the customer network.

vlan: Option<i64>

The ID of the VLAN.

Trait Implementations

impl Clone for NewTransitVirtualInterfaceAllocation[src]

impl Default for NewTransitVirtualInterfaceAllocation[src]

impl PartialEq<NewTransitVirtualInterfaceAllocation> for NewTransitVirtualInterfaceAllocation[src]

impl Debug for NewTransitVirtualInterfaceAllocation[src]

impl StructuralPartialEq for NewTransitVirtualInterfaceAllocation[src]

impl Serialize for NewTransitVirtualInterfaceAllocation[src]

Auto Trait Implementations

Blanket Implementations

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

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

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.

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

impl<T> BorrowMut<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