[][src]Struct rusoto_directconnect::NewPrivateVirtualInterface

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

Information about a private 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: i64

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

The valid values are 1-2147483647.

auth_key: Option<String>

The authentication key for BGP configuration. This string has a minimum length of 6 characters and and a maximun lenth of 80 characters.

customer_address: Option<String>

The IP address assigned to the customer interface.

direct_connect_gateway_id: Option<String>

The ID of the Direct Connect gateway.

mtu: Option<i64>

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

tags: Option<Vec<Tag>>

The tags associated with the private virtual interface.

virtual_gateway_id: Option<String>

The ID of the virtual private gateway.

virtual_interface_name: String

The name of the virtual interface assigned by the customer network. The name has a maximum of 100 characters. The following are valid characters: a-z, 0-9 and a hyphen (-).

vlan: i64

The ID of the VLAN.

Trait Implementations

impl Clone for NewPrivateVirtualInterface[src]

impl Debug for NewPrivateVirtualInterface[src]

impl Default for NewPrivateVirtualInterface[src]

impl PartialEq<NewPrivateVirtualInterface> for NewPrivateVirtualInterface[src]

impl Serialize for NewPrivateVirtualInterface[src]

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