pub enum StartDBClusterError {
DBClusterNotFoundFault(String),
InvalidDBClusterStateFault(String),
InvalidDBInstanceStateFault(String),
}
Expand description
Errors returned by StartDBCluster
Variants§
DBClusterNotFoundFault(String)
DBClusterIdentifier
doesn't refer to an existing DB cluster.
InvalidDBClusterStateFault(String)
The requested operation can't be performed while the cluster is in this state.
InvalidDBInstanceStateFault(String)
The DB instance isn't in a valid state.
Implementations§
Source§impl StartDBClusterError
impl StartDBClusterError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<StartDBClusterError>
Trait Implementations§
Source§impl Debug for StartDBClusterError
impl Debug for StartDBClusterError
Source§impl Display for StartDBClusterError
impl Display for StartDBClusterError
Source§impl Error for StartDBClusterError
impl Error for StartDBClusterError
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 StartDBClusterError
impl PartialEq for StartDBClusterError
impl StructuralPartialEq for StartDBClusterError
Auto Trait Implementations§
impl Freeze for StartDBClusterError
impl RefUnwindSafe for StartDBClusterError
impl Send for StartDBClusterError
impl Sync for StartDBClusterError
impl Unpin for StartDBClusterError
impl UnwindSafe for StartDBClusterError
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