#[non_exhaustive]pub struct CreateInterconnectOutput { /* private fields */ }Expand description
Information about an interconnect.
Implementations§
source§impl CreateInterconnectOutput
impl CreateInterconnectOutput
sourcepub fn interconnect_id(&self) -> Option<&str>
pub fn interconnect_id(&self) -> Option<&str>
The ID of the interconnect.
sourcepub fn interconnect_name(&self) -> Option<&str>
pub fn interconnect_name(&self) -> Option<&str>
The name of the interconnect.
sourcepub fn interconnect_state(&self) -> Option<&InterconnectState>
pub fn interconnect_state(&self) -> Option<&InterconnectState>
The state of the interconnect. The following are the possible values:
-
requested: The initial state of an interconnect. The interconnect stays in the requested state until the Letter of Authorization (LOA) is sent to the customer. -
pending: The interconnect is approved, and is being initialized. -
available: The network link is up, and the interconnect is ready for use. -
down: The network link is down. -
deleting: The interconnect is being deleted. -
deleted: The interconnect is deleted. -
unknown: The state of the interconnect is not available.
sourcepub fn region(&self) -> Option<&str>
pub fn region(&self) -> Option<&str>
The Amazon Web Services Region where the connection is located.
sourcepub fn loa_issue_time(&self) -> Option<&DateTime>
pub fn loa_issue_time(&self) -> Option<&DateTime>
The time of the most recent call to DescribeLoa for this connection.
sourcepub fn aws_device(&self) -> Option<&str>
pub fn aws_device(&self) -> Option<&str>
The Direct Connect endpoint on which the physical connection terminates.
sourcepub fn jumbo_frame_capable(&self) -> Option<bool>
pub fn jumbo_frame_capable(&self) -> Option<bool>
Indicates whether jumbo frames (9001 MTU) are supported.
sourcepub fn aws_device_v2(&self) -> Option<&str>
pub fn aws_device_v2(&self) -> Option<&str>
The Direct Connect endpoint that terminates the physical connection.
sourcepub fn aws_logical_device_id(&self) -> Option<&str>
pub fn aws_logical_device_id(&self) -> Option<&str>
The Direct Connect endpoint that terminates the logical connection. This device might be different than the device that terminates the physical connection.
sourcepub fn has_logical_redundancy(&self) -> Option<&HasLogicalRedundancy>
pub fn has_logical_redundancy(&self) -> Option<&HasLogicalRedundancy>
Indicates whether the interconnect supports a secondary BGP in the same address family (IPv4/IPv6).
The tags associated with the interconnect.
sourcepub fn provider_name(&self) -> Option<&str>
pub fn provider_name(&self) -> Option<&str>
The name of the service provider associated with the interconnect.
source§impl CreateInterconnectOutput
impl CreateInterconnectOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateInterconnectOutput.
Trait Implementations§
source§impl Clone for CreateInterconnectOutput
impl Clone for CreateInterconnectOutput
source§fn clone(&self) -> CreateInterconnectOutput
fn clone(&self) -> CreateInterconnectOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CreateInterconnectOutput
impl Debug for CreateInterconnectOutput
source§impl PartialEq<CreateInterconnectOutput> for CreateInterconnectOutput
impl PartialEq<CreateInterconnectOutput> for CreateInterconnectOutput
source§fn eq(&self, other: &CreateInterconnectOutput) -> bool
fn eq(&self, other: &CreateInterconnectOutput) -> bool
self and other values to be equal, and is used
by ==.