pub enum DeleteStackSetError {
OperationInProgress(String),
StackSetNotEmpty(String),
}
Expand description
Errors returned by DeleteStackSet
Variants§
OperationInProgress(String)
Another operation is currently in progress for this stack set. Only one operation can be performed for a stack set at a given time.
StackSetNotEmpty(String)
You can't yet delete this stack set, because it still contains one or more stack instances. Delete all stack instances from the stack set before deleting the stack set.
Implementations§
Source§impl DeleteStackSetError
impl DeleteStackSetError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DeleteStackSetError>
Trait Implementations§
Source§impl Debug for DeleteStackSetError
impl Debug for DeleteStackSetError
Source§impl Display for DeleteStackSetError
impl Display for DeleteStackSetError
Source§impl Error for DeleteStackSetError
impl Error for DeleteStackSetError
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 DeleteStackSetError
impl PartialEq for DeleteStackSetError
impl StructuralPartialEq for DeleteStackSetError
Auto Trait Implementations§
impl Freeze for DeleteStackSetError
impl RefUnwindSafe for DeleteStackSetError
impl Send for DeleteStackSetError
impl Sync for DeleteStackSetError
impl Unpin for DeleteStackSetError
impl UnwindSafe for DeleteStackSetError
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