pub enum RebootNodeError {
ClusterNotFoundFault(String),
InvalidClusterStateFault(String),
InvalidParameterCombination(String),
InvalidParameterValue(String),
NodeNotFoundFault(String),
ServiceLinkedRoleNotFoundFault(String),
}
Expand description
Errors returned by RebootNode
Variants§
ClusterNotFoundFault(String)
The requested cluster ID does not refer to an existing DAX cluster.
InvalidClusterStateFault(String)
The requested DAX cluster is not in the available state.
InvalidParameterCombination(String)
Two or more incompatible parameters were specified.
InvalidParameterValue(String)
The value for a parameter is invalid.
NodeNotFoundFault(String)
None of the nodes in the cluster have the given node ID.
ServiceLinkedRoleNotFoundFault(String)
The specified service linked role (SLR) was not found.
Implementations§
Source§impl RebootNodeError
impl RebootNodeError
pub fn from_response(res: BufferedHttpResponse) -> RusotoError<RebootNodeError>
Trait Implementations§
Source§impl Debug for RebootNodeError
impl Debug for RebootNodeError
Source§impl Display for RebootNodeError
impl Display for RebootNodeError
Source§impl Error for RebootNodeError
impl Error for RebootNodeError
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 RebootNodeError
impl PartialEq for RebootNodeError
impl StructuralPartialEq for RebootNodeError
Auto Trait Implementations§
impl Freeze for RebootNodeError
impl RefUnwindSafe for RebootNodeError
impl Send for RebootNodeError
impl Sync for RebootNodeError
impl Unpin for RebootNodeError
impl UnwindSafe for RebootNodeError
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