Struct rusoto_directconnect::UpdateLagRequest[][src]

pub struct UpdateLagRequest {
    pub lag_id: String,
    pub lag_name: Option<String>,
    pub minimum_links: Option<i64>,
}

Container for the parameters to the UpdateLag operation.

Fields

The ID of the LAG to update.

Example: dxlag-abc123

Default: None

The name for the LAG.

Example: "3x10G LAG to AWS"

Default: None

The minimum number of physical connections that must be operational for the LAG itself to be operational.

Default: None

Trait Implementations

impl Default for UpdateLagRequest
[src]

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

impl Debug for UpdateLagRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateLagRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UpdateLagRequest
[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