[][src]Struct rusoto_directconnect::VirtualInterface

pub struct VirtualInterface {
    pub address_family: Option<String>,
    pub amazon_address: Option<String>,
    pub amazon_side_asn: Option<i64>,
    pub asn: Option<i64>,
    pub auth_key: Option<String>,
    pub aws_device_v2: Option<String>,
    pub bgp_peers: Option<Vec<BGPPeer>>,
    pub connection_id: Option<String>,
    pub customer_address: Option<String>,
    pub customer_router_config: Option<String>,
    pub direct_connect_gateway_id: Option<String>,
    pub jumbo_frame_capable: Option<bool>,
    pub location: Option<String>,
    pub mtu: Option<i64>,
    pub owner_account: Option<String>,
    pub region: Option<String>,
    pub route_filter_prefixes: Option<Vec<RouteFilterPrefix>>,
    pub virtual_gateway_id: Option<String>,
    pub virtual_interface_id: Option<String>,
    pub virtual_interface_name: Option<String>,
    pub virtual_interface_state: Option<String>,
    pub virtual_interface_type: Option<String>,
    pub vlan: Option<i64>,
}

Information about a 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.

amazon_side_asn: Option<i64>

The autonomous system number (ASN) for the Amazon side of the connection.

asn: Option<i64>

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

auth_key: Option<String>

The authentication key for BGP configuration.

aws_device_v2: Option<String>

The Direct Connect endpoint on which the virtual interface terminates.

bgp_peers: Option<Vec<BGPPeer>>

The BGP peers configured on this virtual interface.

connection_id: Option<String>

The ID of the connection.

customer_address: Option<String>

The IP address assigned to the customer interface.

customer_router_config: Option<String>

The customer router configuration.

direct_connect_gateway_id: Option<String>

The ID of the Direct Connect gateway.

jumbo_frame_capable: Option<bool>

Indicates whether jumbo frames (9001 MTU) are supported.

location: Option<String>

The location of the connection.

mtu: Option<i64>

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

owner_account: Option<String>

The ID of the AWS account that owns the virtual interface.

region: Option<String>

The AWS Region where the virtual interface is located.

route_filter_prefixes: Option<Vec<RouteFilterPrefix>>

The routes to be advertised to the AWS network in this Region. Applies to public virtual interfaces.

virtual_gateway_id: Option<String>

The ID of the virtual private gateway. Applies only to private virtual interfaces.

virtual_interface_id: Option<String>

The ID of the virtual interface.

virtual_interface_name: Option<String>

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

virtual_interface_state: Option<String>

The state of the virtual interface. The following are the possible values:

virtual_interface_type: Option<String>

The type of virtual interface. The possible values are private and public.

vlan: Option<i64>

The ID of the VLAN.

Trait Implementations

impl PartialEq<VirtualInterface> for VirtualInterface[src]

impl Default for VirtualInterface[src]

impl Clone for VirtualInterface[src]

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

Performs copy-assignment from source. Read more

impl Debug for VirtualInterface[src]

impl<'de> Deserialize<'de> for VirtualInterface[src]

Auto Trait Implementations

impl Send for VirtualInterface

impl Sync for VirtualInterface

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self