Struct rusoto_directconnect::Lag[][src]

pub struct Lag {
    pub allows_hosted_connections: Option<bool>,
    pub aws_device: 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.

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 Debug for Lag
[src]

Formats the value using the given formatter. Read more

impl Clone for Lag
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Lag
[src]

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

This method tests for !=.

Auto Trait Implementations

impl Send for Lag

impl Sync for Lag