pub enum UpdateStackSetError {
InvalidOperation(String),
OperationIdAlreadyExists(String),
OperationInProgress(String),
StackInstanceNotFound(String),
StackSetNotFound(String),
StaleRequest(String),
}
Expand description
Errors returned by UpdateStackSet
Variants§
InvalidOperation(String)
The specified operation isn't valid.
OperationIdAlreadyExists(String)
The specified operation ID already exists.
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.
StackInstanceNotFound(String)
The specified stack instance doesn't exist.
StackSetNotFound(String)
The specified stack set doesn't exist.
StaleRequest(String)
Another operation has been performed on this stack set since the specified operation was performed.
Implementations§
Source§impl UpdateStackSetError
impl UpdateStackSetError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<UpdateStackSetError>
Trait Implementations§
Source§impl Debug for UpdateStackSetError
impl Debug for UpdateStackSetError
Source§impl Display for UpdateStackSetError
impl Display for UpdateStackSetError
Source§impl Error for UpdateStackSetError
impl Error for UpdateStackSetError
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 UpdateStackSetError
impl PartialEq for UpdateStackSetError
impl StructuralPartialEq for UpdateStackSetError
Auto Trait Implementations§
impl Freeze for UpdateStackSetError
impl RefUnwindSafe for UpdateStackSetError
impl Send for UpdateStackSetError
impl Sync for UpdateStackSetError
impl Unpin for UpdateStackSetError
impl UnwindSafe for UpdateStackSetError
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