[][src]Struct rusoto_directconnect::DirectConnectGatewayAttachment

pub struct DirectConnectGatewayAttachment {
    pub attachment_state: Option<String>,
    pub attachment_type: Option<String>,
    pub direct_connect_gateway_id: Option<String>,
    pub state_change_error: Option<String>,
    pub virtual_interface_id: Option<String>,
    pub virtual_interface_owner_account: Option<String>,
    pub virtual_interface_region: Option<String>,
}

Information about an attachment between a Direct Connect gateway and a virtual interface.

Fields

attachment_state: Option<String>

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

  • attaching: The initial state after a virtual interface is created using the Direct Connect gateway.

  • attached: The Direct Connect gateway and virtual interface are attached and ready to pass traffic.

  • detaching: The initial state after calling DeleteVirtualInterface.

  • detached: The virtual interface is detached from the Direct Connect gateway. Traffic flow between the Direct Connect gateway and virtual interface is stopped.

attachment_type: Option<String>

The interface type.

direct_connect_gateway_id: Option<String>

The ID of the Direct Connect gateway.

state_change_error: Option<String>

The error message if the state of an object failed to advance.

virtual_interface_id: Option<String>

The ID of the virtual interface.

virtual_interface_owner_account: Option<String>

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

virtual_interface_region: Option<String>

The AWS Region where the virtual interface is located.

Trait Implementations

impl Clone for DirectConnectGatewayAttachment[src]

impl Default for DirectConnectGatewayAttachment[src]

impl PartialEq<DirectConnectGatewayAttachment> for DirectConnectGatewayAttachment[src]

impl Debug for DirectConnectGatewayAttachment[src]

impl StructuralPartialEq for DirectConnectGatewayAttachment[src]

impl<'de> Deserialize<'de> for DirectConnectGatewayAttachment[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