pub enum UpdateServiceSettingsError {
AccessDenied(String),
Authorization(String),
InvalidParameterValue(String),
RateLimitExceeded(String),
ServerInternal(String),
}Expand description
Errors returned by UpdateServiceSettings
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.
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 UpdateServiceSettingsError
impl UpdateServiceSettingsError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<UpdateServiceSettingsError>
Trait Implementations§
Source§impl Debug for UpdateServiceSettingsError
impl Debug for UpdateServiceSettingsError
Source§impl Display for UpdateServiceSettingsError
impl Display for UpdateServiceSettingsError
Source§impl Error for UpdateServiceSettingsError
impl Error for UpdateServiceSettingsError
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 UpdateServiceSettingsError
Auto Trait Implementations§
impl Freeze for UpdateServiceSettingsError
impl RefUnwindSafe for UpdateServiceSettingsError
impl Send for UpdateServiceSettingsError
impl Sync for UpdateServiceSettingsError
impl Unpin for UpdateServiceSettingsError
impl UnwindSafe for UpdateServiceSettingsError
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