pub enum UpdateAccessKeyError {
LimitExceeded(String),
NoSuchEntity(String),
ServiceFailure(String),
}Expand description
Errors returned by UpdateAccessKey
Variants§
LimitExceeded(String)
The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.
NoSuchEntity(String)
The request was rejected because it referenced a resource entity that does not exist. The error message describes the resource.
ServiceFailure(String)
The request processing has failed because of an unknown error, exception or failure.
Implementations§
Source§impl UpdateAccessKeyError
impl UpdateAccessKeyError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<UpdateAccessKeyError>
Trait Implementations§
Source§impl Debug for UpdateAccessKeyError
impl Debug for UpdateAccessKeyError
Source§impl Display for UpdateAccessKeyError
impl Display for UpdateAccessKeyError
Source§impl Error for UpdateAccessKeyError
impl Error for UpdateAccessKeyError
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 UpdateAccessKeyError
impl PartialEq for UpdateAccessKeyError
Source§fn eq(&self, other: &UpdateAccessKeyError) -> bool
fn eq(&self, other: &UpdateAccessKeyError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdateAccessKeyError
Auto Trait Implementations§
impl Freeze for UpdateAccessKeyError
impl RefUnwindSafe for UpdateAccessKeyError
impl Send for UpdateAccessKeyError
impl Sync for UpdateAccessKeyError
impl Unpin for UpdateAccessKeyError
impl UnsafeUnpin for UpdateAccessKeyError
impl UnwindSafe for UpdateAccessKeyError
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