pub enum CreateAccountAliasError {
EntityAlreadyExists(String),
LimitExceeded(String),
ServiceFailure(String),
}Expand description
Errors returned by CreateAccountAlias
Variants§
EntityAlreadyExists(String)
The request was rejected because it attempted to create a resource that already exists.
LimitExceeded(String)
The request was rejected because it attempted to create resources beyond the current AWS account limitations. The error message describes the limit exceeded.
ServiceFailure(String)
The request processing has failed because of an unknown error, exception or failure.
Implementations§
Source§impl CreateAccountAliasError
impl CreateAccountAliasError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateAccountAliasError>
Trait Implementations§
Source§impl Debug for CreateAccountAliasError
impl Debug for CreateAccountAliasError
Source§impl Display for CreateAccountAliasError
impl Display for CreateAccountAliasError
Source§impl Error for CreateAccountAliasError
impl Error for CreateAccountAliasError
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 CreateAccountAliasError
impl PartialEq for CreateAccountAliasError
impl StructuralPartialEq for CreateAccountAliasError
Auto Trait Implementations§
impl Freeze for CreateAccountAliasError
impl RefUnwindSafe for CreateAccountAliasError
impl Send for CreateAccountAliasError
impl Sync for CreateAccountAliasError
impl Unpin for CreateAccountAliasError
impl UnwindSafe for CreateAccountAliasError
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