pub enum AssociateFleetError {
ConcurrentModification(String),
IncompatibleImage(String),
InvalidAccountStatus(String),
LimitExceeded(String),
OperationNotPermitted(String),
ResourceNotFound(String),
}
Expand description
Errors returned by AssociateFleet
Variants§
ConcurrentModification(String)
An API error occurred. Wait a few minutes and try again.
IncompatibleImage(String)
The image can't be updated because it's not compatible for updates.
InvalidAccountStatus(String)
The resource cannot be created because your AWS account is suspended. For assistance, contact AWS Support.
LimitExceeded(String)
The requested limit exceeds the permitted limit for an account.
OperationNotPermitted(String)
The attempted operation is not permitted.
ResourceNotFound(String)
The specified resource was not found.
Implementations§
Source§impl AssociateFleetError
impl AssociateFleetError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<AssociateFleetError>
Trait Implementations§
Source§impl Debug for AssociateFleetError
impl Debug for AssociateFleetError
Source§impl Display for AssociateFleetError
impl Display for AssociateFleetError
Source§impl Error for AssociateFleetError
impl Error for AssociateFleetError
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 AssociateFleetError
impl PartialEq for AssociateFleetError
impl StructuralPartialEq for AssociateFleetError
Auto Trait Implementations§
impl Freeze for AssociateFleetError
impl RefUnwindSafe for AssociateFleetError
impl Send for AssociateFleetError
impl Sync for AssociateFleetError
impl Unpin for AssociateFleetError
impl UnwindSafe for AssociateFleetError
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