#[non_exhaustive]pub struct DeleteInterconnectOutput {
pub interconnect_state: Option<InterconnectState>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.interconnect_state: 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.
Implementations§
source§impl DeleteInterconnectOutput
impl DeleteInterconnectOutput
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.
source§impl DeleteInterconnectOutput
impl DeleteInterconnectOutput
sourcepub fn builder() -> DeleteInterconnectOutputBuilder
pub fn builder() -> DeleteInterconnectOutputBuilder
Creates a new builder-style object to manufacture DeleteInterconnectOutput
.
Trait Implementations§
source§impl Clone for DeleteInterconnectOutput
impl Clone for DeleteInterconnectOutput
source§fn clone(&self) -> DeleteInterconnectOutput
fn clone(&self) -> DeleteInterconnectOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DeleteInterconnectOutput
impl Debug for DeleteInterconnectOutput
source§impl PartialEq for DeleteInterconnectOutput
impl PartialEq for DeleteInterconnectOutput
source§fn eq(&self, other: &DeleteInterconnectOutput) -> bool
fn eq(&self, other: &DeleteInterconnectOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DeleteInterconnectOutput
impl RequestId for DeleteInterconnectOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.