Struct rusoto_directconnect::Interconnect[][src]

pub struct Interconnect {
    pub aws_device: Option<String>,
    pub bandwidth: Option<String>,
    pub interconnect_id: Option<String>,
    pub interconnect_name: Option<String>,
    pub interconnect_state: Option<String>,
    pub lag_id: Option<String>,
    pub loa_issue_time: Option<f64>,
    pub location: Option<String>,
    pub region: Option<String>,
}

An interconnect is a connection that can host other connections.

Like a standard AWS Direct Connect connection, an interconnect represents the physical connection between an AWS Direct Connect partner's network and a specific Direct Connect location. An AWS Direct Connect partner who owns an interconnect can provision hosted connections on the interconnect for their end customers, thereby providing the end customers with connectivity to AWS services.

The resources of the interconnect, including bandwidth and VLAN numbers, are shared by all of the hosted connections on the interconnect, and the owner of the interconnect determines how these resources are assigned.

Fields

The Direct Connection endpoint which the physical connection terminates on.

The time of the most recent call to DescribeInterconnectLoa for this Interconnect.

Trait Implementations

impl Default for Interconnect
[src]

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

impl Debug for Interconnect
[src]

Formats the value using the given formatter. Read more

impl Clone for Interconnect
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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