pub enum DeleteHsmConfigurationError {
HsmConfigurationNotFoundFault(String),
InvalidHsmConfigurationStateFault(String),
}
Expand description
Errors returned by DeleteHsmConfiguration
Variants§
HsmConfigurationNotFoundFault(String)
There is no Amazon Redshift HSM configuration with the specified identifier.
InvalidHsmConfigurationStateFault(String)
The specified HSM configuration is not in the available
state, or it is still in use by one or more Amazon Redshift clusters.
Implementations§
Source§impl DeleteHsmConfigurationError
impl DeleteHsmConfigurationError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DeleteHsmConfigurationError>
Trait Implementations§
Source§impl Debug for DeleteHsmConfigurationError
impl Debug for DeleteHsmConfigurationError
Source§impl Error for DeleteHsmConfigurationError
impl Error for DeleteHsmConfigurationError
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()
impl StructuralPartialEq for DeleteHsmConfigurationError
Auto Trait Implementations§
impl Freeze for DeleteHsmConfigurationError
impl RefUnwindSafe for DeleteHsmConfigurationError
impl Send for DeleteHsmConfigurationError
impl Sync for DeleteHsmConfigurationError
impl Unpin for DeleteHsmConfigurationError
impl UnwindSafe for DeleteHsmConfigurationError
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