pub enum RotateEncryptionKeyError {
ClusterNotFoundFault(String),
DependentServiceRequestThrottlingFault(String),
InvalidClusterStateFault(String),
}
Expand description
Errors returned by RotateEncryptionKey
Variants§
ClusterNotFoundFault(String)
The ClusterIdentifier
parameter does not refer to an existing cluster.
DependentServiceRequestThrottlingFault(String)
The request cannot be completed because a dependent service is throttling requests made by Amazon Redshift on your behalf. Wait and retry the request.
InvalidClusterStateFault(String)
The specified cluster is not in the available
state.
Implementations§
Source§impl RotateEncryptionKeyError
impl RotateEncryptionKeyError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<RotateEncryptionKeyError>
Trait Implementations§
Source§impl Debug for RotateEncryptionKeyError
impl Debug for RotateEncryptionKeyError
Source§impl Display for RotateEncryptionKeyError
impl Display for RotateEncryptionKeyError
Source§impl Error for RotateEncryptionKeyError
impl Error for RotateEncryptionKeyError
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 RotateEncryptionKeyError
impl PartialEq for RotateEncryptionKeyError
impl StructuralPartialEq for RotateEncryptionKeyError
Auto Trait Implementations§
impl Freeze for RotateEncryptionKeyError
impl RefUnwindSafe for RotateEncryptionKeyError
impl Send for RotateEncryptionKeyError
impl Sync for RotateEncryptionKeyError
impl Unpin for RotateEncryptionKeyError
impl UnwindSafe for RotateEncryptionKeyError
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