#[non_exhaustive]pub struct DeleteInterconnectOutput {
pub interconnect_state: Option<InterconnectState>,
}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
sourceimpl 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.
sourceimpl DeleteInterconnectOutput
impl DeleteInterconnectOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DeleteInterconnectOutput
Trait Implementations
sourceimpl Clone for DeleteInterconnectOutput
impl Clone for DeleteInterconnectOutput
sourcefn clone(&self) -> DeleteInterconnectOutput
fn clone(&self) -> DeleteInterconnectOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for DeleteInterconnectOutput
impl Debug for DeleteInterconnectOutput
sourceimpl PartialEq<DeleteInterconnectOutput> for DeleteInterconnectOutput
impl PartialEq<DeleteInterconnectOutput> for DeleteInterconnectOutput
sourcefn eq(&self, other: &DeleteInterconnectOutput) -> bool
fn eq(&self, other: &DeleteInterconnectOutput) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &DeleteInterconnectOutput) -> bool
fn ne(&self, other: &DeleteInterconnectOutput) -> bool
This method tests for !=.
impl StructuralPartialEq for DeleteInterconnectOutput
Auto Trait Implementations
impl RefUnwindSafe for DeleteInterconnectOutput
impl Send for DeleteInterconnectOutput
impl Sync for DeleteInterconnectOutput
impl Unpin for DeleteInterconnectOutput
impl UnwindSafe for DeleteInterconnectOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more