pub enum CancelResizeError {
ClusterNotFoundFault(String),
InvalidClusterStateFault(String),
ResizeNotFoundFault(String),
UnsupportedOperationFault(String),
}
Expand description
Errors returned by CancelResize
Variants§
ClusterNotFoundFault(String)
The ClusterIdentifier
parameter does not refer to an existing cluster.
InvalidClusterStateFault(String)
The specified cluster is not in the available
state.
ResizeNotFoundFault(String)
A resize operation for the specified cluster is not found.
UnsupportedOperationFault(String)
The requested operation isn't supported.
Implementations§
Source§impl CancelResizeError
impl CancelResizeError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CancelResizeError>
Trait Implementations§
Source§impl Debug for CancelResizeError
impl Debug for CancelResizeError
Source§impl Display for CancelResizeError
impl Display for CancelResizeError
Source§impl Error for CancelResizeError
impl Error for CancelResizeError
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 CancelResizeError
impl PartialEq for CancelResizeError
impl StructuralPartialEq for CancelResizeError
Auto Trait Implementations§
impl Freeze for CancelResizeError
impl RefUnwindSafe for CancelResizeError
impl Send for CancelResizeError
impl Sync for CancelResizeError
impl Unpin for CancelResizeError
impl UnwindSafe for CancelResizeError
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