pub enum ListResourceInventoryError {
AccessDenied(String),
Authorization(String),
FailedDependency(String),
FilterLimitExceeded(String),
InvalidParameterValue(String),
RateLimitExceeded(String),
ServerInternal(String),
}Expand description
Errors returned by ListResourceInventory
Variants§
AccessDenied(String)
Access to resource denied.
Authorization(String)
The AWS user account does not have permission to perform the action. Check the IAM policy associated with this account.
FailedDependency(String)
A dependency required to run the API is missing.
FilterLimitExceeded(String)
The request uses too many filters or too many filter values.
InvalidParameterValue(String)
One or more parameter values are not valid.
RateLimitExceeded(String)
Too many requests have been submitted. Try again after a brief wait.
ServerInternal(String)
The server experienced an internal error. Try again.
Implementations§
Source§impl ListResourceInventoryError
impl ListResourceInventoryError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<ListResourceInventoryError>
Trait Implementations§
Source§impl Debug for ListResourceInventoryError
impl Debug for ListResourceInventoryError
Source§impl Display for ListResourceInventoryError
impl Display for ListResourceInventoryError
Source§impl Error for ListResourceInventoryError
impl Error for ListResourceInventoryError
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()
impl StructuralPartialEq for ListResourceInventoryError
Auto Trait Implementations§
impl Freeze for ListResourceInventoryError
impl RefUnwindSafe for ListResourceInventoryError
impl Send for ListResourceInventoryError
impl Sync for ListResourceInventoryError
impl Unpin for ListResourceInventoryError
impl UnwindSafe for ListResourceInventoryError
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