[][src]Struct rusoto_directconnect::Lag

pub struct Lag {
    pub allows_hosted_connections: Option<bool>,
    pub aws_device: Option<String>,
    pub aws_device_v2: Option<String>,
    pub connections: Option<Vec<Connection>>,
    pub connections_bandwidth: Option<String>,
    pub lag_id: Option<String>,
    pub lag_name: Option<String>,
    pub lag_state: Option<String>,
    pub location: Option<String>,
    pub minimum_links: Option<i64>,
    pub number_of_connections: Option<i64>,
    pub owner_account: Option<String>,
    pub region: Option<String>,
}

Describes a link aggregation group (LAG). A LAG is a connection that uses the Link Aggregation Control Protocol (LACP) to logically aggregate a bundle of physical connections. Like an interconnect, it can host other connections. All connections in a LAG must terminate on the same physical AWS Direct Connect endpoint, and must be the same bandwidth.

Fields

Indicates whether the LAG can host other connections.

This is intended for use by AWS Direct Connect partners only.

Deprecated in favor of awsDeviceV2.

The AWS Direct Connection endpoint that hosts the LAG.

The AWS Direct Connection endpoint that hosts the LAG.

A list of connections bundled by this LAG.

The individual bandwidth of the physical connections bundled by the LAG.

Available values: 1Gbps, 10Gbps

The name of the LAG.

The minimum number of physical connections that must be operational for the LAG itself to be operational. If the number of operational connections drops below this setting, the LAG state changes to down. This value can help to ensure that a LAG is not overutilized if a significant number of its bundled connections go down.

The number of physical connections bundled by the LAG, up to a maximum of 10.

The owner of the LAG.

Trait Implementations

impl Default for Lag
[src]

Returns the "default value" for a type. Read more

impl PartialEq<Lag> for Lag
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Clone for Lag
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Lag
[src]

Formats the value using the given formatter. Read more

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

Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations

impl Send for Lag

impl Sync for Lag

Blanket Implementations

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

Performs the conversion.

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

Creates owned data from borrowed data, usually by cloning. Read more

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

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T> From for T
[src]

Performs the conversion.

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

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

The type returned in the event of a conversion error.

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

Performs the conversion.

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

Immutably borrows from an owned value. Read more

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

Mutably borrows from an owned value. Read more

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

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

The type returned in the event of a conversion error.

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

Performs the conversion.

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

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

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

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

impl<T> Same for T

Should always be Self

impl<T> Erased for T