pub enum AcceptReservedNodeExchangeError {
DependentServiceUnavailableFault(String),
InvalidReservedNodeStateFault(String),
ReservedNodeAlreadyExistsFault(String),
ReservedNodeAlreadyMigratedFault(String),
ReservedNodeNotFoundFault(String),
ReservedNodeOfferingNotFoundFault(String),
UnsupportedOperationFault(String),
}
Expand description
Errors returned by AcceptReservedNodeExchange
Variants§
Your request cannot be completed because a dependent internal service is temporarily unavailable. Wait 30 to 60 seconds and try again.
InvalidReservedNodeStateFault(String)
Indicates that the Reserved Node being exchanged is not in an active state.
ReservedNodeAlreadyExistsFault(String)
User already has a reservation with the given identifier.
ReservedNodeAlreadyMigratedFault(String)
Indicates that the reserved node has already been exchanged.
ReservedNodeNotFoundFault(String)
The specified reserved compute node not found.
ReservedNodeOfferingNotFoundFault(String)
Specified offering does not exist.
UnsupportedOperationFault(String)
The requested operation isn't supported.
Implementations§
Trait Implementations§
Source§impl Error for AcceptReservedNodeExchangeError
impl Error for AcceptReservedNodeExchangeError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for AcceptReservedNodeExchangeError
impl PartialEq for AcceptReservedNodeExchangeError
Source§fn eq(&self, other: &AcceptReservedNodeExchangeError) -> bool
fn eq(&self, other: &AcceptReservedNodeExchangeError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for AcceptReservedNodeExchangeError
Auto Trait Implementations§
impl Freeze for AcceptReservedNodeExchangeError
impl RefUnwindSafe for AcceptReservedNodeExchangeError
impl Send for AcceptReservedNodeExchangeError
impl Sync for AcceptReservedNodeExchangeError
impl Unpin for AcceptReservedNodeExchangeError
impl UnwindSafe for AcceptReservedNodeExchangeError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more