pub enum ImportSourceCredentialsError {
AccountLimitExceeded(String),
InvalidInput(String),
ResourceAlreadyExists(String),
}
Expand description
Errors returned by ImportSourceCredentials
Variants§
AccountLimitExceeded(String)
An AWS service limit was exceeded for the calling AWS account.
InvalidInput(String)
The input value that was provided is not valid.
ResourceAlreadyExists(String)
The specified AWS resource cannot be created, because an AWS resource with the same settings already exists.
Implementations§
Trait Implementations§
Source§impl Debug for ImportSourceCredentialsError
impl Debug for ImportSourceCredentialsError
Source§impl Error for ImportSourceCredentialsError
impl Error for ImportSourceCredentialsError
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 ImportSourceCredentialsError
impl PartialEq for ImportSourceCredentialsError
Source§fn eq(&self, other: &ImportSourceCredentialsError) -> bool
fn eq(&self, other: &ImportSourceCredentialsError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ImportSourceCredentialsError
Auto Trait Implementations§
impl Freeze for ImportSourceCredentialsError
impl RefUnwindSafe for ImportSourceCredentialsError
impl Send for ImportSourceCredentialsError
impl Sync for ImportSourceCredentialsError
impl Unpin for ImportSourceCredentialsError
impl UnwindSafe for ImportSourceCredentialsError
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