pub enum UpdateStackInstancesError {
InvalidOperation(String),
OperationIdAlreadyExists(String),
OperationInProgress(String),
StackInstanceNotFound(String),
StackSetNotFound(String),
StaleRequest(String),
}Expand description
Errors returned by UpdateStackInstances
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 UpdateStackInstancesError
impl UpdateStackInstancesError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<UpdateStackInstancesError>
Trait Implementations§
Source§impl Debug for UpdateStackInstancesError
impl Debug for UpdateStackInstancesError
Source§impl Display for UpdateStackInstancesError
impl Display for UpdateStackInstancesError
Source§impl Error for UpdateStackInstancesError
impl Error for UpdateStackInstancesError
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 UpdateStackInstancesError
impl PartialEq for UpdateStackInstancesError
Source§fn eq(&self, other: &UpdateStackInstancesError) -> bool
fn eq(&self, other: &UpdateStackInstancesError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdateStackInstancesError
Auto Trait Implementations§
impl Freeze for UpdateStackInstancesError
impl RefUnwindSafe for UpdateStackInstancesError
impl Send for UpdateStackInstancesError
impl Sync for UpdateStackInstancesError
impl Unpin for UpdateStackInstancesError
impl UnsafeUnpin for UpdateStackInstancesError
impl UnwindSafe for UpdateStackInstancesError
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