[][src]Struct rusoto_directconnect::Interconnect

pub struct Interconnect {
    pub aws_device: Option<String>,
    pub aws_device_v2: Option<String>,
    pub bandwidth: Option<String>,
    pub has_logical_redundancy: Option<String>,
    pub interconnect_id: Option<String>,
    pub interconnect_name: Option<String>,
    pub interconnect_state: Option<String>,
    pub jumbo_frame_capable: Option<bool>,
    pub lag_id: Option<String>,
    pub loa_issue_time: Option<f64>,
    pub location: Option<String>,
    pub region: Option<String>,
    pub tags: Option<Vec<Tag>>,
}

Information about an interconnect.

Fields

aws_device: Option<String>

The Direct Connect endpoint on which the physical connection terminates.

aws_device_v2: Option<String>

The Direct Connect endpoint on which the physical connection terminates.

bandwidth: Option<String>

The bandwidth of the connection.

has_logical_redundancy: Option<String>

Indicates whether the interconnect supports a secondary BGP in the same address family (IPv4/IPv6).

interconnect_id: Option<String>

The ID of the interconnect.

interconnect_name: Option<String>

The name of the interconnect.

interconnect_state: Option<String>

The state of the interconnect. The following are the possible values:

  • requested: The initial state of an interconnect. The interconnect stays in the requested state until the Letter of Authorization (LOA) is sent to the customer.

  • pending: The interconnect is approved, and is being initialized.

  • available: The network link is up, and the interconnect is ready for use.

  • down: The network link is down.

  • deleting: The interconnect is being deleted.

  • deleted: The interconnect is deleted.

  • unknown: The state of the interconnect is not available.

jumbo_frame_capable: Option<bool>

Indicates whether jumbo frames (9001 MTU) are supported.

lag_id: Option<String>

The ID of the LAG.

loa_issue_time: Option<f64>

The time of the most recent call to DescribeLoa for this connection.

location: Option<String>

The location of the connection.

region: Option<String>

The AWS Region where the connection is located.

tags: Option<Vec<Tag>>

Any tags assigned to the interconnect.

Trait Implementations

impl Clone for Interconnect[src]

impl Default for Interconnect[src]

impl PartialEq<Interconnect> for Interconnect[src]

impl Debug for Interconnect[src]

impl StructuralPartialEq for Interconnect[src]

impl<'de> Deserialize<'de> for Interconnect[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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self