pub enum StopActivityStreamError {
DBClusterNotFoundFault(String),
DBInstanceNotFoundFault(String),
InvalidDBClusterStateFault(String),
InvalidDBInstanceStateFault(String),
ResourceNotFoundFault(String),
}
Expand description
Errors returned by StopActivityStream
Variants§
DBClusterNotFoundFault(String)
DBClusterIdentifier
doesn't refer to an existing DB cluster.
DBInstanceNotFoundFault(String)
DBInstanceIdentifier
doesn't refer to an existing DB instance.
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.
ResourceNotFoundFault(String)
The specified resource ID was not found.
Implementations§
Source§impl StopActivityStreamError
impl StopActivityStreamError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<StopActivityStreamError>
Trait Implementations§
Source§impl Debug for StopActivityStreamError
impl Debug for StopActivityStreamError
Source§impl Display for StopActivityStreamError
impl Display for StopActivityStreamError
Source§impl Error for StopActivityStreamError
impl Error for StopActivityStreamError
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 StopActivityStreamError
impl PartialEq for StopActivityStreamError
impl StructuralPartialEq for StopActivityStreamError
Auto Trait Implementations§
impl Freeze for StopActivityStreamError
impl RefUnwindSafe for StopActivityStreamError
impl Send for StopActivityStreamError
impl Sync for StopActivityStreamError
impl Unpin for StopActivityStreamError
impl UnwindSafe for StopActivityStreamError
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