pub enum DeleteAssociationError {
AssociationDoesNotExist(String),
InternalServerError(String),
InvalidDocument(String),
InvalidInstanceId(String),
TooManyUpdates(String),
}Expand description
Errors returned by DeleteAssociation
Variants§
AssociationDoesNotExist(String)
The specified association does not exist.
InternalServerError(String)
An error occurred on the server side.
InvalidDocument(String)
The specified document does not exist.
InvalidInstanceId(String)
The following problems can cause this exception:
You do not have permission to access the instance.
SSM Agent is not running. Verify that SSM Agent is running.
SSM Agent is not registered with the SSM endpoint. Try reinstalling SSM Agent.
The instance is not in valid state. Valid states are: Running, Pending, Stopped, Stopping. Invalid states are: Shutting-down and Terminated.
TooManyUpdates(String)
There are concurrent updates for a resource that supports one update at a time.
Implementations§
Source§impl DeleteAssociationError
impl DeleteAssociationError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DeleteAssociationError>
Trait Implementations§
Source§impl Debug for DeleteAssociationError
impl Debug for DeleteAssociationError
Source§impl Display for DeleteAssociationError
impl Display for DeleteAssociationError
Source§impl Error for DeleteAssociationError
impl Error for DeleteAssociationError
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 DeleteAssociationError
impl PartialEq for DeleteAssociationError
impl StructuralPartialEq for DeleteAssociationError
Auto Trait Implementations§
impl Freeze for DeleteAssociationError
impl RefUnwindSafe for DeleteAssociationError
impl Send for DeleteAssociationError
impl Sync for DeleteAssociationError
impl Unpin for DeleteAssociationError
impl UnwindSafe for DeleteAssociationError
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