[][src]Struct rusoto_networkmanager::Link

pub struct Link {
    pub bandwidth: Option<Bandwidth>,
    pub created_at: Option<f64>,
    pub description: Option<String>,
    pub global_network_id: Option<String>,
    pub link_arn: Option<String>,
    pub link_id: Option<String>,
    pub provider: Option<String>,
    pub site_id: Option<String>,
    pub state: Option<String>,
    pub tags: Option<Vec<Tag>>,
    pub type_: Option<String>,
}

Describes a link.

Fields

bandwidth: Option<Bandwidth>

The bandwidth for the link.

created_at: Option<f64>

The date and time that the link was created.

description: Option<String>

The description of the link.

global_network_id: Option<String>

The ID of the global network.

link_arn: Option<String>

The Amazon Resource Name (ARN) of the link.

link_id: Option<String>

The ID of the link.

provider: Option<String>

The provider of the link.

site_id: Option<String>

The ID of the site.

state: Option<String>

The state of the link.

tags: Option<Vec<Tag>>

The tags for the link.

type_: Option<String>

The type of the link.

Trait Implementations

impl Clone for Link[src]

impl Debug for Link[src]

impl Default for Link[src]

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

impl PartialEq<Link> for Link[src]

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