[][src]Struct rusoto_directconnect::VirtualInterfaceTestHistory

pub struct VirtualInterfaceTestHistory {
    pub bgp_peers: Option<Vec<String>>,
    pub end_time: Option<f64>,
    pub owner_account: Option<String>,
    pub start_time: Option<f64>,
    pub status: Option<String>,
    pub test_duration_in_minutes: Option<i64>,
    pub test_id: Option<String>,
    pub virtual_interface_id: Option<String>,
}

Information about the virtual interface failover test.

Fields

bgp_peers: Option<Vec<String>>

The BGP peers that were put in the DOWN state as part of the virtual interface failover test.

end_time: Option<f64>

The time that the virtual interface moves out of the DOWN state.

owner_account: Option<String>

The owner ID of the tested virtual interface.

start_time: Option<f64>

The time that the virtual interface moves to the DOWN state.

status: Option<String>

The status of the virtual interface failover test.

test_duration_in_minutes: Option<i64>

The time that the virtual interface failover test ran in minutes.

test_id: Option<String>

The ID of the virtual interface failover test.

virtual_interface_id: Option<String>

The ID of the tested virtual interface.

Trait Implementations

impl Clone for VirtualInterfaceTestHistory[src]

impl Debug for VirtualInterfaceTestHistory[src]

impl Default for VirtualInterfaceTestHistory[src]

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

impl PartialEq<VirtualInterfaceTestHistory> for VirtualInterfaceTestHistory[src]

impl StructuralPartialEq for VirtualInterfaceTestHistory[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.